/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-orange: #FF6107;
    --secondary-orange: #E9290F;
    --accent-red: #C40018;
    --dark-gray: #292725;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--accent-red));
    --transition-fast: 0.15s ease;
    --transition-medium: 0.25s ease;
    --transition-slow: 0.4s ease;
    --transition-mobile: 0.1s ease-out;
    --transition-mobile-slow: 0.15s ease-out;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all var(--transition-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.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-medium);
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 97, 7, 0.4);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-red));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 97, 7, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-login {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    margin-right: 15px;
}

.btn-login:hover {
    background: var(--white);
    color: var(--dark-gray);
}

.btn-register {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-register:hover {
    background: var(--gradient-secondary);
}

/* Header and Navigation */
.header {
    background: var(--dark-gray);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
}

.nav-logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 10px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    transition: all var(--transition-fast);
    position: relative;
    border: 1px solid transparent;
    background: transparent;
}

.nav-link:hover {
    color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Active state - only applies when class is present */
.nav-link.active {
    color: var(--primary-orange) !important;
    background: rgba(255, 97, 7, 0.1) !important;
    border-color: var(--primary-orange) !important;
    transform: translateY(-2px);
}

/* Force reset for non-active links */
.nav-link:not(.active) {
    color: var(--white) !important;
    background: transparent !important;
    border-color: transparent !important;
}

/* Ensure active state takes precedence */
.nav-link.active,
.nav-link.active:hover {
    color: var(--primary-orange) !important;
    background: rgba(255, 97, 7, 0.1) !important;
    border-color: var(--primary-orange) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-orange) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all var(--transition-fast);
    z-index: 1002;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

/* Mobile Menu Styles */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Ensure mobile menu is properly hidden by default on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
        background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 100%;
        min-height: 100vh;
        background: linear-gradient(135deg, var(--dark-gray) 0%, #1a1a1a 100%);
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
        padding-top: 120px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu .close-menu {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        z-index: 3;
    }
    
    .nav-menu .close-menu:hover {
        background: rgba(255, 97, 7, 0.2);
        border-color: var(--primary-orange);
        transform: scale(1.1);
    }
    
    .nav-menu .close-menu i {
        color: var(--white);
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .nav-menu .close-menu:hover i {
        color: var(--primary-orange);
        transform: rotate(90deg);
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }
    
    .nav-menu .nav-list {
        margin-bottom: 3rem;
        width: 100%;
        max-width: 400px;
        position: relative;
        z-index: 2;
        animation: slideInDown 0.6s ease-out 0.2s both;
    }
    
    .nav-menu .nav-list li {
        width: 100%;
        animation: fadeInUp 0.6s ease-out both;
    }
    
    .nav-menu .nav-list li:nth-child(1) { animation-delay: 0.3s; }
    .nav-menu .nav-list li:nth-child(2) { animation-delay: 0.4s; }
    .nav-menu .nav-list li:nth-child(3) { animation-delay: 0.5s; }
    .nav-menu .nav-list li:nth-child(4) { animation-delay: 0.6s; }
    .nav-menu .nav-list li:nth-child(5) { animation-delay: 0.7s; }
    
    .nav-menu .nav-actions {
        animation: slideInUp 0.6s ease-out 0.8s both;
    }
    
    .nav-menu .nav-actions {
        margin-top: auto;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        align-items: center;
    }
    
    .nav-menu .btn-login,
    .nav-menu .btn-register {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu .btn-login {
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        color: var(--white);
        backdrop-filter: blur(10px);
    }
    
    .nav-menu .btn-login:hover {
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    }
    
    .nav-menu .btn-register {
        background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        border: 2px solid transparent;
        color: var(--white);
        box-shadow: 0 8px 25px rgba(255, 97, 7, 0.3);
    }
    
    .nav-menu .btn-register:hover {
        background: linear-gradient(135deg, var(--secondary-orange), var(--accent-red));
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(255, 97, 7, 0.4);
    }
    
    .nav-menu .nav-link {
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid transparent;
        border-radius: 15px;
        padding: 1.2rem 2rem;
        margin-bottom: 1rem;
        text-align: center;
        font-size: 1.2rem;
        font-weight: 600;
        transition: all var(--transition-fast) cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 60px;
    }
    
    .nav-menu .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
        transition: width var(--transition-fast);
        border-radius: 2px;
    }
    
    .nav-menu .nav-link:hover::after,
    .nav-menu .nav-link.active::after {
        width: 80%;
    }
    
    /* Ensure mobile menu active states don't interfere with desktop */
    .nav-menu .nav-link.active {
        color: var(--primary-orange) !important;
    }
    
    /* Force reset for mobile menu non-active links */
    .nav-menu .nav-link:not(.active) {
        color: var(--white) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-color: transparent !important;
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 97, 7, 0.1), transparent);
        transition: left var(--transition-medium);
    }
    
    .nav-menu .nav-link:hover::before {
        left: 100%;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(255, 97, 7, 0.1);
        border-color: var(--primary-orange);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 97, 7, 0.2);
    }
    
    .nav-menu .nav-link.active {
        background: linear-gradient(135deg, rgba(255, 97, 7, 0.15), rgba(233, 41, 15, 0.15)) !important;
        border-color: var(--primary-orange) !important;
        box-shadow: 0 15px 40px rgba(255, 97, 7, 0.3) !important;
    }
    

}

