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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a1a2e 50%, #1a1a1a 100%);
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 31, 143, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(212, 255, 0, 0.05) 0%, transparent 50%);
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #00AEEF, #D4FF00, #FF1F8F);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    line-height: 1.4;
    color: #ffffff;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.6s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.4);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    text-align: center;
}

.cta-button::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 0.6s ease;
}

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

.cta-button:hover {
    background: linear-gradient(135deg, #D4FF00 0%, #00AEEF 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.6);
    border-color: #D4FF00;
}

/* Sections */
.section {
    padding: 100px 0;
    transition: all 0.6s ease;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #D4FF00, #FF1F8F);
    border-radius: 2px;
}

/* Problem Section - Light with enhanced gradients */
.problem-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(255, 31, 143, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 30% 70%, rgba(0, 174, 239, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 50% 50%, rgba(212, 255, 0, 0.05) 0%, transparent 70%);
}

.problem-section .section-title {
    color: #0a0a0a;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(26, 26, 26, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #D4FF00;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00AEEF, #D4FF00, #FF1F8F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: #00AEEF;
    box-shadow: 0 20px 40px rgba(0, 174, 239, 0.5);
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
}

.stat-icon {
    font-size: 3.5rem;
    color: #D4FF00;
    margin-bottom: 1.5rem;
    transition: all 0.6s ease;
}

.stat-item:hover .stat-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.stat-content {
    margin-top: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

/* Solution Section - Enhanced dark background */
.solution-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a1a2e 50%, #1a1a3e 100%);
    position: relative;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 174, 239, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(212, 255, 0, 0.08) 0%, transparent 60%),
                radial-gradient(circle at 50% 10%, rgba(255, 31, 143, 0.06) 0%, transparent 70%);
}

.solution-section .section-title {
    color: #ffffff;
}

.solution-intro {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.solution-intro p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    transition: all 0.6s ease;
    border-left: 5px solid #00AEEF;
    color: #0a0a0a;
    box-shadow: 0 10px 30px rgba(212, 255, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(255, 31, 143, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 174, 239, 0.6);
    border-left-color: #D4FF00;
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
    color: #ffffff;
}

.feature-icon {
    font-size: 2.8rem;
    color: #00AEEF;
    min-width: 60px;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
}

.feature-card:hover .feature-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.8rem;
    transition: color 0.6s ease;
}

.feature-card:hover .feature-content h3 {
    color: #ffffff;
}

.feature-content p {
    color: rgba(10, 10, 10, 0.8);
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.6s ease;
}

.feature-card:hover .feature-content p {
    color: rgba(255, 255, 255, 0.9);
}

/* Ambassadors Section - Light */
.ambassadors-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.ambassadors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 255, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.1) 0%, transparent 50%);
}

.ambassadors-section .section-title {
    color: #0a0a0a;
}

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

.youth-process {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 174, 239, 0.3);
    border: 3px solid #00AEEF;
    transition: all 0.6s ease;
}

.youth-process:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.6);
    border-color: #D4FF00;
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
}

.process-icon {
    font-size: 3.5rem;
    color: #D4FF00;
    min-width: 80px;
    transition: all 0.6s ease;
}

.youth-process:hover .process-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.youth-process p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: left;
    font-weight: 500;
}

/* Supporters Section - Dark background */
.supporters-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a1a2e 100%);
    position: relative;
}

.supporters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 31, 143, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.08) 0%, transparent 50%);
}

.supporters-section .section-title {
    color: #ffffff;
}

.supporters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.supporter-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    background: rgba(26, 26, 26, 0.95);
    border-radius: 20px;
    transition: all 0.6s ease;
    border: 3px solid #D4FF00;
    box-shadow: 0 8px 25px rgba(212, 255, 0, 0.3);
}

.supporter-logo:hover {
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
    transform: translateY(-8px) scale(1.05);
    border-color: #00AEEF;
    box-shadow: 0 20px 50px rgba(0, 174, 239, 0.6);
}

.logo-placeholder {
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    transition: color 0.6s ease;
    padding: 1rem;
}

.supporter-logo:hover .logo-placeholder {
    color: #ffffff;
}

.supporters-caption {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Join the Movement Section - Light background with circular cards */
.join-movement-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.join-movement-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 255, 0, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(255, 31, 143, 0.08) 0%, transparent 50%);
}

.join-movement-section .section-title {
    color: #0a0a0a;
}

.movement-intro {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(10, 10, 10, 0.8);
    max-width: 800px;
    margin: 0 auto 4rem auto;
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.movement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.movement-card {
    width: min(350px, 90vw);
    height: auto;
    aspect-ratio: 1;
    min-height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(1.5rem, 4vw, 3rem);
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid #00AEEF;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 174, 239, 0.3);
}

.movement-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, rgba(0, 174, 239, 0.3), rgba(212, 255, 0, 0.2), rgba(255, 31, 143, 0.3));
    background-size: 300% 300%;
    border-radius: 50%;
    z-index: -1;
    animation: gradientRotate 5s ease-in-out infinite;
    opacity: 0;
    transition: opacity 0.8s ease;
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.movement-card:hover::before {
    opacity: 0.6;
}

