/* ===== VARIABLES ===== */
:root {
    --primary-gold: #dfa400;
    --primary-blue: #2196F3;
    --secondary-blue: #1976d2;
    --accent-gray: #B7B7B7;
    --light-gray: #1a1a1a;
    --dark-gray: #111111;
    --darker-gray: #0a0a0a;
    --white: #ffffff;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-gold), #f4c430);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    --gradient-text: linear-gradient(135deg, var(--primary-gold), #f4c430, var(--primary-blue));
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    
    /* Typography */
    --font-family: 'Alef', sans-serif;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    --border-radius: 12px;
    --border-radius-large: 20px;
    
    /* Shadows */
    --shadow-small: 0 2px 10px rgba(0, 0, 0, 0.3);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-large: 0 8px 30px rgba(0, 0, 0, 0.5);
    
    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--white);
    background: var(--dark-gray);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.9;
}

.gradient-text {
    color: var(--white);
    display: inline-block;
}

.highlight-text {
    color: var(--white);
    display: block;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
    min-height: 3.5rem;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--black);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-large);
}

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

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    opacity: 0.9;
    font-weight: var(--font-weight-normal);
    transition: all var(--transition-fast);
    position: relative;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width var(--transition-medium);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-primary) !important;
    color: var(--black) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: var(--border-radius) !important;
    font-weight: var(--font-weight-bold) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all var(--transition-medium);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(17, 17, 17, 0.7), rgba(42, 42, 42, 0.7)), url('assets/hero-background2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-animation {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    top: 60%;
    right: 30%;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-gray), var(--light-gray));
    bottom: 30%;
    left: 50%;
    animation-delay: 4s;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(223, 164, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-blue);
    border-bottom: 2px solid var(--primary-blue);
    transform: rotate(45deg);
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-header .coming-soon-badge {
    position: static;
    display: inline-block;
    background: var(--primary-gold);
    color: var(--black);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: var(--shadow-small);
    margin: 0.5rem auto 0.5rem auto;
}

.section-header p {
    color: var(--white);
    opacity: 0.9;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== WHAT IS SPARTA SECTION ===== */
.what-is-sparta {
    padding: var(--section-padding);
    background: var(--dark-gray);
}

.video-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.video-wrapper {
    /*position: relative;
    width: 100%;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
    display: flex;
    align-items: center;
    justify-content: center;*/
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper .demo-gif {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--border-radius-large);
    display: block;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.features-carousel {
    position: relative;
    width: 100%;
}

.features-track {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: transform var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
}

.feature-item.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    font-size: 0.95rem;
}

.features-carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.features-carousel-btn {
    background: var(--primary-blue) !important;
    color: var(--white) !important;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.features-carousel-btn:hover {
    background: var(--secondary-blue) !important;
    transform: scale(1.1);
}

.features-carousel-btn:active {
    transform: scale(0.95);
}

.features-carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.features-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.features-dot.active {
    background: var(--primary-gold) !important;
    transform: scale(1.2);
}

.features-dot:hover {
    background: rgba(33, 150, 243, 0.6) !important;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

/* Subtle Floating Wreaths for About Section */
.about-floating-wreath-1 {
    position: absolute;
    top: 15%;
    left: 8%;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.25;
    animation: aboutFloat1 12s ease-in-out infinite;
    z-index: 1;
}

.about-floating-wreath-2 {
    position: absolute;
    top: 45%;
    right: 12%;
    font-size: 2.5rem;
    color: var(--primary-gold);
    opacity: 0.2;
    animation: aboutFloat2 15s ease-in-out infinite reverse;
    z-index: 1;
}

.about-floating-wreath-3 {
    position: absolute;
    bottom: 25%;
    left: 15%;
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0.18;
    animation: aboutFloat3 18s ease-in-out infinite;
    z-index: 1;
}

/* About Floating Animations - More Noticeable */
@keyframes aboutFloat1 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-15px) rotate(4deg); 
        opacity: 0.35;
    }
}

@keyframes aboutFloat2 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.2;
    }
    33% { 
        transform: translateY(-12px) rotate(-3deg); 
        opacity: 0.3;
    }
    66% { 
        transform: translateY(-6px) rotate(2deg); 
        opacity: 0.15;
    }
}