/* Mobile Menu Toggle Animation */
.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 */
.hero-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 50%, var(--accent-red) 100%);
    padding: 140px 0 100px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-section::after {
    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="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="25" cy="25" r="0.3" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="0.4" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    box-shadow: 
        0 4px 15px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #e8e8e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 8px 16px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(255, 255, 255, 0.3),
        0 0 60px rgba(255, 255, 255, 0.2);
    position: relative;
    letter-spacing: -0.02em;
    animation: fadeInUp 1s ease-out 0.4s both;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--white) 0%, rgba(255, 255, 255, 0.5) 100%);
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.hero-description {
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
  
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

}

.hero-image:hover img {
    transform: translateY(-15px) scale(1.03) rotateY(5deg);
   
}

/* Floating elements for extra coolness */
.hero-section .floating-element-1 {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.hero-section .floating-element-2 {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
    backdrop-filter: blur(5px);
}

/* Additional floating elements for more visual interest */
.hero-section .floating-element-3 {
    content: '';
    position: absolute;
    top: 60%;
    right: 5%;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
    z-index: 1;
    backdrop-filter: blur(3px);
}

.hero-section .floating-element-4 {
    content: '';
    position: absolute;
    top: 30%;
    left: 15%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
    z-index: 1;
    backdrop-filter: blur(3px);
}

/* Glow effects */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 97, 7, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 8s ease-in-out infinite;
    z-index: 0;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(120deg);
    }
    66% {
        transform: translateY(-10px) rotate(240deg);
    }
}

@keyframes glow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Features Section */
.features-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f0f2f5 50%, #e8ecf1 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 0, 24, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header .badge {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 97, 7, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 97, 7, 0.05), transparent);
    transition: left var(--transition-medium);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 97, 7, 0.1);
}

.feature-card:nth-child(1) { animation: fadeInUp 1s ease-out 0.8s both; }
.feature-card:nth-child(2) { animation: fadeInUp 1s ease-out 1.0s both; }
.feature-card:nth-child(3) { animation: fadeInUp 1s ease-out 1.2s both; }
.feature-card:nth-child(4) { animation: fadeInUp 1s ease-out 1.4s both; }

.feature-icon {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.1), rgba(233, 41, 15, 0.1));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

.feature-icon i {
    font-size: 3.5rem;
    color: var(--primary-orange);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.1), rgba(233, 41, 15, 0.1));
    border-radius: 50%;
    transition: all var(--transition-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 97, 7, 0.2);
    position: relative;
    z-index: 2;
}

.feature-icon i:hover {
    transform: scale(1.1) rotateY(10deg);
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.2), rgba(233, 41, 15, 0.2));
    border-color: rgba(255, 97, 7, 0.4);
    box-shadow: 0 15px 35px rgba(255, 97, 7, 0.3);
}

.feature-card h3 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.feature-card:hover h3::after {
    width: 60px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-size: 1.1rem;
    margin: 0;
}