.movement-card:hover {
    transform: scale(1.03);
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(255, 31, 143, 0.1) 100%), rgba(255, 255, 255, 0.95);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.3);
    color: #0a0a0a;
}

.movement-icon {
    font-size: 2.5rem;
    color: #00AEEF;
    margin-bottom: 1.2rem;
    transition: all 0.6s ease;
    flex-shrink: 0;
}

.movement-card:hover .movement-icon {
    color: #00AEEF;
    transform: scale(1.05);
}

.movement-card h3 {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    line-height: 1.2;
    flex-shrink: 0;
    transition: color 0.6s ease;
    word-wrap: break-word;
    hyphens: auto;
}

.movement-card:hover h3 {
    color: #0a0a0a;
}

.movement-card p {
    color: rgba(10, 10, 10, 0.8);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    line-height: 1.3;
    font-weight: 400;
    transition: color 0.6s ease;
    word-wrap: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    max-height: none;
    flex: 1;
    display: flex;
    align-items: center;
}

.movement-card:hover p {
    color: rgba(10, 10, 10, 0.9);
}

.movement-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

/* Contact Section - Dark */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: white;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(212, 255, 0, 0.08) 0%, transparent 50%);
}

.contact-section .section-title {
    color: white;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.6s ease;
    border: 3px solid transparent;
    color: #0a0a0a;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: white;
    border-color: #00AEEF;
    box-shadow: 0 0 0 3px rgba(0, 174, 239, 0.3);
    transform: translateY(-2px);
}

.submit-button {
    background: linear-gradient(135deg, #00AEEF 0%, #FF1F8F 100%);
    color: white;
    padding: 20px 45px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.6s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-button::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 0.6s ease;
}

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

.submit-button:hover {
    background: linear-gradient(135deg, #D4FF00 0%, #00AEEF 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 255, 0, 0.4);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(0, 174, 239, 0.3);
}

.footer p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.privacy-link {
    color: #00AEEF;
    text-decoration: none;
    transition: color 0.6s ease;
    font-weight: 600;
}

.privacy-link:hover {
    color: #D4FF00;
}

/* AOS Animation Enhancements */
[data-aos] {
    transition-duration: 600ms !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00AEEF, #D4FF00);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #D4FF00, #FF1F8F);
}

/* UNIFIED RESPONSIVE BREAKPOINTS */

/* Large Tablets and Small Desktops */
@media (max-width: 1024px) {
    .stats-grid {
        gap: 2rem;
        max-width: 700px;
    }
    
    .movement-grid {
        gap: 2.5rem;
        max-width: 750px;
    }
    
    .movement-card {
        width: min(320px, 85vw);
        min-height: 280px;
        padding: clamp(1.8rem, 3.5vw, 2.5rem);
    }
}

/* Mobile and Tablets */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .section {
        padding: 80px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 400px;
    }

    .supporters-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .youth-process {
        flex-direction: column;
        text-align: center;
    }

    .youth-process p {
        text-align: center;
    }

    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .movement-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        max-width: 100%;
    }

    .movement-card {
        width: min(380px, 90vw);
        min-height: 380px;
        padding: clamp(2rem, 5vw, 3rem);
        max-width: 90vw;
        aspect-ratio: 1;
    }

    .movement-card h3 {
        font-size: clamp(1.1rem, 3.5vw, 1.3rem);
        margin-bottom: clamp(0.8rem, 2.5vw, 1.2rem);
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
    }

    .movement-card p {
        font-size: clamp(0.95rem, 3vw, 1rem);
        line-height: 1.4;
        word-break: normal;
        overflow-wrap: break-word;
        hyphens: none;
        text-align: center;
    }

    .movement-intro {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
        min-width: 180px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section {
        padding: 60px 0;
    }

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

    .stat-item,
    .feature-card {
        padding: 2rem;
    }

    .movement-card {
        width: min(340px, 88vw);
        min-height: 340px;
        padding: clamp(1.8rem, 5vw, 2.5rem);
        max-width: 88vw;
    }

    .movement-card h3 {
        font-size: clamp(1rem, 4vw, 1.2rem);
        margin-bottom: clamp(0.7rem, 2.5vw, 1rem);
        word-break: normal;
        overflow-wrap: break-word;
    }

    .movement-card p {
        font-size: clamp(0.9rem, 3.2vw, 0.95rem);
        line-height: 1.35;
        word-spacing: 0.05em;
        hyphens: none;
        word-break: normal;
    }

    .movement-intro {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
        min-width: 160px;
    }
    
    .submit-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .movement-card {
        width: min(320px, 92vw);
        min-height: 320px;
        padding: clamp(1.5rem, 5vw, 2.2rem);
        aspect-ratio: 1;
    }

    .movement-card h3 {
        font-size: clamp(0.95rem, 4.5vw, 1.1rem);
        line-height: 1.2;
        margin-bottom: clamp(0.6rem, 2vw, 0.8rem);
    }

    .movement-card p {
        font-size: clamp(0.85rem, 3.5vw, 0.9rem);
        line-height: 1.3;
        letter-spacing: 0.01em;
    }
}
