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

:root {
    --primary-color: #09122C;
    --secondary-color: #872341;
    --accent-color: #BE3144;
    --highlight-color: #E17564;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #666666;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
}

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

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

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

h1 {
    font-size: 3rem;
    color: var(--primary-color);
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

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

.highlight {
    color: var(--highlight-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    min-width: 140px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    box-shadow: var(--shadow);
}

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

.btn-secondary {
    background: linear-gradient(135deg, #872341, #be3e50);
    color: white;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(135, 35, 65, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #BE3144, #E17564);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 49, 68, 0.4);
}

.btn-login {
    background: var(--secondary-color);
    color: var(--text-light);
    margin-right: 10px;
}

.btn-login:hover {
    background: var(--accent-color);
}

.btn-register {
    background: var(--accent-color);
    color: var(--text-light);
}

.btn-register:hover {
    background: var(--highlight-color);
}

/* Header and Navigation */
.header {
    background: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 1rem 0;
}

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

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1rem;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--highlight-color);
    background: rgba(255, 255, 255, 0.1);
}

.nav-auth {
    display: flex;
    align-items: center;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #09122C 0%, #872341 50%, #BE3144 100%);
    color: var(--text-light);
    padding: 160px 0 120px;
    margin-top: 80px;
    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(190, 49, 68, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(225, 117, 100, 0.4) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(9, 18, 44, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(135, 35, 65, 0.3) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundShift 3s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(3px 3px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(3px 3px at 160px 30px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 180px 60px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.4;
    z-index: 1;
    animation: particleFloat 2s linear infinite;
}

/* Floating geometric shapes for extra cool effect */
.hero-section .floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.hero-section .floating-shapes::before,
.hero-section .floating-shapes::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatShape 4s ease-in-out infinite;
}

.hero-section .floating-shapes::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-section .floating-shapes::after {
    top: 70%;
    right: 15%;
    animation-delay: 2s;
}

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

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    text-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #E17564 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleGlow 2s ease-in-out infinite alternate;
}

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

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out 0.6s both;
}

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

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(225, 117, 100, 0.1), rgba(190, 49, 68, 0.1));
    border-radius: 30px;
    z-index: -1;
    animation: heroImageGlow 2s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: heroImageShine 3s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.hero-image:hover img {
    transform: translateY(-20px) scale(1.03) rotateY(5deg);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    filter: brightness(1.2) contrast(1.2);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    border-radius: 35px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(30px);
    animation: heroImageGlow 4s ease-in-out infinite alternate;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    border-radius: 30px;
    z-index: -1;
    animation: heroImageShine 3s ease-in-out infinite;
}

/* Hero Section Animations */
@keyframes heroTitleGlow {
    0% {
        filter: drop-shadow(0 0 25px rgba(225, 117, 100, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(225, 117, 100, 0.7));
    }
    100% {
        filter: drop-shadow(0 0 25px rgba(225, 117, 100, 0.4));
    }
}

@keyframes heroImageGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes heroImageShine {
    0% {
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 80px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
        animation: heroTitleGlow 1.5s ease-in-out infinite alternate;
    }
    
    .hero-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        animation: fadeInUp 0.8s ease-out 0.3s both;
    }
    
    .hero-buttons {
        justify-content: center;
        animation: fadeInUp 0.8s ease-out 0.6s both;
    }
    
    .hero-image {
        animation: fadeInRight 0.8s ease-out 0.9s both;
    }
    
    .hero-image::before,
    .hero-image::after {
        display: none;
    }
    
    /* Reduce mobile animation times */
    .hero-section::before {
        animation: backgroundShift 2s ease-in-out infinite;
    }
    
    .hero-section::after {
        animation: particleFloat 1.5s linear infinite;
    }
    
    .floating-shapes::before,
    .floating-shapes::after {
        animation: floatShape 2.5s ease-in-out infinite;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Section Styles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8));
    z-index: 1;
}

.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(135, 35, 65, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.features-section .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 5rem;
}

.features-section .section-title::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    border-radius: 3px;
    opacity: 0.8;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 3.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(190, 49, 68, 0.02) 0%, rgba(225, 117, 100, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(190, 49, 68, 0.1);
    border-color: rgba(190, 49, 68, 0.1);
}

.feature-icon {
    margin-bottom: 2.5rem;
    display: inline-block;
    padding: 2rem;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    border-radius: 50%;
    box-shadow: 
        0 15px 30px rgba(190, 49, 68, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%) rotate(45deg);
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-icon::before {
    transform: translateX(100%) rotate(45deg);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 20px 40px rgba(190, 49, 68, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon i {
    font-size: 3rem;
    color: var(--text-light);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #09122C 0%, #872341 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Feature Card Hover Effects */
.feature-card:hover .feature-icon i {
    animation: iconBounce 0.6s ease-in-out;
}

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

/* Features Section Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 2.5rem 2rem;
    }
    
    .feature-icon {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .feature-icon i {
        font-size: 2.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .features-section {
        padding: 60px 0;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .feature-icon {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.4rem;
    }
    
    .feature-card p {
        font-size: 1rem;
    }
}

/* Login and Register Sections */
.login-section,
.register-section {
    padding: 100px 0;
    color: var(--text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.login-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #e94560 100%);
}

.register-section {
    background: linear-gradient(135deg, #2d1b69 0%, #11998e 25%, #38ef7d 50%, #ff6b6b 75%, #feca57 100%);
}

.login-section::before,
.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(233, 69, 96, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(83, 52, 131, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(15, 52, 96, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.login-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.register-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    pointer-events: none;
}

.login-content,
.register-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.login-content h2,
.register-content h2 {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 3rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #e94560 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-content h2 {
    background: linear-gradient(135deg, #ffffff 0%, #38ef7d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-content p,
.register-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Login Section Layout */
.login-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.login-content {
    text-align: left;
    max-width: none;
    margin: 0;
}

.login-content h2 {
    text-align: left;
}

.login-content p {
    text-align: left;
}

.login-section-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1.2s ease-out 0.6s both;
}

.login-section-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(233, 69, 96, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.login-section-image:hover img {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(233, 69, 96, 0.5);
    filter: brightness(1.2) contrast(1.2);
}

.login-section-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.3) 0%, rgba(83, 52, 131, 0.2) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(20px);
    animation: loginImageGlow 4s ease-in-out infinite alternate;
}

/* Register Section Layout */
.register-section .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.register-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.register-content h2 {
    text-align: center;
}

.register-content p {
    text-align: center;
}

.register-section-image {
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out 0.6s both;
    margin-top: 2rem;
}

.register-section-image img {
    width: auto;
    height: 400px;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(56, 239, 125, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(1.1) contrast(1.1);
}

.register-section-image img:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(56, 239, 125, 0.5);
    filter: brightness(1.2) contrast(1.2);
}

.register-section-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(56, 239, 125, 0.3) 0%, rgba(255, 107, 107, 0.2) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.4;
    filter: blur(20px);
    animation: registerImageGlow 4s ease-in-out infinite alternate;
}

/* Login Section Button Styling */
.login-section .btn-primary {
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(233, 69, 96, 0.4);
    transition: all 0.3s ease;
}

.login-section .btn-primary:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #e94560 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(233, 69, 96, 0.6);
}

/* Register Section Button Styling */
.register-section .btn-primary {
    background: linear-gradient(135deg, #38ef7d 0%, #11998e 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(56, 239, 125, 0.4);
    transition: all 0.3s ease;
}

.register-section .btn-primary:hover {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(56, 239, 125, 0.6);
}

/* Login Section Animations */
@keyframes loginImageGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes registerImageGlow {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    100% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

/* Responsive Design for Login/Register Sections */
@media (max-width: 768px) {
    .login-section .container,
    .register-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 1rem;
    }
    
    .login-content,
    .register-content {
        text-align: center;
    }
    
    .login-content h2,
    .register-content h2 {
        text-align: center;
        font-size: 2.5rem;
    }
    
    .login-content p,
    .register-content p {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .login-section-image::before,
    .register-section-image::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .login-section,
    .register-section {
        padding: 80px 0;
    }
    
    .login-content h2,
    .register-content h2 {
        font-size: 2rem;
    }
    
    .login-content p,
    .register-content p {
        font-size: 1rem;
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--text-light);
}

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

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    background: var(--background-light);
}

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

.game-card {
    background: var(--text-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.game-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--primary-color);
}

.game-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 25%, #dee2e6 50%, #ced4da 75%, #adb5bd 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(190, 49, 68, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(225, 117, 100, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(135, 35, 65, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

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

.benefits-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
    animation: titleUnderline 3s ease-in-out infinite;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    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);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1),
        0 0 0 3px rgba(190, 49, 68, 0.1);
}

.benefit-item h3 {
    color: #09122C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

.benefit-item p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.benefit-item .benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #BE3144, #E17564);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(190, 49, 68, 0.3),
        0 5px 15px rgba(225, 117, 100, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item .benefit-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(190, 49, 68, 0.4),
        0 8px 20px rgba(225, 117, 100, 0.3);
}

/* Benefits Animation */
.benefit-item {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

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

@keyframes titleUnderline {
    0%, 100% {
        width: 120px;
        opacity: 1;
    }
    50% {
        width: 150px;
        opacity: 0.8;
    }
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-section {
        padding: 80px 0;
    }
    
    .benefits-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .benefit-item {
        padding: 2.5rem 1.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.6rem;
    }
    
    .benefit-item .benefit-icon {
        width: 70px;
        height: 70px;
    }
    
    .benefit-item .benefit-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-item {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .benefit-item h3 {
        font-size: 1.4rem;
    }
    
    .benefit-item p {
        font-size: 1rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(190, 49, 68, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(225, 117, 100, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(135, 35, 65, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, rgba(190, 49, 68, 0.03) 1px, transparent 1px);
    background-size: 80px 80px, 120px 120px;
    animation: testimonialParticles 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.testimonials-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
    color: white;
}

.testimonials-section .section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    border-radius: 2px;
    animation: testimonialUnderline 4s ease-in-out infinite;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341, #E17564);
    background-size: 200% 100%;
    animation: testimonialBorder 3s linear infinite;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 8rem;
    color: rgba(225, 117, 100, 0.3);
    font-family: serif;
    line-height: 1;
    z-index: 1;
}

.testimonial-card:hover {
    transform: translateY(-20px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.4),
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 3px rgba(225, 117, 100, 0.2);
}

.testimonial-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(225, 117, 100, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-author img {
    transform: scale(1.1);
    border-color: rgba(225, 117, 100, 0.8);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.author-info h4 {
    color: #E17564;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Testimonial Rating Stars */
.testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-rating i {
    color: #FFD700;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-rating i:nth-child(2) { animation-delay: 0.2s; }
.testimonial-rating i:nth-child(3) { animation-delay: 0.4s; }
.testimonial-rating i:nth-child(4) { animation-delay: 0.6s; }
.testimonial-rating i:nth-child(5) { animation-delay: 0.8s; }

/* Testimonials Animation */
.testimonial-card {
    animation: testimonialFadeIn 1s ease-out forwards;
    opacity: 0;
    transform: translateY(40px);
}

.testimonial-card:nth-child(1) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.4s; }
.testimonial-card:nth-child(3) { animation-delay: 0.6s; }

@keyframes testimonialUnderline {
    0%, 100% {
        width: 100px;
        opacity: 1;
    }
    50% {
        width: 140px;
        opacity: 0.7;
    }
}

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

@keyframes testimonialParticles {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(-100px) translateX(-50px);
    }
}

@keyframes testimonialFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        gap: 2rem;
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 2.5rem 2rem;
    }
    
    .testimonial-card p {
        font-size: 1.1rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .testimonial-card p {
        font-size: 1rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .testimonial-rating i {
        font-size: 1rem;
    }
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
}

.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(--highlight-color);
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--text-light);
    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(--text-light);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-auth {
        display: none;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
a:focus {
    outline: 2px solid var(--highlight-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-muted: #000000;
        --border-color: #000000;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }

    body {
        background: white;
        color: black;
    }
} 

/* Step Styling */
.step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid #e9ecef;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: visible;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.step:hover::before {
    transform: scaleX(1);
}

.step:hover {
    transform: translateY(-5px);
    border-color: #BE3144;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 5px 15px rgba(190, 49, 68, 0.1);
}

.step h3 {
    color: #09122C;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.step p {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.step-number {
    position: absolute;
    top: -25px;
    right: 25px;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: 0 5px 15px rgba(190, 49, 68, 0.3);
    z-index: 10;
    border: 3px solid white;
}

.step-icon {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #BE3144 0%, #E17564 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(190, 49, 68, 0.2);
    transition: all 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(190, 49, 68, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Step Container */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

/* Step Animation */
.step {
    animation: fadeInUp 0.6s ease-out both;
}

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

/* Step Responsive */
@media (max-width: 768px) {
    .step {
        padding: 2rem 1.5rem 1.5rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .step-icon {
        padding: 0.8rem;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: -20px;
        right: 20px;
        border: 2px solid white;
    }
}

@media (max-width: 480px) {
    .step {
        padding: 1.75rem 1.25rem 1.25rem 1.25rem;
        border-radius: 15px;
    }
    
    .step h3 {
        font-size: 1.2rem;
    }
    
    .step-icon {
        padding: 0.7rem;
    }
    
    .step-icon i {
        font-size: 1.6rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -17px;
        right: 18px;
        border: 2px solid white;
    }
} 

/* Games Slider Section */
.games-slider-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(190, 49, 68, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(225, 117, 100, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(9, 18, 44, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(135, 35, 65, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: backgroundShift 8s ease-in-out infinite alternate;
}

.games-slider-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(190, 49, 68, 0.08) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(225, 117, 100, 0.06) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(135, 35, 65, 0.05) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
    animation: particleFloat 20s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Background Animations */
@keyframes backgroundShift {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1) rotate(1deg);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(-100px) translateX(-50px);
    }
}

.games-slider-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider-header {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

.slider-header .section-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    color: white;
    position: relative;
}

.slider-header .section-title::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #E17564 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: -1;
}

.emoji {
    display: inline-block;
    font-size: 3rem;
    margin-left: 0.5rem;
    vertical-align: middle;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: emojiBounce 2s ease-in-out infinite;
    color: #FFD700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 1;
    position: relative;
}

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

.language-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E17564 0%, #FF8A80 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 20px rgba(225, 117, 100, 0.3);
}

/* Mobile Games Slider */
.mobile-games-slider {
    position: relative;
    margin-bottom: 4rem;
    height: 500px;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mobile-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-slide {
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateX(0);
    z-index: 1;
    text-align: center;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1) translateX(0);
    z-index: 3;
}

.mobile-slide.prev {
    opacity: 0.7;
    transform: scale(0.9) translateX(-60%);
    z-index: 2;
}

.mobile-slide.next {
    opacity: 0.7;
    transform: scale(0.9) translateX(60%);
    z-index: 2;
}

.mobile-slide.far-prev {
    opacity: 0.4;
    transform: scale(0.7) translateX(-120%);
    z-index: 1;
}

.mobile-slide.far-next {
    opacity: 0.4;
    transform: scale(0.7) translateX(120%);
    z-index: 1;
}

.mobile-screen {
    margin-bottom: 1rem;
}

.mobile-screen img {
    width: 280px;
    height: auto;
    border-radius: 25px;
    
    transition: all 0.3s ease;
}



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

.game-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.game-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

.slider-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Game Thumbnails */
.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    flex-wrap: wrap;
}

/* Slider Slogan */
.slider-slogan {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-top: 8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.thumbnail-item {
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.thumbnail-item img {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.thumbnail-item.active img {
    border-color: #E17564;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(225, 117, 100, 0.3);
    transform: scale(1.1);
}

.thumbnail-item:hover img {
    transform: scale(1.05);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.3);
}

.thumbnail-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: block;
}

.thumbnail-item.active .thumbnail-name {
    opacity: 1;
    color: #E17564;
}

/* Games Slider Responsive */
@media (max-width: 768px) {
    .games-slider-section {
        padding: 80px 0;
    }
    
    .slider-header .section-title {
        font-size: 2.8rem;
    }
    
    .mobile-games-slider {
        height: 400px;
        margin-bottom: 3rem;
    }
    
    .mobile-screen img {
        width: 220px;
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav svg {
        width: 20px;
        height: 20px;
    }
    
    .game-thumbnails {
        gap: 1.5rem;
    }
    
    .thumbnail-item img {
        width: 70px;
        height: 70px;
    }
    
    .thumbnail-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .games-slider-section {
        padding: 60px 0;
    }
    
    .slider-header .section-title {
        font-size: 2.2rem;
    }
    
    .mobile-games-slider {
        height: 350px;
        margin-bottom: 2.5rem;
    }
    
    .mobile-screen img {
        width: 180px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .game-thumbnails {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .thumbnail-item img {
        width: 60px;
        height: 60px;
    }
    
    .thumbnail-name {
        font-size: 0.75rem;
    }
} 

/* About Page Styles */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #09122C 0%, #872341 25%, #BE3144 50%, #E17564 75%, #533483 100%);
    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(190, 49, 68, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #FFFFFF, #E17564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pageTitleGlow 3s ease-in-out infinite alternate;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes pageTitleGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(225, 117, 100, 0.5));
    }
    100% {
        filter: drop-shadow(0 0 30px rgba(225, 117, 100, 0.8));
    }
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(190, 49, 68, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(225, 117, 100, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.mission-content h2 {
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.mission-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564);
    border-radius: 2px;
}

.mission-content p {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Vision Section */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(225, 117, 100, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(190, 49, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.vision-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFFFFF, #E17564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
}

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

.values-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.values-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06);
    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);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(190, 49, 68, 0.1), transparent);
    transition: left 0.6s ease;
}

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

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #BE3144, #E17564);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(190, 49, 68, 0.3);
    transition: all 0.3s ease;
}

.value-icon i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(190, 49, 68, 0.4);
}

.value-card h3 {
    color: #09122C;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.value-card p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* History Section */
.history-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.history-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.history-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    border-radius: 2px;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #E17564, #BE3144, #872341);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: timelineFadeIn 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.2s; }
.timeline-item:nth-child(2) { animation-delay: 0.4s; }
.timeline-item:nth-child(3) { animation-delay: 0.6s; }
.timeline-item:nth-child(4) { animation-delay: 0.8s; }
.timeline-item:nth-child(5) { animation-delay: 1.0s; }

.timeline-year {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #BE3144, #E17564);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(190, 49, 68, 0.3);
    z-index: 3;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: #E17564;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.team-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.team-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.team-member:hover::before {
    transform: scaleX(1);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
    color: #09122C;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-member .position {
    color: #E17564;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.achievements-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.achievements-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    border-radius: 2px;
}

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

.achievement-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.achievement-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(225, 117, 100, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.achievement-item:hover::before {
    transform: translateX(100%);
}

.achievement-item:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.achievement-item h3 {
    color: #E17564;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.achievement-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Animations */
@keyframes timelineFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive About Page */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .mission-section,
    .vision-section,
    .values-section,
    .history-section,
    .team-section,
    .achievements-section {
        padding: 60px 0;
    }
    
    .mission-content h2,
    .vision-content h2,
    .values-section .section-title,
    .history-section .section-title,
    .team-section .section-title,
    .achievements-section .section-title {
        font-size: 2rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-year {
        left: 30px;
        transform: none;
    }
    
    .timeline-content {
        margin-left: 60px;
        text-align: left;
    }
    
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .mission-content h2,
    .vision-content h2,
    .values-section .section-title,
    .history-section .section-title,
    .team-section .section-title,
    .achievements-section .section-title {
        font-size: 1.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card,
    .team-member {
        padding: 2rem 1.5rem;
    }
    
    .achievement-item {
        padding: 2rem 1rem;
    }
} 

/* Contact Page Styles */

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(225, 117, 100, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(190, 49, 68, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.contact-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #BE3144, #E17564);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 30px rgba(190, 49, 68, 0.3),
        0 5px 15px rgba(225, 117, 100, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-card:hover .contact-icon::before {
    transform: translateX(100%);
}

.contact-icon img {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 40px rgba(190, 49, 68, 0.4),
        0 8px 20px rgba(225, 117, 100, 0.3);
}

.contact-card h3 {
    color: #09122C;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-card p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-details {
    text-align: left;
    background: rgba(248, 249, 250, 0.8);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #E17564;
}

.contact-details p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: #495057;
}

.contact-details strong {
    color: #09122C;
}

/* Support Categories Section */
.support-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.support-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(225, 117, 100, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(190, 49, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.support-categories .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.support-categories .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    border-radius: 2px;
}

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

.category-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.category-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.category-item:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.category-item h3 {
    color: #E17564;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.category-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #E17564;
    font-weight: bold;
}

.category-item li:last-child {
    border-bottom: none;
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.contact-form-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 10px 20px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(190, 49, 68, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: #09122C;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E17564;
    box-shadow: 0 0 0 3px rgba(225, 117, 100, 0.1);
    transform: translateY(-2px);
}

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-label a {
    color: #E17564;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.form-submit .btn {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/* FAQ Preview Section */
.faq-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.faq-preview .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.faq-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    border-radius: 2px;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E17564, #BE3144, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.faq-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.faq-item h3 {
    color: #E17564;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Office Locations Section */
.office-locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.office-locations .section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
}

.office-locations .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
}

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

.location-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.location-card:hover::before {
    transform: scaleX(1);
}

.location-card:hover {
    transform: translateY(-15px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

.location-card h3 {
    color: #09122C;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.location-card p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.location-card strong {
    color: #09122C;
}

/* Responsive Contact Page */
@media (max-width: 768px) {
    .contact-info-section,
    .support-categories,
    .contact-form-section,
    .faq-preview,
    .office-locations {
        padding: 60px 0;
    }
    
    .contact-grid,
    .categories-grid,
    .faq-grid,
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .contact-card,
    .category-item,
    .faq-item,
    .location-card {
        padding: 2rem 1.5rem;
    }
    
    .support-categories .section-title,
    .contact-form-section .section-title,
    .faq-preview .section-title,
    .office-locations .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-card,
    .category-item,
    .faq-item,
    .location-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-icon {
        width: 80px;
        height: 80px;
    }
    
    .contact-icon img {
        width: 50px;
        height: 50px;
    }
    
    .support-categories .section-title,
    .contact-form-section .section-title,
    .faq-preview .section-title,
    .office-locations .section-title {
        font-size: 1.8rem;
    }
} 

/* FAQ Page Styles */

/* FAQ Search Section */
.faq-search {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.faq-search::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.06) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(225, 117, 100, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.search-input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(190, 49, 68, 0.2);
    border-radius: 25px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-input:focus {
    outline: none;
    border-color: #E17564;
    box-shadow: 0 0 0 3px rgba(225, 117, 100, 0.1), 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.search-btn {
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #BE3144, #E17564);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(190, 49, 68, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 49, 68, 0.4);
}

/* FAQ Categories Section */
.faq-categories {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.faq-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(225, 117, 100, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(190, 49, 68, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, #E17564, #BE3144);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 20px rgba(225, 117, 100, 0.4);
}

/* FAQ Content Section */
.faq-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.faq-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(225, 117, 100, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.faq-category {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-category.active {
    display: block;
    animation: fadeInUp 0.6s ease-out;
}

.category-title {
    text-align: center;
    color: #09122C;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    border-radius: 2px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 5px 15px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.faq-question:hover {
    background: rgba(255, 255, 255, 0.95);
}

.faq-question h3 {
    color: #09122C;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #E17564;
    font-weight: 700;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(225, 117, 100, 0.1);
    border-radius: 50%;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: rgba(225, 117, 100, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(248, 249, 250, 0.8);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Still Have Questions Section */
.still-have-questions {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.still-have-questions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(225, 117, 100, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(190, 49, 68, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

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

.questions-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF, #E17564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.questions-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

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

.questions-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.questions-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

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

/* Responsive FAQ Page */
@media (max-width: 768px) {
    .faq-search,
    .faq-categories,
    .faq-content,
    .still-have-questions {
        padding: 60px 0;
    }
    
    .search-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-input,
    .search-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .category-tabs {
        gap: 0.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .category-title,
    .questions-content h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1.2rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
    
    .questions-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-search,
    .faq-categories,
    .faq-content,
    .still-have-questions {
        padding: 40px 0;
    }
    
    .search-input,
    .search-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .tab-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .category-title,
    .questions-content h2 {
        font-size: 1.8rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .questions-content p {
        font-size: 1.1rem;
    }
} 

/* Legal Pages Styles (Privacy Policy, Terms & Conditions, Disclaimer) */

/* Legal Page Content Sections */
.privacy-content,
.terms-content,
.disclaimer-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    overflow: hidden;
}

.privacy-content::before,
.terms-content::before,
.disclaimer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(225, 117, 100, 0.03) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Policy/Terms/Disclaimer Sections */
.policy-section,
.terms-section,
.disclaimer-section {
    background: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 8px 16px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-section::before,
.terms-section::before,
.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #BE3144, #E17564, #872341);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.policy-section:hover::before,
.terms-section:hover::before,
.disclaimer-section:hover::before {
    transform: scaleX(1);
}

.policy-section:hover,
.terms-section:hover,
.disclaimer-section:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Section Headings */
.policy-section h2,
.terms-section h2,
.disclaimer-section h2 {
    color: #09122C;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 0.5rem;
}

.policy-section h2::after,
.terms-section h2::after,
.disclaimer-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #BE3144, #E17564);
    border-radius: 2px;
}

/* Subsection Headings */
.policy-section h3,
.terms-section h3,
.disclaimer-section h3 {
    color: #E17564;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Section Content */
.policy-section p,
.terms-section p,
.disclaimer-section p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Lists Styling */
.policy-section ul,
.terms-section ul,
.disclaimer-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li,
.terms-section li,
.disclaimer-section li {
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.policy-section li::before,
.terms-section li::before,
.disclaimer-section li::before {
    content: '•';
    color: #E17564;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -1.5rem;
    top: -0.1rem;
}

/* Strong Text Styling */
.policy-section strong,
.terms-section strong,
.disclaimer-section strong {
    color: #09122C;
    font-weight: 700;
    background: linear-gradient(135deg, #09122C, #872341);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Last Updated Styling */
.last-updated {
    background: linear-gradient(135deg, #BE3144, #E17564);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(190, 49, 68, 0.3);
    text-align: center;
}

/* Legal Page Container */
.privacy-content .container,
.terms-content .container,
.disclaimer-content .container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Legal Page Animations */
.policy-section,
.terms-section,
.disclaimer-section {
    animation: legalSectionFadeIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.policy-section:nth-child(1),
.terms-section:nth-child(1),
.disclaimer-section:nth-child(1) { animation-delay: 0.1s; }
.policy-section:nth-child(2),
.terms-section:nth-child(2),
.disclaimer-section:nth-child(2) { animation-delay: 0.2s; }
.policy-section:nth-child(3),
.terms-section:nth-child(3),
.disclaimer-section:nth-child(3) { animation-delay: 0.3s; }
.policy-section:nth-child(4),
.terms-section:nth-child(4),
.disclaimer-section:nth-child(4) { animation-delay: 0.4s; }
.policy-section:nth-child(5),
.terms-section:nth-child(5),
.disclaimer-section:nth-child(5) { animation-delay: 0.5s; }
.policy-section:nth-child(6),
.terms-section:nth-child(6),
.disclaimer-section:nth-child(6) { animation-delay: 0.6s; }

@keyframes legalSectionFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legal Page Responsive Design */
@media (max-width: 768px) {
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 60px 0;
    }
    
    .policy-section,
    .terms-section,
    .disclaimer-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.8rem;
    }
    
    .policy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section p,
    .terms-section p,
    .disclaimer-section p {
        font-size: 1rem;
    }
    
    .policy-section li,
    .terms-section li,
    .disclaimer-section li {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-content,
    .terms-content,
    .disclaimer-content {
        padding: 40px 0;
    }
    
    .policy-section,
    .terms-section,
    .disclaimer-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 20px;
    }
    
    .policy-section h2,
    .terms-section h2,
    .disclaimer-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-section h3,
    .terms-section h3,
    .disclaimer-section h3 {
        font-size: 1.2rem;
    }
    
    .policy-section p,
    .terms-section p,
    .disclaimer-section p {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .policy-section li,
    .terms-section li,
    .disclaimer-section li {
        font-size: 0.95rem;
    }
    
    .last-updated {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
} 

/* 404 Error Page Styles */

/* 404 Error Section */
.error-404 {
    min-height: 100vh;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.error-404::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(190, 49, 68, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(225, 117, 100, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(9, 18, 44, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(135, 35, 65, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
    animation: errorBackgroundShift 8s ease-in-out infinite alternate;
}

.error-404::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(190, 49, 68, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 50% 10%, rgba(225, 117, 100, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 10% 50%, rgba(135, 35, 65, 0.02) 1px, transparent 1px);
    background-size: 100px 100px, 150px 150px, 80px 80px, 120px 120px;
    animation: errorParticleFloat 25s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.error-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: errorContentFadeIn 1s ease-out;
}

/* Error Number Styling */
.error-number {
    font-size: 12rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, #E17564, #BE3144, #872341, #E17564);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    text-shadow: 0 0 50px rgba(225, 117, 100, 0.5);
    animation: errorNumberGlow 3s ease-in-out infinite alternate, errorNumberFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(190, 49, 68, 0.3));
}

/* Error Title */
.error-404 h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #FFFFFF, #E17564);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: errorTitleSlide 1.2s ease-out 0.3s both;
}

/* Error Description */
.error-404 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: errorDescriptionSlide 1.2s ease-out 0.6s both;
}

/* Error Actions */
.error-actions {
    margin-bottom: 4rem;
    animation: errorActionsSlide 1.2s ease-out 0.9s both;
}

.error-actions .btn {
    margin: 0 1rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.error-actions .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;
}

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

.error-actions .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* Helpful Links Section */
.helpful-links {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
    animation: helpfulLinksSlide 1.2s ease-out 1.2s both;
}

.helpful-links h3 {
    color: #E17564;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.helpful-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.helpful-links li {
    margin: 0;
}

.helpful-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.helpful-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Search Suggestion Section */
.search-suggestion {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: searchSuggestionSlide 1.2s ease-out 1.5s both;
}

.search-suggestion h3 {
    color: #E17564;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.search-suggestion p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.search-suggestion .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.search-suggestion .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 404 Page Animations */
@keyframes errorBackgroundShift {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.1) rotate(1deg);
        opacity: 1;
    }
}

@keyframes errorParticleFloat {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(-100px) translateX(-50px);
    }
}

@keyframes errorNumberGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(190, 49, 68, 0.3));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(190, 49, 68, 0.6));
    }
}

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

@keyframes errorContentFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

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

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

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

/* 404 Page Responsive Design */
@media (max-width: 768px) {
    .error-404 {
        padding: 1rem 0;
    }
    
    .error-number {
        font-size: 8rem;
    }
    
    .error-404 h1 {
        font-size: 2.2rem;
    }
    
    .error-404 p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .error-actions .btn {
        display: block;
        margin: 1rem auto;
        max-width: 250px;
    }
    
    .helpful-links,
    .search-suggestion {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .helpful-links h3,
    .search-suggestion h3 {
        font-size: 1.5rem;
    }
    
    .helpful-links ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .helpful-links a {
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .error-number {
        font-size: 6rem;
    }
    
    .error-404 h1 {
        font-size: 1.8rem;
    }
    
    .error-404 p {
        font-size: 1rem;
    }
    
    .error-actions .btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .helpful-links,
    .search-suggestion {
        padding: 1.5rem;
    }
    
    .helpful-links h3,
    .search-suggestion h3 {
        font-size: 1.3rem;
    }
    
    .helpful-links a {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }
} 

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #BE3144, #E17564);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(190, 49, 68, 0.4),
        0 5px 15px rgba(225, 117, 100, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
    opacity: 0;
    transform: scale(0.8);
}

.back-to-top.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(190, 49, 68, 0.5),
        0 8px 20px rgba(225, 117, 100, 0.4);
    background: linear-gradient(135deg, #E17564, #BE3144);
}

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

.back-to-top:hover::before {
    transform: translateX(100%);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

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

/* Back to Top Button Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

/* Active Navigation Link Styling */
.nav-link.active {
    background: linear-gradient(135deg, #872341, #BE3144);
    color: white !important;
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    box-shadow: 0 4px 15px rgba(135, 35, 65, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.nav-link.active::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.5s ease;
}

.nav-link.active:hover::before {
    left: 100%;
}

.nav-link.active:hover {
    background: linear-gradient(135deg, #BE3144, #E17564);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(190, 49, 68, 0.5);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link.active:hover::after {
    width: 80%;
}

/* Responsive adjustments for active nav link */
@media (max-width: 768px) {
    .nav-link.active {
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
    }
}

/* Global Mobile Transition Optimizations */
@media (max-width: 768px) {
    /* Reduce all transition times for mobile */
    * {
        transition-duration: 0.2s !important;
        animation-duration: 0.8s !important;
    }
    
    /* Specific mobile optimizations */
    .btn {
        transition: all 0.2s ease !important;
    }
    
    .btn:hover {
        transform: translateY(-1px) !important;
    }
    
    .feature-card,
    .benefit-item,
    .testimonial-card,
    .about-card,
    .contact-card,
    .faq-item,
    .legal-section {
        transition: all 0.25s ease !important;
    }
    
    .feature-card:hover,
    .benefit-item:hover,
    .testimonial-card:hover,
    .about-card:hover,
    .contact-card:hover,
    .faq-item:hover,
    .legal-section:hover {
        transform: translateY(-2px) !important;
    }
    
    /* Reduce animation times for mobile */
    .fadeInUp,
    .fadeInRight,
    .fadeInLeft {
        animation-duration: 0.6s !important;
    }
    
    /* Optimize slider animations */
    .games-slider-section .mobile-slide {
        transition: all 0.3s ease !important;
    }
    
    .game-thumbnails .thumbnail-item {
        transition: all 0.2s ease !important;
    }
}

@media (max-width: 480px) {
    /* Further reduce transitions for small mobile devices */
    * {
        transition-duration: 0.15s !important;
        animation-duration: 0.6s !important;
    }
    
    .btn:hover {
        transform: none !important;
    }
    
    .feature-card:hover,
    .benefit-item:hover,
    .testimonial-card:hover,
    .about-card:hover,
    .contact-card:hover,
    .faq-item:hover,
    .legal-section:hover {
        transform: none !important;
    }
}