@keyframes aboutFloat3 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.18;
    }
    25% { 
        transform: translateY(-18px) rotate(5deg); 
        opacity: 0.28;
    }
    75% { 
        transform: translateY(-8px) rotate(-3deg); 
        opacity: 0.12;
    }
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    color: var(--white);
    margin-bottom: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: var(--font-weight-bold);
    margin-bottom: 2rem;
}

.about-text p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-small);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.image-container {
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(223, 164, 0, 0.1), rgba(0, 61, 153, 0.1));
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--section-padding);
    background: var(--dark-gray);
    position: relative;
    overflow: hidden;
}

.testimonials-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(223, 164, 0, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(223, 164, 0, 0.15) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: perspective(1200px) rotateX(45deg) scale(2);
    transform-origin: center top;
    pointer-events: none;
    opacity: 0.8;
    z-index: 1;
    animation: testimonialGridFloat 20s ease-in-out infinite;
}

.testimonials-grid-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(223, 164, 0, 0.1) 50%,
        transparent 100%
    );
    background-size: 100% 300%;
    animation: testimonialScanLines 8s linear infinite;
}

.testimonials-grid-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(33, 150, 243, 0.08) 50%,
        transparent 100%
    );
    background-size: 100% 400%;
    animation: testimonialScanLines 12s linear infinite reverse;
}

@keyframes testimonialGridFloat {
    0%, 100% {
        transform: perspective(1200px) rotateX(45deg) scale(2) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: perspective(1200px) rotateX(45deg) scale(2.1) translateY(-10px);
        opacity: 0.4;
    }
}

@keyframes testimonialScanLines {
    0% {
        background-position: 0 -100%;
    }
    100% {
        background-position: 0 200%;
    }
}

.testimonials-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-track {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-large);
}

.testimonial-card {
    display: none;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card.active {
    display: block;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    color: var(--white);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.1rem;
}

.author-info span {
    color: var(--white);
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Instagram icon styling for testimonials */
.author-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.author-name-row h4 {
    margin: 0;
    flex: 1;
}

.instagram-link {
    color: var(--accent-gray);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    text-decoration: none;
    opacity: 0.7;
}

.instagram-link:hover {
    color: #E4405F; /* Instagram brand color */
    opacity: 1;
    transform: scale(1.1);
}

.instagram-icon {
    width: 18px;
    height: 18px;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .author-name-row {
        gap: 0.4rem;
    }
    
    .instagram-icon {
        width: 16px;
        height: 16px;
    }
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.carousel-btn:hover {
    background: var(--secondary-blue);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.dot.active {
    background: var(--primary-gold);
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-gold) 0%, #f4c430 100%);
    color: var(--dark-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.emails-section {
    flex: 1;
}

.emails-section h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.emails-section a {
    display: block;
    margin-bottom: 0.25rem;
    text-decoration: none;
    font-size: 0.95rem;
}

.founder-image {
    position: relative;
    display: block;
    margin-top: 0;
    text-align: center;
    flex-shrink: 0;
}

.founder-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 4px 20px rgba(223, 164, 0, 0.3);
}

@keyframes speechBubbleBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.05);
    }
}

.speech-bubble {
    position: absolute;
    top: -50px;
    background: var(--dark-gray);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    animation: speechBubbleBounce 3s ease-in-out infinite;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--dark-gray);
}

.speech-bubble span {
    font-family: 'Alef', sans-serif;
}