/* Floating elements for features section */
.features-section .floating-feature-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(255, 97, 7, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.features-section .floating-feature-2 {
    position: absolute;
    bottom: 20%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(233, 41, 15, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.login-section {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 50%, #f0f2f5 100%);
}

.register-section {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8ecf1 50%, #e0e6ed 100%);
    position: relative;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(233, 41, 15, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 0, 24, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.login-content,
.register-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.login-text h2,
.register-text h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 97, 7, 0.1);
    animation: fadeInUp 1s ease-out 0.3s both;
    filter: drop-shadow(0 0 10px rgba(255, 97, 7, 0.05));
}

/* Special styling for register section title */
.register-text h2 {
    color: var(--text-dark);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(196, 0, 24, 0.15);
    filter: drop-shadow(0 0 15px rgba(196, 0, 24, 0.1));
}

.login-text p,
.register-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.login-image,
.register-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.4s both;
}

.login-image::before,
.register-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 97, 7, 0.1), rgba(233, 41, 15, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

/* Special styling for register section image background */
.register-image::before {
    background: linear-gradient(45deg, rgba(196, 0, 24, 0.1), rgba(255, 97, 7, 0.1));
    animation: pulse 2.5s ease-in-out infinite;
}

.login-image::after,
.register-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-image:hover::after,
.register-image:hover::after {
    opacity: 1;
}

.login-image img,
.register-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.login-image:hover img,
.register-image:hover img {
    transform: translateY(-10px) scale(1.02) rotateY(-5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

/* Special hover effects for register section image */
.register-image:hover img {
    transform: translateY(-12px) scale(1.03) rotateY(-8deg);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 0 2px rgba(196, 0, 24, 0.15);
    filter: drop-shadow(0 15px 25px rgba(196, 0, 24, 0.1));
}

/* Floating elements for login/register sections */
.login-section .floating-login-1,
.register-section .floating-register-1 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: rgba(255, 97, 7, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.login-section .floating-login-2,
.register-section .floating-register-2 {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 40px;
    height: 40px;
    background: rgba(233, 41, 15, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

/* Additional unique floating elements for register section */
.register-section .floating-register-3 {
    position: absolute;
    top: 60%;
    right: 25%;
    width: 30px;
    height: 30px;
    background: rgba(196, 0, 24, 0.04);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    z-index: 1;
}

.register-section .floating-register-4 {
    position: absolute;
    top: 15%;
    left: 20%;
    width: 50px;
    height: 50px;
    background: rgba(255, 97, 7, 0.03);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse;
    z-index: 1;
}

/* Enhanced button styles for login/register sections */
.login-text .btn,
.register-text .btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.login-text .btn::after,
.register-text .btn::after {
    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 0.6s ease;
    z-index: -1;
}

.login-text .btn:hover::after,
.register-text .btn:hover::after {
    left: 100%;
}

/* Special styling for register section button */
.register-text .btn {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-red));
    box-shadow: 
        0 8px 25px rgba(255, 97, 7, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
}

.register-text .btn:hover {
    background: linear-gradient(135deg, var(--accent-red), var(--secondary-orange));
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(255, 97, 7, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2);
}

/* Glow effects for login/register sections */
.login-section::after,
.register-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 97, 7, 0.03) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: glow 10s ease-in-out infinite;
    z-index: 0;
}

/* Enhanced glow effects for register section */
.register-section::after {
    background: 
        radial-gradient(circle, rgba(255, 97, 7, 0.04) 0%, transparent 50%),
        radial-gradient(circle, rgba(196, 0, 24, 0.03) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 0, 24, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text {
    color: var(--text-dark);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.about-text .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 97, 7, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.about-text .badge::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;
}

.about-text .badge:hover::before {
    left: 100%;
}

.about-text h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 97, 7, 0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
    filter: drop-shadow(0 0 10px rgba(255, 97, 7, 0.05));
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.benefits-list {
    list-style: none;
    margin: 2.5rem 0;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.benefits-list li {
    padding: 0.8rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 97, 7, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
    color: var(--primary-orange);
}

.benefits-list li:hover::before {
    background: var(--primary-orange);
    color: var(--white);
    transform: scale(1.1);
}

.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 97, 7, 0.1), rgba(233, 41, 15, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.about-image::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 20px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::after {
    opacity: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-image:hover img {
    transform: translateY(-10px) scale(1.02) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

/* Floating elements for about section */
.about-section .floating-about-1 {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: rgba(255, 97, 7, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.about-section .floating-about-2 {
    position: absolute;
    bottom: 25%;
    left: 8%;
    width: 60px;
    height: 60px;
    background: rgba(233, 41, 15, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

.about-section .floating-about-3 {
    position: absolute;
    top: 60%;
    right: 25%;
    width: 40px;
    height: 40px;
    background: rgba(196, 0, 24, 0.04);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    z-index: 1;
}

/* Games Section */
.games-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 50%, #d1d5db 100%);
    position: relative;
    overflow: hidden;
}

.games-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 41, 15, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 0, 24, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.games-section .section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.games-section .section-header .badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 97, 7, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.games-section .section-header .badge::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;
}

.games-section .section-header .badge:hover::before {
    left: 100%;
}

.games-section .section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(255, 97, 7, 0.1);
    animation: fadeInUp 1s ease-out 0.4s both;
    filter: drop-shadow(0 0 10px rgba(255, 97, 7, 0.05));
}

.games-section .section-header p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.games-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

/* Featured game card (large top card) */
.game-card.featured {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    transform: rotate(-2deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.game-card.featured:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.25),
        0 0 0 3px rgba(255, 97, 7, 0.2);
}

.game-card.featured img {
    height: 400px;
    object-fit: cover;
}

.game-card.featured h3 {
    font-size: 2rem;
    padding: 2.5rem 2.5rem 1.5rem;
}

.game-card.featured p {
    font-size: 1.2rem;
    padding: 0 2.5rem 2.5rem;
}

/* Bottom row of angled game cards */
.games-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: nowrap;
    position: relative;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-orange) transparent;
}

.games-row::-webkit-scrollbar {
    height: 6px;
}

.games-row::-webkit-scrollbar-track {
    background: transparent;
}

.games-row::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 3px;
}

.games-row::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

.games-row .game-card {
    width: 200px;
    flex-shrink: 0;
    transform: rotate(var(--rotation));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.games-row .game-card:nth-child(1) { --rotation: -8deg; }
.games-row .game-card:nth-child(2) { --rotation: -4deg; }
.games-row .game-card:nth-child(3) { --rotation: 0deg; }
.games-row .game-card:nth-child(4) { --rotation: 4deg; }
.games-row .game-card:nth-child(5) { --rotation: 8deg; }

.games-row .game-card:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    z-index: 10;
}

.game-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all var(--transition-medium) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: 1;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

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

.game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: all var(--transition-medium);
    filter: brightness(0.9) contrast(1.1);
}

.game-card:hover img {
    filter: brightness(1.1) contrast(1.2);
    transform: scale(1.05);
}

.game-card h3 {
    padding: 2rem 2rem 1rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-card p {
    padding: 0 2rem 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Floating elements for games section */
.games-section .floating-game-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 97, 7, 0.05);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 1;
}

.games-section .floating-game-2 {
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: rgba(233, 41, 15, 0.05);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 1;
}

.games-section .floating-game-3 {
    position: absolute;
    top: 60%;
    left: 25%;
    width: 60px;
    height: 60px;
    background: rgba(196, 0, 24, 0.04);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite;
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-content h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
}

.benefit-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-author {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: var(--dark-gray);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--white);
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.cta-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-orange);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-section p {
    color: #cccccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #cccccc;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading and Performance */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-orange);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 50%);
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-out both;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.4rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
    position: relative;
    z-index: 2;
}

/* Content Section Styles */
.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-text h3 {
    color: var(--primary-orange);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.content-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-text li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
    text-align: center;
}

.policy-footer p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

/* About Page Styles */
.about-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-hero-text {
    animation: fadeInUp 1s ease-out 0.5s both;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-text h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    filter: drop-shadow(0 0 10px rgba(255, 97, 7, 0.05));
}

.about-hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out 0.7s both;
}

.about-hero-text p:last-child {
    animation-delay: 0.9s;
}

/* Mission Section */
.mission-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.mission-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.mission-item:nth-child(1) { animation-delay: 0.1s; }
.mission-item:nth-child(2) { animation-delay: 0.2s; }
.mission-item:nth-child(3) { animation-delay: 0.3s; }
.mission-item:nth-child(4) { animation-delay: 0.4s; }

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.mission-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.mission-item:hover::before {
    opacity: 1;
}

.mission-item h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
}

.mission-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Values Section */
.values-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.values-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.values-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
    text-align: left;
}

.value-item:nth-child(1) { animation-delay: 0.1s; }
.value-item:nth-child(2) { animation-delay: 0.2s; }
.value-item:nth-child(3) { animation-delay: 0.3s; }
.value-item:nth-child(4) { animation-delay: 0.4s; }

.value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.value-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.value-item:hover::before {
    opacity: 1;
}

.value-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    text-align: center;
}

.value-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Story Section */
.story-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.story-text {
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    margin: 0 auto;
    text-align: center !important;
    display: block;
}

.story-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.story-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out both;
}

