/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3A0519;
    --secondary-color: #670D2F;
    --accent-color: #A53860;
    --highlight-color: #EF88AD;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --bg-card: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { 
    font-size: clamp(2.5rem, 5vw, 4rem); 
    color: var(--text-dark);
}

h2 { 
    font-size: clamp(2rem, 4vw, 3rem); 
    color: var(--text-dark);
}

h3 { 
    font-size: clamp(1.5rem, 3vw, 2rem); 
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 120px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    color: var(--text-light);
    border: 2px solid var(--highlight-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 136, 173, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 136, 173, 0.4);
    border-color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-login {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-register {
    background: var(--secondary-color);
    color: var(--text-light);
}

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.brand-text {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--highlight-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section - Enhanced Modern Design */
.hero-section {
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--secondary-color) 25%, 
        var(--accent-color) 50%, 
        var(--secondary-color) 75%, 
        var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    color: var(--text-light);
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Home Page Specific Hero Section - Side by Side Layout */
body:has(main > .hero-section) .hero-section,
body:has(.hero-section:first-of-type) .hero-section {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

body:has(main > .hero-section) .hero-section .hero-content,
body:has(.hero-section:first-of-type) .hero-section .hero-content {
    text-align: left;
    max-width: 500px;
    margin: 0;
    animation: slideInLeft 1s ease-out;
}

body:has(main > .hero-section) .hero-section .hero-title,
body:has(.hero-section:first-of-type) .hero-section .hero-title {
    text-align: left;
}

body:has(main > .hero-section) .hero-section .hero-subtitle,
body:has(.hero-section:first-of-type) .hero-section .hero-subtitle {
    text-align: left;
}

body:has(main > .hero-section) .hero-section .hero-actions,
body:has(.hero-section:first-of-type) .hero-section .hero-actions {
    justify-content: flex-start;
}

/* Fallback for browsers that don't support :has() */
@supports not (selector(:has(*))) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
        animation: slideInUp 1s ease-out;
    }
    
    .hero-title {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        animation: slideInUp 1s ease-out 0.3s both;
        margin-top: 2rem;
    }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(239, 136, 173, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(165, 56, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content {
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color), var(--highlight-color));
    background-size: 200% 200%;
    animation: titleGlow 3s ease-in-out infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--text-light);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    text-align: center;
}

@keyframes titleGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: var(--text-light);
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
    text-align: center;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 0.3s both;
    margin-top: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

/* Ensure proper text contrast for different backgrounds */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
    font-weight: 400;
}

/* Dark background sections should have light text */
.testimonials-section .section-title,
.stats-section .section-title,
.cta-section .section-title {
    color: var(--text-light);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.testimonials-section .section-text,
.stats-section .section-text,
.cta-section .section-text {
    color: var(--text-light);
    opacity: 0.95;
}

/* Light background sections should have dark text */
.features-section .section-title,
.about-section .section-title,
.games-section .section-title,
.benefits-section .section-title {
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.features-section .section-text,
.about-section .section-text,
.games-section .section-text,
.benefits-section .section-text {
    color: var(--text-dark);
    opacity: 0.9;
}

/* Features Section */
.features-section {
    background: var(--bg-light);
    color: var(--text-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-dark);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Login and Register Sections */
.login-section,
.register-section {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
}

.login-section .container,
.register-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.login-section .section-content,
.register-section .section-content {
    text-align: left;
}

.login-section .section-title,
.register-section .section-title {
    color: var(--text-light);
    text-align: left;
}

.login-section .section-text,
.register-section .section-text {
    text-align: left;
    margin: 0 0 2rem 0;
    color: var(--text-light);
    opacity: 0.95;
    line-height: 1.7;
}

.login-image,
.register-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-image img,
.register-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-hover);
}

.action-center {
    text-align: left;
    margin-top: 2rem;
}

/* About Section */
.about-section {
    background: var(--bg-light);
    color: var(--text-dark);
}

.about-content {
    text-align: center;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
}

/* Games Section */
.games-section {
    background: var(--text-light);
    color: var(--text-dark);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.game-card {
    background: var(--text-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-dark);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.game-card h3 {
    color: var(--primary-color);
    padding: 1rem 1rem 0.5rem;
    margin-bottom: 0.5rem;
}

.game-card p {
    padding: 0 1rem 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-light);
    color: var(--text-dark);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    color: var(--text-dark);
}

.benefit-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-item p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    color: var(--text-light);
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: var(--highlight-color);
    font-weight: 500;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    color: var(--text-light);
}

.stat-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.cta-section .section-title {
    color: var(--text-light);
}

.cta-section .section-text {
    color: var(--text-light);
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--highlight-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--highlight-color);
}

.footer-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Additional Page Styles */

/* About Us Page - Enhanced Modern Design */
.about-content-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 50%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(165,56,96,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    animation: slideInUp 1s ease-out;
    text-align: center;
    width: 100%;
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
    border-radius: 2px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-align: center;
}

.about-image {
    text-align: center;
    animation: slideInUp 1s ease-out 0.3s both;
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, var(--accent-color), var(--highlight-color));
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Mission Vision Section Enhancement */
.mission-vision-section {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--bg-light) 100%);
    position: relative;
    padding: 5rem 0;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M0 25 Q12.5 0 25 25 T50 25" stroke="rgba(165,56,96,0.05)" fill="none" stroke-width="2"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.mission-card,