.contact-form {
    background: rgba(17, 17, 17, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius-large);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 17, 17, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
    font-weight: var(--font-weight-bold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.3);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    padding: 1.25rem 1rem;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.contact-content h2 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.contact-content p {
    margin-bottom: 0;
    opacity: 0.8;
    color: var(--dark-gray);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--darker-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all var(--transition-fast);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--white);
    opacity: 0.6;
    margin: 0;
    font-size: 0.9rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    :root {
        --section-padding: 3rem 0;
        --container-padding: 0 1rem;
    }
    
    .nav-links {
        background: rgba(17, 17, 17, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-visual {
        height: 200px;
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        min-height: 3rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-buttons .btn-primary {
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn-secondary {
        display: none;
    }
    
    .founder-image {
        display: block;
        margin-top: 1rem;
        text-align: center;
    }
    
    .section-header p {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }

    .about-text p {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }

    .about-intro {
        margin-left: 1.5rem;
        margin-right: 1.5rem;
    }

    .send-button {
        padding: 0.8rem 0.7rem;
        min-width: 160px;
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }
    
    .button-group {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .reset-button {
        padding: 0.6rem 0.8rem;
        font-size: 1.1rem;
        min-width: auto;
        min-width: 2.2rem;
        left: calc(50% + 80px);
    }
    
    .laurel-left, .laurel-right {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 80vh;
    }
    
    .testimonial-card {
        padding: 2rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .carousel-controls {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }

    .btn-secondary {
        margin-bottom: 1.5rem;
    }

    .features-carousel-controls {
        gap: 1rem;
    }

    .features-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .features-dot {
        width: 12px;
        height: 12px;
    }

    .money-buttons {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .money-btn {
        border-width: 2px;
    }
}

/* ===== ABOUT EXPANDABLE SECTION ===== */
.about-expandable {
    position: relative;
    overflow: visible;
    max-height: 0;
    transition: max-height 0.5s ease-in-out;
}

.about-expandable.expanded {
    max-height: 1500px;
    overflow: hidden;
}

.about-expandable-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
    max-height: 0;
    overflow: hidden;
    position: relative;
}

.about-expandable-content::before {
    content: '';
    position: absolute;
    top: -40px;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--dark-gray));
    pointer-events: none;
    z-index: 1;
}

.about-expandable.expanded .about-expandable-content {
    opacity: 1;
    transform: translateY(0);
    max-height: 1500px;
}

.about-expandable.expanded .about-expandable-content::before {
    display: none;
}

.about-expand-overlay {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
}

.about-expand-btn {
    position: relative;
    z-index: 3;
    background: none;
    color: var(--primary-gold);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    pointer-events: auto;
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.about-expand-btn:hover {
    background: rgba(223, 164, 0, 0.1);
    transform: translateY(-2px);
}

.about-expand-btn.expanded {
    color: var(--white);
}

.expand-arrow {
    transition: transform var(--transition-fast);
    width: 20px;
    height: 20px;
}

.about-expand-btn.expanded .expand-arrow {
    transform: rotate(180deg);
}

.keep-reading {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 500;
    font-family: var(--font-family);
    color: var(--primary-gold);
    opacity: 0.8;
}

.about-expand-btn:hover .keep-reading {
    opacity: 1;
}

.about-expand-btn.expanded .keep-reading {
    color: var(--white);
}

.about-divider {
    position: relative;
    height: 1px;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--white);
    font-style: italic;
    margin: 0;
    line-height: 1.6;
}

/* ===== LOADER STYLES ===== */
.gif-loader-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    transition: opacity 0.3s ease;
    border-radius: var(--border-radius-large);
}

.gif-loader-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.gif-loading-spinner {
    text-align: center;
    color: white;
}

.terms-reference {
    font-size: 0.9rem;
    color: var(--accent-gray);
    margin: 0;
    opacity: 0.8;
    text-align: center;
}

.terms-reference a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.terms-reference a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

.gif-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem auto;
}

.gif-loading-spinner p {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin: 0;
    font-family: var(--font-family);
    color: white;
}

/* Mobile-specific styles for the loader */
@media (max-width: 768px) {
    .gif-loading-spinner p {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
        color: white;
    }
    
    .about-image {
        display: none;
    }
    
    .contact-content p {
        margin-bottom: 1rem !important;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-large);
    animation: fadeInUp 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    background: var(--dark-gray);
    z-index: 10;
}

.modal-header h2 {
    margin: 0;
    color: var(--white);
    font-size: 1.8rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--accent-gray);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.modal-body {
    padding: 1rem 2rem 2rem 2rem;
    color: var(--white);
    line-height: 1.7;
}

.modal-body h3 {
    color: var(--primary-gold);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.modal-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.modal-body strong {
    color: var(--primary-gold);
}

/* Modal scrollbar styling */
.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-gold);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #f4c430;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
}

/* ===== SPARTAN LEGEND COMPONENT ===== */
.spartan-legend {
    position: relative;
    padding: 4rem 0 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    overflow: hidden;
    border-top: 2px solid var(--primary-gold);
    border-bottom: 2px solid var(--primary-gold);
}

.spartan-legend::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(223, 164, 0, 0.08) 0%, rgba(33, 150, 243, 0.08) 100%);
    pointer-events: none;
    z-index: 1;
}