.story-text p:nth-child(2) { animation-delay: 0.2s; }
.story-text p:nth-child(3) { animation-delay: 0.4s; }


/* Team Section */
.team-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.team-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.team-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.team-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.team-highlight {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.team-highlight:nth-child(1) { animation-delay: 0.1s; }
.team-highlight:nth-child(2) { animation-delay: 0.2s; }
.team-highlight:nth-child(3) { animation-delay: 0.3s; }

.team-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.team-highlight:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.team-highlight:hover::before {
    opacity: 1;
}

.team-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
}

.team-highlight p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Achievements Section */
.achievements-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.achievements-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.achievements-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.achievement-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.achievement-item:nth-child(1) { animation-delay: 0.1s; }
.achievement-item:nth-child(2) { animation-delay: 0.2s; }
.achievement-item:nth-child(3) { animation-delay: 0.3s; }
.achievement-item:nth-child(4) { animation-delay: 0.4s; }

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.achievement-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.achievement-item:hover::before {
    opacity: 1;
}

.achievement-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.achievement-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Future Section */
.future-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.future-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.future-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.future-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.future-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.future-list {
    list-style: none;
    margin: 3rem 0;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.future-list li {
    padding: 1rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 3rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    animation: fadeInLeft 1s ease-out both;
}

.future-list li:nth-child(1) { animation-delay: 0.1s; }
.future-list li:nth-child(2) { animation-delay: 0.2s; }
.future-list li:nth-child(3) { animation-delay: 0.3s; }
.future-list li:nth-child(4) { animation-delay: 0.4s; }
.future-list li:nth-child(5) { animation-delay: 0.5s; }
.future-list li:nth-child(6) { animation-delay: 0.6s; }

.future-list li::before {
    content: '🚀';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.future-list li:hover {
    transform: translateX(10px);
    color: var(--primary-orange);
}

.future-list li:hover::before {
    transform: scale(1.2) rotate(15deg);
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.cta-buttons .btn-primary {
    background: var(--primary-orange);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 97, 7, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 97, 7, 0.4);
}

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

.cta-buttons .btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 97, 7, 0.3);
}