.vision-card {
    padding: 3rem;
    background: var(--text-light);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(165, 56, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color));
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: rgba(165, 56, 96, 0.2);
}

.mission-card h3,
.vision-card h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.mission-card p,
.vision-card p {
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Values Section Enhancement */
.values-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: var(--text-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(165, 56, 96, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(165, 56, 96, 0.05), rgba(239, 136, 173, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.value-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.value-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

.team-section {
    background: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.achievements-section {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--text-light);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--highlight-color);
}

.achievement-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* Contact Us Page */
.contact-info-section {
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
}

.response-time {
    color: var(--text-dark);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.support-categories-section {
    background: var(--text-light);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-category {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.support-category h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.support-category ul {
    list-style: none;
}

.support-category ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.support-category ul li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.faq-preview-section {
    background: var(--bg-light);
}

.faq-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.faq-item h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.faq-cta {
    text-align: center;
    margin-top: 2rem;
}

.response-time-section {
    background: var(--text-light);
}

.response-time-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.response-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.response-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.response-card .response-time {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* FAQ Page */
.faq-categories-section {
    background: var(--bg-light);
    padding: 2rem 0;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.faq-category-btn.active,
.faq-category-btn:hover {
    background: var(--accent-color);
    color: var(--text-light);
}

.faq-content-section {
    background: var(--text-light);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: var(--bg-light);
    margin-bottom: 1rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    background: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    margin-bottom: 0;
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.contact-support-section {
    background: var(--bg-dark);
    color: var(--text-light);
}

.contact-support-section h2,
.contact-support-section p {
    color: var(--text-light);
}

.support-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Privacy Policy, Terms & Conditions, Disclaimer Pages */
.privacy-content-section,
.terms-content-section,
.disclaimer-content-section {
    background: var(--text-light);
}

.privacy-content,
.terms-content,
.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-section,
.terms-section,
.disclaimer-section {
    margin-bottom: 3rem;
}

.privacy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.privacy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: var(--accent-color);
    margin: 1.5rem 0 1rem;
}

.privacy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li,
.terms-section li,
.disclaimer-section li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    margin-top: 1rem;
}

.privacy-cta-section,
.terms-cta-section,
.disclaimer-cta-section {
    background: var(--primary-color);
    color: var(--text-light);
    text-align: center;
}

.privacy-cta-section h2,
.terms-cta-section h2,
.disclaimer-cta-section h2 {
    color: var(--text-light);
}

.privacy-cta-section p,
.terms-cta-section p,
.disclaimer-cta-section p {
    color: var(--text-light);
}

.privacy-actions,
.terms-actions,
.disclaimer-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* 404 Error Page */
.error-404-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-visual {
    margin-bottom: 2rem;
}

.error-number {
    font-size: 8rem;
    font-weight: 900;
    color: var(--highlight-color);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.error-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.helpful-links-section {
    background: var(--bg-light);
}

.helpful-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.helpful-link-card {
    background: var(--text-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.helpful-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.helpful-link-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.search-section {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}

.search-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    /* Login and Register sections responsive */
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .login-section .section-content,
    .register-section .section-content {
        text-align: center;
    }

    .login-section .section-text,
    .register-section .section-text {
        text-align: center;
    }

    .action-center {
        text-align: center;
    }

    .features-grid,
    .games-grid,
    .benefits-list,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }

    .faq-preview-grid {
        grid-template-columns: 1fr;
    }

    .response-time-grid {
        grid-template-columns: 1fr;
    }

    .faq-categories {
        flex-direction: column;
        align-items: center;
    }

    .helpful-links-grid {
        grid-template-columns: 1fr;
    }

    .error-number {
        font-size: 6rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .error-number {
        font-size: 4rem;
    }

    .error-title {
        font-size: 2rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #ffffff;
        --bg-light: #ffffff;
        --bg-dark: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-actions,
    .hero-actions,
    .cta-actions,
    .footer-actions {
        display: none;
    }
} 

/* Enhanced Text Readability */
.feature-card h3,
.benefit-item h3,
.game-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.feature-card p,
.benefit-item p,
.game-card p {
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* Improved contrast for statistics */
.stat-item .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-item .stat-label {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Enhanced testimonial readability */
.testimonial-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    backdrop-filter: blur(10px);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: var(--highlight-color);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Improved button text visibility */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    min-width: 120px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: var(--text-light);
    box-shadow: var(--shadow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
}

.btn-secondary {
    background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    color: var(--text-light);
    border: 2px solid var(--highlight-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(239, 136, 173, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(239, 136, 173, 0.4);
    border-color: var(--accent-color);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-2px);
} 

/* Accessibility Improvements */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #ffffff;
        --primary-color: #1a0000;
        --secondary-color: #4a0000;
    }
    
    .section-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .btn {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus {
    outline: 3px solid var(--highlight-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .benefit-item,
    .game-card {
        border: 2px solid var(--primary-color);
    }
    
    .testimonial-card {
        border: 2px solid var(--highlight-color);
        background: rgba(0, 0, 0, 0.8);
    }
}

/* Ensure minimum contrast ratios */
.section-title {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.section-text {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
}

/* Dark sections with light text */
.testimonials-section,
.stats-section,
.cta-section {
    color: var(--text-light);
}

.testimonials-section .section-title,
.stats-section .section-title,
.cta-section .section-title {
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.testimonials-section .section-text,
.stats-section .section-text,
.cta-section .section-text {
    color: var(--text-light);
    opacity: 0.95;
    font-weight: 500;
}

/* Light sections with dark text */
.features-section,
.about-section,
.games-section,
.benefits-section {
    color: var(--text-dark);
    background: var(--bg-light);
}

.features-section .section-title,
.about-section .section-title,
.games-section .section-title,
.benefits-section .section-title {
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.features-section .section-text,
.about-section .section-text,
.games-section .section-text,
.benefits-section .section-text {
    color: var(--text-dark);
    opacity: 0.9;
    font-weight: 500;
} 

/* Responsive Design for Enhanced Sections */
@media (max-width: 1200px) {
    .hero-section {
        padding: 5rem 0;
        min-height: 80vh;
    }
    
    /* Home page specific responsive */
    body:has(main > .hero-section) .hero-section,
    body:has(.hero-section:first-of-type) .hero-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    body:has(main > .hero-section) .hero-section .hero-content,
    body:has(.hero-section:first-of-type) .hero-section .hero-content {
        max-width: 450px;
    }
    
    .about-grid {
        gap: 3rem;
        max-width: 800px;
    }
    
    .mission-vision-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 0;
        min-height: 70vh;
        text-align: center;
    }
    
    /* Home page specific mobile */
    body:has(main > .hero-section) .hero-section,
    body:has(.hero-section:first-of-type) .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    body:has(main > .hero-section) .hero-section .hero-content,
    body:has(.hero-section:first-of-type) .hero-section .hero-content {
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
        animation: slideInUp 1s ease-out;
    }
    
    body:has(main > .hero-section) .hero-section .hero-title,
    body:has(.hero-section:first-of-type) .hero-section .hero-title {
        text-align: center;
    }
    
    body:has(main > .hero-section) .hero-section .hero-subtitle,
    body:has(.hero-section:first-of-type) .hero-section .hero-subtitle {
        text-align: center;
    }
    
    body:has(main > .hero-section) .hero-section .hero-actions,
    body:has(.hero-section:first-of-type) .hero-section .hero-actions {
        justify-content: center;
    }
    
    body:has(main > .hero-section) .hero-section .hero-visual,
    body:has(.hero-section:first-of-type) .hero-section .hero-visual {
        order: 1;
        margin-bottom: 2rem;
        margin-top: 0;
        animation: slideInUp 1s ease-out 0.3s both;
    }
    
    .hero-content {
        padding: 0 1.5rem;
        order: 2;
        max-width: 600px;
        margin: 0 auto;
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        max-width: 600px;
    }
    
    .about-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image {
        max-width: 400px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 3rem 0;
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .about-grid {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
}

/* Animation Performance Optimization */
@media (prefers-reduced-motion: reduce) {
    .hero-section {
        animation: none;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    }
    
    .hero-title {
        animation: none;
        background: linear-gradient(135deg, var(--highlight-color), var(--accent-color));
    }
    
    .hero-content,
    .hero-visual,
    .about-text,
    .about-image {
        animation: none;
    }
    
    .hero-image:hover,
    .about-img:hover {
        transform: none;
    }
    
    .mission-card:hover,
    .vision-card:hover,
    .value-card:hover {
        transform: none;
    }
} 