.spartan-legend::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(223, 164, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    animation: legendGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

/* Additional floating laurel wreaths */
.spartan-legend .floating-laurel-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 3rem;
    color: var(--primary-gold);
    opacity: 0.3;
    animation: floatLaurel1 8s ease-in-out infinite;
    z-index: 2;
}

.spartan-legend .floating-laurel-2 {
    position: absolute;
    top: 20%;
    right: 8%;
    font-size: 2.5rem;
    color: var(--primary-gold);
    opacity: 0.2;
    animation: floatLaurel2 10s ease-in-out infinite reverse;
    z-index: 2;
}

.spartan-legend .floating-laurel-3 {
    position: absolute;
    top: 60%;
    left: 15%;
    font-size: 2rem;
    color: var(--primary-gold);
    opacity: 0.25;
    animation: floatLaurel3 12s ease-in-out infinite;
    z-index: 2;
}

.spartan-legend .floating-laurel-4 {
    position: absolute;
    top: 30%;
    right: 20%;
    font-size: 2.8rem;
    color: var(--primary-gold);
    opacity: 0.15;
    animation: floatLaurel4 9s ease-in-out infinite reverse;
    z-index: 2;
}

.spartan-legend .floating-laurel-5 {
    position: absolute;
    bottom: 20%;
    left: 25%;
    font-size: 1.8rem;
    color: var(--primary-gold);
    opacity: 0.2;
    animation: floatLaurel5 11s ease-in-out infinite;
    z-index: 2;
}

.spartan-legend .floating-laurel-6 {
    position: absolute;
    bottom: 30%;
    right: 10%;
    font-size: 2.2rem;
    color: var(--primary-gold);
    opacity: 0.18;
    animation: floatLaurel6 7s ease-in-out infinite reverse;
    z-index: 2;
}

/* Floating Laurel Animations */
@keyframes floatLaurel1 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) rotate(5deg); 
        opacity: 0.4;
    }
    50% { 
        transform: translateY(-10px) rotate(-3deg); 
        opacity: 0.2;
    }
    75% { 
        transform: translateY(-15px) rotate(2deg); 
        opacity: 0.35;
    }
}

@keyframes floatLaurel2 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.2;
    }
    33% { 
        transform: translateY(-25px) rotate(-8deg); 
        opacity: 0.3;
    }
    66% { 
        transform: translateY(-5px) rotate(6deg); 
        opacity: 0.15;
    }
}

@keyframes floatLaurel3 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.25;
    }
    20% { 
        transform: translateY(-18px) rotate(4deg); 
        opacity: 0.35;
    }
    40% { 
        transform: translateY(-8px) rotate(-2deg); 
        opacity: 0.2;
    }
    60% { 
        transform: translateY(-22px) rotate(7deg); 
        opacity: 0.3;
    }
    80% { 
        transform: translateY(-12px) rotate(-5deg); 
        opacity: 0.25;
    }
}

@keyframes floatLaurel4 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.15;
    }
    25% { 
        transform: translateY(-30px) rotate(-10deg); 
        opacity: 0.25;
    }
    50% { 
        transform: translateY(-15px) rotate(8deg); 
        opacity: 0.1;
    }
    75% { 
        transform: translateY(-25px) rotate(-6deg); 
        opacity: 0.2;
    }
}

@keyframes floatLaurel5 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.2;
    }
    30% { 
        transform: translateY(-16px) rotate(6deg); 
        opacity: 0.3;
    }
    60% { 
        transform: translateY(-6px) rotate(-4deg); 
        opacity: 0.15;
    }
    90% { 
        transform: translateY(-20px) rotate(3deg); 
        opacity: 0.25;
    }
}

@keyframes floatLaurel6 {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.18;
    }
    40% { 
        transform: translateY(-28px) rotate(-12deg); 
        opacity: 0.28;
    }
    80% { 
        transform: translateY(-10px) rotate(9deg); 
        opacity: 0.12;
    }
}

/* Enhanced Section Header */
.section-header h2 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
}

.legend-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legend-subtitle strong {
    color: var(--primary-gold);
    font-weight: var(--font-weight-bold);
}

.legend-mission {
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--accent-gray);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* Action Section */
.action-section {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: static;
}

.send-button {
    background: var(--gradient-primary);
    color: var(--black);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-medium);
}