/* ===== GAMES PAGE STYLES ===== */

/* Games Hero Section */
.games-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 50%, #f0f2f5 100%);
    position: relative;
    overflow: hidden;
}

.games-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.games-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
    text-align: center !important;
}

.games-hero-text {
    animation: fadeInUp 1s ease-out 0.3s both;
    max-width: 800px;
    margin: 0 auto;
    text-align: center !important;
    display: block;
}

.games-hero-text h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.games-hero-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out both;
}

.games-hero-text p:nth-child(2) { animation-delay: 0.2s; }

.games-hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
    justify-content: center;
}

.games-hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.games-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(255, 97, 7, 0.1), rgba(233, 41, 15, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.games-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.games-hero-image:hover img {
    transform: translateY(-10px) scale(1.02) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.2),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

/* Featured Games Section */
.featured-games {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
}

.featured-games::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.featured-games .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.featured-games .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.featured-games .section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.featured-game-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.featured-game-card:nth-child(1) { animation-delay: 0.1s; }
.featured-game-card:nth-child(2) { animation-delay: 0.2s; }
.featured-game-card:nth-child(3) { animation-delay: 0.3s; }
.featured-game-card:nth-child(4) { animation-delay: 0.4s; }

.featured-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.featured-game-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.featured-game-card:hover::before {
    opacity: 1;
}

.game-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.game-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-orange);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.game-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.feature {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 18px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 97, 7, 0.3);
}

