:root {
    /* Color Palette - Light Premium */
    --bg-light: #f8f9fa; /* Off-white as in Tera Marketing surface */
    --bg-card: #ffffff; /* Pure white cards */
    --border-color: #e4e4e7; /* Zinc-200 */
    --border-hover: #CCFF00; /* Neon Lime Accent */
    
    /* Neon Accent */
    --primary: #CCFF00;
    --primary-glow: rgba(204, 255, 0, 0.35);
    
    /* Text Colors */
    --text-main: #191c1d; /* Dark gray from Tera Marketing */
    --text-muted: #71717a; /* Zinc-500 */
    
    /* Shadows & Border Radius */
    --radius-lg: 20px;
    --radius-full: 9999px;
    --shadow-main: 0 4px 20px 0 rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 3.5rem 1.5rem;
}

/* Main Container */
.container {
    width: 100%;
    max-width: 460px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Header */
.profile-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.profile-image {
    width: 140px; /* Clean and visible width for the logo */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    overflow: hidden;
    /* Removed circle, border, background and box shadow as requested */
}

.profile-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.profile-image:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand-badge {
    background: #09090b; /* Dark badge for contrast on light mode */
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 900;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.brand-badge-alt {
    background: var(--primary);
    color: #09090b;
}

.brand-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 85%;
    font-weight: 400;
}

/* Links Section */
.links-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Card Button (Secondary) */
.link-card {
    display: flex;
    align-items: center;
    padding: 1.15rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-main);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

.link-card i {
    font-size: 1.35rem;
    margin-right: 1.25rem;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.link-card span {
    flex: 1;
}

/* Hover Arrow for Secondary Cards */
.link-card::after {
    content: '\EA6C'; /* Remix Icon Arrow Right */
    font-family: 'remixicon';
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #09090b;
}

.link-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    box-shadow: 0 10px 24px 0 rgba(204, 255, 0, 0.22);
}

.link-card:hover i {
    transform: scale(1.1);
    color: var(--text-main);
}

.link-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Primary CTA Link Card (WhatsApp) */
.link-card.whatsapp-primary {
    background: var(--primary);
    color: #09090b;
    border: 1px solid var(--primary);
    box-shadow: 0 8px 24px 0 rgba(204, 255, 0, 0.25);
}

.link-card.whatsapp-primary i {
    color: #09090b;
}

.link-card.whatsapp-primary::after {
    color: #09090b;
}

.link-card.whatsapp-primary:hover {
    background: #bce600; /* Slightly darker neon on hover for visual feedback */
    border-color: #bce600;
    box-shadow: 0 12px 36px 0 rgba(204, 255, 0, 0.45);
    transform: translateY(-4px) scale(1.01);
}

/* Pulsing effect keyframe for WhatsApp */
@keyframes pulse-neon {
    0% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(204, 255, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(204, 255, 0, 0);
    }
}

.whatsapp-pulse {
    animation: pulse-neon 2s infinite;
}

/* About Section Panel */
.glass-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-main);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.about-section {
    margin-top: 0.5rem;
    text-align: center;
}

.about-section h2 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.about-section p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 1rem;
    color: #a1a1aa; /* Zinc-400 */
    font-size: 0.75rem;
    font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    body {
        padding: 2.5rem 1rem;
    }

    .container {
        gap: 1.5rem;
    }
    
    .profile-image {
        width: 120px;
    }

    .brand-name {
        font-size: 1.35rem;
    }

    .brand-description {
        font-size: 0.85rem;
        max-width: 95%;
    }

    .link-card {
        padding: 1.05rem 1.25rem;
        font-size: 0.9rem;
    }

    .link-card i {
        font-size: 1.2rem;
        margin-right: 1rem;
    }

    .glass-panel {
        padding: 1.25rem;
    }
}