.reset-button {
    background: transparent;
    color: var(--white);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    box-shadow: none;
    opacity: 0.9;
    min-width: 2.2rem;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

.reset-button:hover {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

.reset-button:active {
    background: var(--black);
    color: var(--white);
    opacity: 1;
}

.send-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
}

.send-button:hover::before {
    left: 100%;
}

.send-button:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.send-button:active:not(:disabled) {
    transform: translateY(-1px);
}

.send-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: var(--shadow-small);
}

.send-button.enabled {
    animation: buttonEnable 0.5s ease-out;
}

@keyframes buttonEnable {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.send-icon {
    font-size: 1.2em;
    animation: lightning 2s ease-in-out infinite;
}

.security-text {
    font-size: 0.9rem;
    color: var(--accent-gray);
    margin: 0;
    opacity: 0.8;
}

.security-text a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.security-text a:hover {
    color: var(--primary-gold);
    text-decoration: underline;
}

/* Enhanced Money Buttons */
.money-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.money-btn {
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    aspect-ratio: 1;
    border: 4px solid rgba(255, 255, 255, 0.2);
    font-family: var(--font-family);
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-medium);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }
}

/* Different sizes for different amounts */
.money-btn[data-amount="15"] {
    width: 100px;
    height: 100px;
    background: #dfa400;
}

.money-btn[data-amount="30"] {
    width: 120px;
    height: 120px;
    background: #2196F3;
}

.money-btn[data-amount="50"] {
    width: 140px;
    height: 140px;
    background: #4CAF50;
}

.money-btn[data-amount="100"] {
    width: 160px;
    height: 160px;
    background: #FF5722;
}

.money-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left var(--transition-slow);
    border-radius: 50%;
}

.money-btn:hover::before {
    left: 100%;
}

.money-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-large);
    border-color: rgba(255, 255, 255, 0.4);
}

.money-btn.clicked {
    transform: scale(0.95);
    box-shadow: var(--shadow-small);
}

.money-amount {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: var(--font-weight-bold);
    color: var(--white);
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
}

.money-label {
    font-size: clamp(0.8rem, 1.8vw, 1rem);
    color: var(--white);
    opacity: 0.9;
    font-weight: var(--font-weight-normal);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    z-index: 2;
    position: relative;
    text-align: center;
    line-height: 1.1;
}

/* Barbell Container */
.barbell-container {
    /*margin: 1rem 0;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    /*gap: 0.5rem;*/
    pointer-events: none;
    position: relative;
}

.barbell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: transform var(--transition-medium);
    opacity: 0.7;
    pointer-events: none;
}

.barbell.shake {
    animation: barbellShake 0.5s ease-in-out;
}

.barbell-bar {
    width: 300px;
    height: 8px;
    background: linear-gradient(90deg, #666, #999, #666);
    border-radius: 4px;
    position: relative;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.barbell-bar::before,
.barbell-bar::after {
    content: '';
    position: absolute;
    top: -8px;
    width: 20px;
    height: 24px;
    background: #444;
    border-radius: 2px;
}

.barbell-bar::before {
    left: -10px;
}

.barbell-bar::after {
    right: -10px;
}

/* Weight Plates */
.weight-plates {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 2px;
}

.left-plates {
    right: 50%;
    margin-right: 15px;
    flex-direction: row-reverse;
}

.right-plates {
    left: 50%;
    margin-left: 15px;
}

.weight-plate {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.5);
    transition: all var(--transition-medium);
}

.weight-plate.plate-entrance {
    opacity: 1;
    transform: scale(1);
    animation: plateEntrance 0.6s ease-out;
}

/* Total Amount Display */
.total-amount {
    text-align: center;
    margin-top: 0.5rem;
}

.amount-display {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-gold);
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 0.25rem;
}

.amount-label {
    font-size: 1rem;
    color: var(--accent-gray);
    display: block;
    margin-top: 0.25rem;
}

/* Interaction Message */
.interaction-message {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.interaction-message p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
}

/* Animations */
@keyframes legendGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