.game-info .btn {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.game-info .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 97, 7, 0.4);
}

/* Game Categories Section */
.game-categories {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.game-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-categories .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.game-categories .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-categories .section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.category-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2.5rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
    text-align: center;
}

.category-card:nth-child(1) { animation-delay: 0.1s; }
.category-card:nth-child(2) { animation-delay: 0.2s; }
.category-card:nth-child(3) { animation-delay: 0.3s; }
.category-card:nth-child(4) { animation-delay: 0.4s; }

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.category-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

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

.category-icon {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 97, 7, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.category-icon i {
    font-size: 3rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon i {
    transform: scale(1.2) rotateY(15deg);
    color: var(--secondary-orange);
}

.category-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    z-index: 2;
}

.category-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    background: rgba(255, 97, 7, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Game Features Section */
.game-features {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #e8eaed 100%);
    position: relative;
    overflow: hidden;
}

.game-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.game-features .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.game-features .section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.game-features .section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.feature-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
    text-align: center;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }
.feature-item:nth-child(6) { animation-delay: 0.6s; }

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.feature-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

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

.feature-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Gaming Stats Section */
.gaming-stats {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.gaming-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.stats-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stats-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem 2rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.1s; }
.stat-item:nth-child(2) { animation-delay: 0.2s; }
.stat-item:nth-child(3) { animation-delay: 0.3s; }
.stat-item:nth-child(4) { animation-delay: 0.4s; }

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.stat-item:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    position: relative;
    z-index: 2;
}





/* ===== CONTACT PAGE FAQ PREVIEW STYLES ===== */

/* FAQ Preview Section */
.faq-preview {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-preview .faq-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.faq-preview .faq-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.faq-preview .faq-content p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.faq-preview .faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.faq-preview .faq-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out both;
    text-align: left;
}

.faq-preview .faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-preview .faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-preview .faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-preview .faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-preview .faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.faq-preview .faq-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.faq-preview .faq-item:hover::before {
    opacity: 1;
}

.faq-preview .faq-item h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.faq-preview .faq-item h3::before {
    content: '❓';
    margin-right: 1rem;
    font-size: 1.2rem;
    opacity: 0.8;
}

.faq-preview .faq-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0;
    position: relative;
    z-index: 2;
}

.faq-preview .faq-cta {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.faq-preview .faq-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.faq-preview .faq-cta .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 0.6s ease;
}

.faq-preview .faq-cta .btn:hover::before {
    left: 100%;
}

.faq-preview .faq-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 97, 7, 0.3);
}

/* ===== LEGAL PAGES STYLES (Privacy Policy, Terms & Conditions, Disclaimer) ===== */

/* Legal Page Header */
.legal-page-header {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.legal-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.legal-page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 2;
}

.legal-page-header p {
    font-size: 1.4rem;
    color: var(--text-light);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Legal Content Section */
.legal-content-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.legal-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 97, 7, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(233, 41, 15, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.legal-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.legal-content-text {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.legal-content-text:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.legal-content-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 3rem 0 1.5rem;
    color: var(--primary-orange);
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-orange);
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-content-text h2:first-child {
    margin-top: 0;
}

.legal-content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-content-text ul,
.legal-content-text ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-content-text li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 0.5rem;
}

.legal-content-text ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    background: rgba(255, 97, 7, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.legal-content-text ol li {
    counter-increment: legal-counter;
}

.legal-content-text ol li::before {
    content: counter(legal-counter);
    position: absolute;
    left: -1.5rem;
    color: var(--white);
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.legal-content-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content-text a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.legal-content-text a:hover {
    color: var(--secondary-orange);
    border-bottom-color: var(--secondary-orange);
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(255, 97, 7, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 
        0 20px 40px rgba(255, 97, 7, 0.4),
        0 0 0 3px rgba(255, 97, 7, 0.2);
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-red));
}

.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.back-to-top:hover::before {
    opacity: 1;
}

.back-to-top i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-2px);
}

/* Back to Top Button Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.back-to-top.visible {
    animation: bounce 0.6s ease-out;
}

/* Back to Top Button Focus States for Accessibility */
.back-to-top:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(255, 97, 7, 0.5),
        0 10px 30px rgba(255, 97, 7, 0.3);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--primary-orange);
    outline-offset: 2px;
}

