:root {
    --bg-dark: #050505;
    --bg-card: #111111;
    --gold-primary: #d4af37;
    --gold-cards: #d4af37;
    --gold-light: #f1c40f;
    --gold-gradient: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --metal-gradient: linear-gradient(145deg, #2c3e50, #000000);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --whatsapp-green: #25d366;
    --whatsapp-hover: #128c7e;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gold-text {
    color: var(--gold-primary);
    background: var(--gold-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border: none;
}

.btn-whatsapp {
    background-color: var(--whatsapp-green);
    color: white;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: var(--whatsapp-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: black;
}

.btn-outline {
    background: linear-gradient(45deg, #1a1a1a, #2a2a2a);
    border: 1px solid var(--gold-primary);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    margin: 10px;
    min-width: 250px;
}

.btn-outline:hover {
    background: linear-gradient(45deg, #2a2a2a, #3a3a3a);
    border-color: var(--gold-light);
}

.btn-small-text {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 5px;
    font-family: var(--font-body);
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

.pulse-fast {
    animation: pulse 1.5s infinite;
}

/* Hero Support Buttons */
/* Hero Support Buttons */
.hero-support-btns {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
    /* Make children fill width */
    max-width: 400px;
    /* Limit width */
}

/* Common style for buttons inside hero-support-btns */
.hero-support-btns .btn,
.btn-gold-sm {
    display: flex;
    /* Use flexbox for centering */
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Fill container */
    text-align: center;
    padding: 15px 25px;
    /* Consistent padding */
    box-sizing: border-box;
}

.btn-gold-sm {
    background: var(--gold-gradient);
    color: #000;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    border: 1px solid #b38728;
    transition: all 0.3s;
}

.btn-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    border: 2px solid var(--gold-primary);
}

.camilly-avatar {
    transform: rotate(-15deg);
}

/* Spacing for icons in all hero buttons */
.hero-support-btns .btn i,
.btn-gold-sm i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.btn-gold-sm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    filter: brightness(1.1);
}

/* Top Header (Static) */
.top-header {
    background-color: #000;
    padding: 20px 0;
    text-align: center;
    border-bottom: 1px solid var(--gold-primary);
    overflow: hidden;
    /* Prevent blur from spilling out */
}

.top-header .container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Golden Glow Behind Logo */
.top-header .container::before {
    content: '';
    position: absolute;
    width: 300px;
    /* Wider than logo to show on sides */
    height: 100px;
    background: radial-gradient(ellipse at center, var(--gold-primary) 0%, transparent 70%);
    filter: blur(30px);
    opacity: 0.4;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main-logo {
    max-height: 120px;
    width: auto;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    position: relative;
    z-index: 1;
}

/* Scroller */
.scroller-container {
    background: #000;
    padding: 20px 0;
    border-top: 1px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.scroller {
    overflow: hidden;
}

.scroller-inner {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.scroller-inner img {
    height: 40px;
    margin: 0 40px;
    filter: none;
    /* Show original colors */
    opacity: 1;
    transition: all 0.3s;
}

.scroller-inner img:hover {
    transform: scale(1.1);
}

@keyframes scroll {
    to {
        transform: translateX(-50%);
    }
}

/* Hero Section */
.hero {
    padding: 20px 0 60px 0;
    /* Reduced padding since we have a header now */
    position: relative;
    background: radial-gradient(circle at 30% 30%, #1a1a1a 0%, #000000 70%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: 0.05;
    animation: rotate 100s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.main-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    margin-top: 15px;
    color: var(--text-secondary);
}

.highlight-bg {
    background: var(--gold-primary);
    color: black;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
    margin-top: 30px;
}

.hero-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.gold-icon {
    color: var(--gold-primary);
    margin-right: 15px;
    font-size: 1.3rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-wrapper img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(212, 175, 55, 0.3);
    /* Gold glow */
    border: 2px solid rgba(212, 175, 55, 0.3);
    transition: transform 0.5s ease;
}

.image-wrapper img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #0f0f0f;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: var(--gold-primary);
    margin: 15px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
}

.feature-card p {
    color: #bbb;
    font-size: 0.95rem;
}

.shipping-list {
    list-style: none;
    text-align: left;
    margin-top: 15px;
    padding: 0 10px;
}

.shipping-list li {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: start;
}

.shipping-list li i {
    color: var(--gold-primary);
    margin-right: 10px;
    min-width: 20px;
    /* Align text properly */
    margin-top: 3px;
}

.center-btn {
    margin-top: 40px;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: #000;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
}

.testimonials-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.05);
}

/* Infrastructure */
.infrastructure {
    padding: 80px 0;
    background: radial-gradient(circle at center, #1a1a1a 0%, #050505 100%);
    text-align: center;
}

.infra-list {
    list-style: none;
    margin: 40px auto;
    max-width: 600px;
    text-align: left;
}

.infra-list li {
    font-size: 1.3rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #333;
}

.gold-check {
    color: var(--whatsapp-green);
    margin-right: 20px;
    font-size: 1.5rem;
}

.attendant-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)), url('premium_jeans_tshirts_display_1765040387762.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    border-top: 2px solid var(--gold-primary);
}

.alert-title {
    font-size: 3rem;
    color: #ff4757;
    /* Red urgency */
    text-shadow: 0 0 20px rgba(255, 71, 87, 0.4);
    margin-bottom: 20px;
}

.alert-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: 600;
}

/* Footer */
footer {
    padding: 50px 0;
    background: #000;
    text-align: center;
    border-top: 1px solid #222;
}

.footer-logo {
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

footer p {
    color: #666;
    font-size: 0.9rem;
}

/* Responsiveness */
@media (max-width: 900px) {
    .main-title {
        font-size: 2.2rem;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-benefits li {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .main-title {
        font-size: 1.8rem;
    }

    .scroller-inner img {
        height: 35px;
        margin: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .alert-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
}

/* Scroll Reveal Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}