@keyframes laurelFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes lightning {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes barbellShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

@keyframes plateEntrance {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(20px);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsive Spartan Legend */
@media (max-width: 768px) {
    .spartan-legend {
        padding: 3rem 0;
    }
    
    .spartan-legend-content {
        padding: 0 1rem;
    }
    
    .money-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .money-btn {
        border-width: 2px;
    }
    
    .money-btn[data-amount="15"] {
        width: 70px;
        height: 70px;
    }
    
    .money-btn[data-amount="30"] {
        width: 85px;
        height: 85px;
    }
    
    .money-btn[data-amount="50"] {
        width: 100px;
        height: 100px;
    }
    
    .money-btn[data-amount="100"] {
        width: 115px;
        height: 115px;
    }
    
    .money-amount {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
    
    .money-label {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
    }
    
    .barbell-container {
        gap: 0.25rem;
    }
    
    .total-amount {
        margin-top: 0.25rem;
    }
    
    .barbell-bar {
        width: 250px;
    }
    
    .amount-display {
        font-size: 2.5rem;
        margin-bottom: 0.15rem;
    }
    
    .amount-label {
        margin-top: 0.15rem;
    }
    
    .interaction-message p {
        font-size: 1rem;
    }
    
    .send-button {
        padding: 1rem 2rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .money-buttons {
        gap: 0.5rem;
        flex-wrap: nowrap;
    }
    
    .money-btn {
        border-width: 2px;
    }
    
    .money-btn[data-amount="15"] {
        width: 65px;
        height: 65px;
    }
    
    .money-btn[data-amount="30"] {
        width: 70px;
        height: 70px;
    }
    
    .money-btn[data-amount="50"] {
        width: 75px;
        height: 75px;
    }
    
    .money-btn[data-amount="100"] {
        width: 80px;
        height: 80px;
    }
    
    .money-amount {
        font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    }
    
    .money-label {
        font-size: clamp(0.8rem, 1.8vw, 1rem);
    }
    
    .barbell-container {
        gap: 0.2rem;
    }
    
    .total-amount {
        margin-top: 0.2rem;
    }
    
    .barbell-bar {
        width: 200px;
    }
    
    .amount-display {
        font-size: 2.2rem;
        margin-bottom: 0.1rem;
    }
    
    .amount-label {
        margin-top: 0.1rem;
        font-size: 0.9rem;
    }
    
    .send-button {
        padding: 0.8rem 1.5rem;
        min-width: 160px;
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }
    
    .laurel-left, .laurel-right {
        font-size: 1.5rem;
    }
}

.spartan-legend-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Laurel Wreath */
.laurel-wreath {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.laurel-left, .laurel-right {
    font-size: 2rem;
    opacity: 0.8;
    animation: laurelFloat 3s ease-in-out infinite;
}

.laurel-left {
    animation-delay: 0s;
}

.laurel-right {
    animation-delay: 1.5s;
}

.coming-soon-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.gamified-interaction {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.send-button {
    padding: 1rem 2rem;
    min-width: 180px;
}

.button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: static;
}

.reset-button {
    background: transparent;
    color: var(--white);
    border: none;
    padding: 0.6rem 0.8rem;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
    min-height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    box-shadow: none;
    opacity: 0.9;
    min-width: 2.2rem;
    position: absolute;
    top: calc(50% - 20px);
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
}

@media (max-width: 768px) {
    .button-group {
        gap: 0.5rem;
        flex-wrap: nowrap;
        position: static;
    }
    .reset-button {
        position: static;
    }
}

@media (max-width: 480px) {
    .button-group {
        gap: 0.4rem;
        flex-wrap: nowrap;
        position: static;
    }
    .reset-button {
        position: static;
    }
}

/* Subtle pulse for money buttons (initial state) */
.subtle-pulse {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: var(--shadow-medium);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    }
} 

@media (max-width: 768px) {
    .reset-button {
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
        min-width: 2rem;
        min-height: 2.8rem;
    }
}

@media (max-width: 480px) {
    .reset-button {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
        min-width: 1.8rem;
        min-height: 2.5rem;
    }
}

@media (max-width: 768px) {
    .barbell-container {
        position: relative;
    }
    
    .reset-button {
        font-size: 1rem;
        padding: 0.5rem 0.7rem;
        min-width: 2rem;
        min-height: 2.8rem;
        position: absolute;
        top: calc(50% - 20px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        color: var(--white);
    }
}

@media (max-width: 480px) {
    .barbell-container {
        position: relative;
    }
    
    .reset-button {
        font-size: 0.9rem;
        padding: 0.4rem 0.6rem;
        min-width: 1.8rem;
        min-height: 2.5rem;
        position: absolute;
        top: calc(50% - 20px);
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 100;
        color: var(--white);
    }
}