/* ===== FAQ PAGE STYLES ===== */

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.faq-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.faq-categories {
    margin-bottom: 4rem;
}

.faq-categories h2 {
    font-size: 3rem;
    font-weight: 800;
    margin: 4rem 0 2rem;
    padding: 1.5rem 0;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.faq-categories h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    border-radius: 2px;
    animation: slideInLeft 1s ease-out 0.5s both;
}

.faq-categories h2:first-child {
    margin-top: 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    animation: fadeInUp 1s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 25px;
}

.faq-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.faq-item:hover::before {
    opacity: 1;
}

.faq-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    padding: 2rem 2.5rem 1.5rem;
    color: var(--primary-orange);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-item h3::before {
    content: '❓';
    margin-right: 1rem;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.faq-item:hover h3::before {
    transform: rotate(15deg) scale(1.1);
    opacity: 1;
}

.faq-answer {
    padding: 0 2.5rem 2.5rem;
    position: relative;
    z-index: 2;
}

.faq-answer p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul,
.faq-answer ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0.8rem;
    position: relative;
}

.faq-answer ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: var(--primary-orange);
    font-weight: bold;
    background: rgba(255, 97, 7, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.faq-answer ol li {
    counter-increment: faq-counter;
}

.faq-answer ol li::before {
    content: counter(faq-counter);
    position: absolute;
    left: -1.5rem;
    color: var(--white);
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 700;
}

/* FAQ CTA Section */
.faq-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
    margin-top: 4rem;
}

.faq-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 97, 7, 0.05), rgba(233, 41, 15, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 30px;
}

.faq-cta:hover::before {
    opacity: 1;
}

.faq-cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.faq-cta .btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

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

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

.faq-cta .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 97, 7, 0.3);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.mission-section,
.values-section,
.story-section,
.team-section,
.achievements-section,
.future-section {
    padding: 80px 0;
}

.mission-section,
.values-section,
.story-section,
.team-section {
    background: var(--white);
}

.achievements-section,
.future-section {
    background: var(--light-gray);
}

.mission-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-item,
.value-item {
    text-align: center;
    padding: 2rem;
}

.mission-item h3,
.value-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

/* Removed duplicate story styles - using the enhanced version above */

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-highlight {
    text-align: center;
    padding: 2rem;
}

.team-highlight h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.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-item h3 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.future-list {
    list-style: none;
    margin: 2rem 0;
}

.future-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.future-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

/* Contact Page Styles */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 97, 7, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(233, 41, 15, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.contact-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.contact-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.9);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    animation: fadeInUp 1s ease-out both;
}

.contact-method:nth-child(1) { animation-delay: 0.1s; }
.contact-method:nth-child(2) { animation-delay: 0.2s; }
.contact-method:nth-child(3) { animation-delay: 0.3s; }

.contact-method:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.contact-method h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.contact-method p {
    margin-bottom: 0.5rem;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    position: relative;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 600px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-form-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 0 0 2px rgba(255, 97, 7, 0.1);
}

.contact-form-container h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 97, 7, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-orange);
    outline: none;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--accent-red);
}

.error-message {
    color: var(--accent-red);
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 20px;
    height: 20px;
}

.faq-preview,
.support-channels {
    padding: 80px 0;
    background: var(--white);
}

.faq-content h2,
.support-content h2 {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-content p,
.support-content p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.faq-grid,
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.faq-item,
.support-channel {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.faq-item h3,
.support-channel h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.availability {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}



/* Games Page Styles */
.games-hero {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Removed duplicate games-hero styles - using the enhanced version above */

.featured-games {
    padding: 80px 0;
    background: var(--white);
}

.featured-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-game-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.featured-game-card:hover {
    transform: translateY(-10px);
}

.featured-game-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.game-info p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.feature {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-categories {
    padding: 80px 0;
    background: var(--light-gray);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-icon {
    margin-bottom: 1.5rem;
}

.category-icon i {
    font-size: 3.5rem;
    color: var(--primary-orange);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 97, 7, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-icon i:hover {
    transform: scale(1.1);
    background: rgba(255, 97, 7, 0.2);
}

.category-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.category-features {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.category-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.category-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.game-features {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.gaming-stats {
    padding: 80px 0;
    background: var(--dark-gray);
    color: var(--white);
}

.stats-content h2 {
    text-align: center;
    color: var(--white);
    margin-bottom: 3rem;
}

/* Support Page Styles */
.support-hero {
    padding: 80px 0;
    background: var(--light-gray);
}

.support-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.support-hero-text h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.support-hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.support-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-5px);
}

.channel-icon {
    margin-bottom: 1.5rem;
}

.channel-icon i {
    font-size: 3.5rem;
    color: var(--primary-orange);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 97, 7, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.channel-icon i:hover {
    transform: scale(1.1);
    background: rgba(255, 97, 7, 0.2);
}

.channel-card h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.channel-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.channel-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.channel-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
}

.support-topics {
    padding: 80px 0;
    background: var(--light-gray);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.topic-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.topic-category h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
    padding-bottom: 0.5rem;
}

.topic-list {
    list-style: none;
}

.topic-list li {
    margin-bottom: 0.8rem;
}

.topic-list a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.topic-list a:hover {
    color: var(--primary-orange);
}

.support-team,
.support-commitment {
    padding: 80px 0;
    background: var(--white);
}

.team-highlights,
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-highlight,
.commitment-item {
    text-align: center;
    padding: 2rem;
}

.team-highlight h3,
.commitment-item h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.support-cta {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
}

.support-cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.support-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* 404 Error Page Styles */
.error-section {
    padding: 120px 0 80px;
    background: var(--light-gray);
    text-align: center;
}

.error-content {
    max-width: 800px;
    margin: 0 auto;
}

.error-image {
    margin-bottom: 3rem;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.error-text h1 {
    color: var(--text-dark);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-text p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.error-suggestions {
    text-align: left;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.error-suggestions h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.error-suggestions ul {
    list-style: none;
    padding-left: 0;
}

.error-suggestions li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 2rem;
}

.error-suggestions li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.5rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.error-navigation {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    box-shadow: var(--shadow);
}

.error-navigation h3 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
    text-align: center;
}

.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-links a {
    background: var(--light-gray);
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--primary-orange);
    color: var(--white);
}

/* Homepage FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 97, 7, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(233, 41, 15, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.faq-section .section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(255, 97, 7, 0.3);
}

.faq-section .section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-fast) cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.faq-item h3::before {
    content: '❓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: var(--primary-orange);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.faq-cta {
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.faq-cta p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-cta a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-bottom: 2px solid transparent;
}

.faq-cta a:hover {
    border-bottom-color: var(--primary-orange);
    color: var(--secondary-orange);
}

/* Mobile Transition Optimizations */
@media (max-width: 768px) {
    /* Ultra-fast mobile transitions */
    .btn,
    .nav-link,
    .feature-card,
    .game-card,
    .faq-item {
        transition-duration: var(--transition-mobile) !important;
    }
    
    .nav-menu,
    .feature-card::before,
    .game-card::before {
        transition-duration: var(--transition-mobile-slow) !important;
    }
    
    /* Optimize mobile menu performance */
    .nav-menu.active {
        transition: all var(--transition-mobile-slow) cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }
    
    /* Faster mobile animations */
    .nav-list li {
        animation-duration: 0.2s !important;
    }
    
    .nav-actions {
        animation-duration: 0.25s !important;
    }
    
    /* Optimize hover effects for touch devices */
    .btn:hover,
    .nav-link:hover,
    .feature-card:hover,
    .game-card:hover,
    .faq-item:hover {
        transition-duration: var(--transition-mobile) !important;
    }
}

@media (max-width: 480px) {
    /* Super-fast small mobile transitions */
    .btn,
    .nav-link,
    .feature-card,
    .game-card,
    .faq-item {
        transition-duration: 0.08s !important;
    }
    
    .nav-menu,
    .feature-card::before,
    .game-card::before {
        transition-duration: 0.12s !important;
    }
    
    /* Ultra-fast mobile menu */
    .nav-menu.active {
        transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    }
    
    /* Optimize small screen animations */
    .nav-list li {
        animation-duration: 0.15s !important;
    }
    
    .nav-actions {
        animation-duration: 0.2s !important;
    }
} 