/* Reset and Base Styles */
html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

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

:root {
    --primary-color: #252525;
    --secondary-color: #FF0000;
    --accent-color: #AF0404;
    --text-color: #414141;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

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

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    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(--secondary-color), var(--accent-color));
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.3);
}

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

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

.btn-login {
    background: var(--primary-color);
    color: var(--white);
    margin-right: 10px;
}

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

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

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

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

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    align-items: center;
    transition: var(--transition);
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    width: 100%;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    width: 100%;
    min-height: calc(100vh - 80px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 30%, #2d1b1b 60%, #1a1a1a 100%);
    color: var(--white);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(255,0,0,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 0, 0, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(175, 4, 4, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 0, 0, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    color: var(--white);
    line-height: 1.1;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                 0 0 60px rgba(255, 255, 255, 0.2),
                 0 0 90px rgba(255, 255, 255, 0.1);
    animation: heroTitleGlow 1.5s ease-in-out infinite alternate;
    position: relative;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    border-radius: 20px;
    z-index: -1;
    animation: heroTitleBorder 2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    opacity: 0.95;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: heroSubtitleSlide 0.8s ease-out 0.3s both;
    position: relative;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    animation: heroSubtitleLine 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    font-weight: 400;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    animation: heroDescriptionSlide 1.5s ease-out 1s both;
    position: relative;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    justify-content: center;
    align-items: center;
    animation: heroButtonsSlide 1.5s ease-out 1.5s both;
}

.hero-buttons .btn {
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

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

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border-color: var(--secondary-color);
}

.hero-buttons .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
    border-color: var(--accent-color);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.hero-image img {
    display: none;
}

/* Hero Section Floating Elements */
.hero-section .floating-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.hero-section .floating-particle:nth-child(1) {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.hero-section .floating-particle:nth-child(2) {
    width: 15px;
    height: 15px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-section .floating-particle:nth-child(3) {
    width: 25px;
    height: 25px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.hero-section .floating-particle:nth-child(4) {
    width: 18px;
    height: 18px;
    top: 40%;
    right: 25%;
    animation-delay: 1s;
    animation-duration: 9s;
}

/* Hero Section Glowing Orbs */
.hero-section .glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.2), transparent);
    filter: blur(1px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.hero-section .glow-orb:nth-child(1) {
    width: 150px;
    height: 150px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-section .glow-orb:nth-child(2) {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

/* Hero Section Animated Lines */
.hero-section .animated-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.3), transparent);
    animation: lineFlow 8s linear infinite;
    z-index: 1;
}

.hero-section .animated-line:nth-child(1) {
    width: 200px;
    top: 25%;
    left: -200px;
    animation-delay: 0s;
}

.hero-section .animated-line:nth-child(2) {
    width: 150px;
    bottom: 35%;
    right: -150px;
    animation-delay: 4s;
}

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

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 1.5rem;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.feature-icon img {
    width: 64px;
    height: 64px;
}

/* CSS Icons */
.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.icon-security::before {
    content: "🔒";
    font-style: normal;
    font-size: 2.5rem;
}

.icon-games::before {
    content: "🎮";
    font-style: normal;
    font-size: 2.5rem;
}

.icon-support::before {
    content: "⏰";
    font-style: normal;
    font-size: 2.5rem;
}

/* Alternative icon options using CSS shapes */
.icon-security-alt::before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--white);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 6c1.4 0 2.8 1.1 2.8 2.5V11c.6 0 1.2.6 1.2 1.3v3.5c0 .6-.6 1.2-1.3 1.2H9.2c-.6 0-1.2-.6-1.2-1.2v-3.5c0-.6.6-1.2 1.2-1.2V9.5C9.2 8.1 10.6 7 12 7z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.icon-games-alt::before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--white);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M21 6H3c-1.1 0-2 .9-2 2v8c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm-10 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

.icon-support-alt::before {
    content: "";
    width: 32px;
    height: 32px;
    background: var(--white);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E") no-repeat center;
    mask-size: contain;
}

/* Login Section */
.login-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #6d0505 0%, #eb2525 100%);
    position: relative;
    overflow: hidden;
}

.login-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="20" cy="20" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="80" cy="80" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.login-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

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

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

.login-content {
    order: 1;
    padding-right: 2rem;
}

.login-content .section-title {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out;
}

.login-content .section-description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInLeft 1s ease-out 0.2s both;
}

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

.login-image {
    order: 2;
    text-align: center;
    padding-left: 2rem;
}

.login-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInRight 1s ease-out 0.4s both;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.login-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

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

/* Additional cool effects */
.login-section .container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
    z-index: -1;
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Info Section */
.contact-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.contact-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-dots" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-dots)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact-info-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.contact-info-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Contact Methods Grid */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-method {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

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

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

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

.contact-method:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.contact-method h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-method p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.contact-method:hover .method-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.6);
}

.method-icon i {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
}

.icon-email::before {
    content: '📧';
}

.icon-live-chat::before {
    content: '💬';
}

.icon-phone::before {
    content: '📞';
}

/* ===== GAMES PAGE ICONS ===== */

/* Category Icons */
.category-icon {
    font-size: 3rem;
    color: var(--white);
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.icon-slots::before {
    content: '🎰';
}

.icon-table::before {
    content: '🎲';
}

.icon-live::before {
    content: '📺';
}

.icon-card::before {
    content: '🃏';
}

.icon-specialty::before {
    content: '🎯';
}

.icon-jackpot::before {
    content: '💰';
}

/* Game Icons */
.game-icon {
    font-size: 4rem;
    color: var(--white);
    font-weight: bold;
    display: block;
    text-align: center;
    margin: 2rem 0;
}

.icon-mega-fortune::before {
    content: '🎰';
}

.icon-blackjack::before {
    content: '🃏';
}

.icon-roulette::before {
    content: '🎲';
}

/* Provider Icons */
.provider-icon {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 1rem;
}

.icon-netent::before {
    content: '🎮';
}

.icon-microgaming::before {
    content: '🎲';
}

.icon-evolution::before {
    content: '📺';
}

.icon-pragmatic::before {
    content: '🎯';
}

.icon-playngo::before {
    content: '📱';
}

.icon-quickspin::before {
    content: '⚡';
}

/* Feature Icons */
.icon-mobile::before {
    content: '📱';
}

.icon-instant::before {
    content: '⚡';
}

.icon-free-play::before {
    content: '🎁';
}

.icon-secure::before {
    content: '🔒';
}

.icon-fair-play::before {
    content: '⚖️';
}

.icon-support::before {
    content: '💬';
}

/* ===== BACK TO TOP BUTTON ===== */

.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.back-to-top-btn:active {
    transform: translateY(-2px) scale(1.05);
}

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

.back-to-top-icon {
    font-style: normal;
    line-height: 1;
}

/* Back to top button animation */
@keyframes backToTopFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ===== 404 ERROR PAGE STYLES ===== */

/* 404 Error Section */
.error-404-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.error-404-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="404-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23404-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.error-404-section .container {
    position: relative;
    z-index: 2;
}

.error-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.error-image {
    text-align: center;
    animation: slideInLeft 1s ease-out;
}

.error-image img {
    max-width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.error-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.error-text {
    animation: slideInRight 1s ease-out 0.3s both;
}

.error-title {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.6s both;
}

.error-subtitle {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.8s both;
}

.error-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    animation: slideInUp 1s ease-out 1s both;
}

.error-help {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 1.2s both;
}

.error-help h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.error-help p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-links li {
    margin-bottom: 0.8rem;
    animation: slideInLeft 0.8s ease-out both;
}

.help-links li:nth-child(1) { animation-delay: 1.4s; }
.help-links li:nth-child(2) { animation-delay: 1.5s; }
.help-links li:nth-child(3) { animation-delay: 1.6s; }
.help-links li:nth-child(4) { animation-delay: 1.7s; }

.help-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.help-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* 404 Page CTA Button */
.error-cta {
    margin-top: 2rem;
    text-align: center;
    animation: slideInUp 1s ease-out 1.8s both;
}

.error-cta .btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.error-cta .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.error-cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.error-cta .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.error-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
}

/* 404 Page Floating Elements */
.error-404-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

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

.contact-details {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.contact-details strong {
    color: var(--primary-color);
    font-weight: 600;
}

.response-time {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.contact-method .btn {
    margin-top: 1.5rem;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.contact-method .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Contact Form Section */
.contact-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="form-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23form-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.contact-form-section .container {
    position: relative;
    z-index: 2;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info {
    animation: slideInLeft 1s ease-out;
}

.form-info .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-info p {
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

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

.feature {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature p {
    color: var(--text-color);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Contact Form Styling */
.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInRight 1s ease-out 0.3s both;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
    background: rgba(255, 255, 255, 1);
}

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

.help-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-color);
    opacity: 0.7;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
}

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

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.form-submit {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-submit .btn {
    flex: 1;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.form-submit .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* FAQ Preview Section */
.faq-preview-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.faq-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.8" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.faq-preview-section .container {
    position: relative;
    z-index: 2;
}

.faq-preview-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.faq-preview-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    animation: slideInUp 0.8s ease-out both;
}

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

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.faq-cta {
    text-align: center;
    animation: slideInUp 1s ease-out 0.7s both;
}

.faq-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    transition: all 0.3s ease;
}

.faq-cta .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Support Team Section */
.support-team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.support-team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="team-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.support-team-section .container {
    position: relative;
    z-index: 2;
}

.support-team-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out;
}

.support-team-section .section-description {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.team-member:nth-child(1) { animation-delay: 0.3s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }

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

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.3);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member:hover img {
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

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

/* FAQ Search Section */
.faq-search-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.faq-search-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-search-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-search-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.faq-search-section .container {
    position: relative;
    z-index: 2;
}

.faq-search-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.faq-search-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 0.5rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.4s both;
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    color: var(--text-color);
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-color);
    opacity: 0.6;
}

.search-btn {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.search-btn .icon-search {
    font-size: 1.2rem;
    color: var(--white);
    font-weight: bold;
}

.search-btn .icon-search::before {
    content: '🔍';
}

/* FAQ Categories Section */
.faq-categories-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.faq-categories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="categories-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23categories-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.faq-categories-section .container {
    position: relative;
    z-index: 2;
}

.faq-categories-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out;
}

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

.category-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.category-card:nth-child(1) { animation-delay: 0.3s; }
.category-card:nth-child(2) { animation-delay: 0.4s; }
.category-card:nth-child(3) { animation-delay: 0.5s; }
.category-card:nth-child(4) { animation-delay: 0.6s; }
.category-card:nth-child(5) { animation-delay: 0.7s; }
.category-card:nth-child(6) { animation-delay: 0.8s; }

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

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

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 0, 0, 0.4);
}

.category-icon i {
    font-size: 2rem;
    color: var(--white);
    font-weight: bold;
}

.icon-account::before {
    content: '👤';
}

.icon-gaming::before {
    content: '🎮';
}

.icon-payments::before {
    content: '💳';
}

.icon-technical::before {
    content: '🔧';
}

.icon-security::before {
    content: '🔒';
}

.icon-general::before {
    content: 'ℹ️';
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.category-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.question-count {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* FAQ Content Section */
.faq-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.faq-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-content-pattern" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="0.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-content-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.faq-content-section .container {
    position: relative;
    z-index: 2;
}

.faq-category {
    margin-bottom: 4rem;
    animation: slideInUp 1s ease-out both;
}

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

.category-title {
    color: var(--white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.category-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.faq-question h3 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    flex: 1;
    text-align: left;
}

.faq-toggle {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question:hover .faq-toggle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.faq-answer {
    padding: 0 2rem 2rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

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

.faq-answer p {
    margin-bottom: 1rem;
}

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

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== STILL HAVE QUESTIONS SECTION ===== */
.still-have-questions-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.still-have-questions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="questions-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.2" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23questions-pattern)"/></svg>');
    opacity: 0.6;
    z-index: 1;
}

.still-have-questions-section .container {
    position: relative;
    z-index: 2;
}

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

.still-have-questions-section .section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out;
}

.still-have-questions-section .section-description {
    color: var(--text-color);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.contact-option {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.contact-option:nth-child(1) { animation-delay: 0.3s; }
.contact-option:nth-child(2) { animation-delay: 0.4s; }
.contact-option:nth-child(3) { animation-delay: 0.5s; }

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

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

.contact-option:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.contact-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-option p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.9;
}

.contact-option .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.contact-option .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-option .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.contact-option .btn-primary:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.contact-option .btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.contact-option .btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.phone-number {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
    margin-top: 0.5rem;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

/* ===== PRIVACY POLICY PAGE STYLES ===== */

/* Privacy Content Section */
.privacy-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.privacy-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="privacy-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23privacy-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.privacy-content-section .container {
    position: relative;
    z-index: 2;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.3s both;
}

.last-updated {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.4s both;
}

.last-updated p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.last-updated strong {
    font-weight: 700;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out both;
}

.policy-section:nth-child(2) { animation-delay: 0.5s; }
.policy-section:nth-child(3) { animation-delay: 0.6s; }
.policy-section:nth-child(4) { animation-delay: 0.7s; }
.policy-section:nth-child(5) { animation-delay: 0.8s; }
.policy-section:nth-child(6) { animation-delay: 0.9s; }
.policy-section:nth-child(7) { animation-delay: 1.0s; }
.policy-section:nth-child(8) { animation-delay: 1.1s; }
.policy-section:nth-child(9) { animation-delay: 1.2s; }
.policy-section:nth-child(10) { animation-delay: 1.3s; }
.policy-section:nth-child(11) { animation-delay: 1.4s; }
.policy-section:nth-child(12) { animation-delay: 1.5s; }

.policy-section:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-left-color: var(--accent-color);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.policy-section li::before {
    content: '🔹';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.contact-info {
    background: rgba(102, 126, 234, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
}

.contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-color);
}

.contact-info strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===== TERMS & CONDITIONS PAGE STYLES ===== */

/* Terms Content Section */
.terms-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.terms-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="terms-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23terms-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.terms-content-section .container {
    position: relative;
    z-index: 2;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.3s both;
}

.last-updated {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.4s both;
}

.last-updated p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.last-updated strong {
    font-weight: 700;
}

.terms-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out both;
}

.terms-section:nth-child(2) { animation-delay: 0.5s; }
.terms-section:nth-child(3) { animation-delay: 0.6s; }
.terms-section:nth-child(4) { animation-delay: 0.7s; }
.terms-section:nth-child(5) { animation-delay: 0.8s; }
.terms-section:nth-child(6) { animation-delay: 0.9s; }
.terms-section:nth-child(7) { animation-delay: 1.0s; }
.terms-section:nth-child(8) { animation-delay: 1.1s; }
.terms-section:nth-child(9) { animation-delay: 1.2s; }
.terms-section:nth-child(10) { animation-delay: 1.3s; }
.terms-section:nth-child(11) { animation-delay: 1.4s; }
.terms-section:nth-child(12) { animation-delay: 1.5s; }
.terms-section:nth-child(13) { animation-delay: 1.6s; }

.terms-section:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.terms-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.terms-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.terms-section li::before {
    content: '⚖️';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.terms-content-section .contact-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--white);
}

.terms-content-section .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--white);
}

.terms-content-section .contact-info strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== DISCLAIMER PAGE STYLES ===== */

/* Disclaimer Content Section */
.disclaimer-content-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.disclaimer-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="disclaimer-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23disclaimer-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.disclaimer-content-section .container {
    position: relative;
    z-index: 2;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideInUp 1s ease-out 0.3s both;
}

.last-updated {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    animation: slideInDown 1s ease-out 0.4s both;
}

.last-updated p {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
}

.last-updated strong {
    font-weight: 700;
}

.disclaimer-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
    animation: slideInUp 0.8s ease-out both;
}

.disclaimer-section:nth-child(2) { animation-delay: 0.5s; }
.disclaimer-section:nth-child(3) { animation-delay: 0.6s; }
.disclaimer-section:nth-child(4) { animation-delay: 0.7s; }
.disclaimer-section:nth-child(5) { animation-delay: 0.8s; }
.disclaimer-section:nth-child(6) { animation-delay: 0.9s; }
.disclaimer-section:nth-child(7) { animation-delay: 1.0s; }
.disclaimer-section:nth-child(8) { animation-delay: 1.1s; }
.disclaimer-section:nth-child(9) { animation-delay: 1.2s; }
.disclaimer-section:nth-child(10) { animation-delay: 1.3s; }
.disclaimer-section:nth-child(11) { animation-delay: 1.4s; }
.disclaimer-section:nth-child(12) { animation-delay: 1.5s; }
.disclaimer-section:nth-child(13) { animation-delay: 1.6s; }

.disclaimer-section:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--accent-color);
}

.disclaimer-section h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
    padding-bottom: 0.5rem;
}

.disclaimer-section h3 {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.disclaimer-section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-align: justify;
}

.disclaimer-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.disclaimer-section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
    position: relative;
}

.disclaimer-section li::before {
    content: '⚠️';
    position: absolute;
    left: -1.5rem;
    color: var(--secondary-color);
    font-size: 0.8rem;
}

.disclaimer-content-section .contact-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--white);
}

.disclaimer-content-section .contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--white);
}

.disclaimer-content-section .contact-info strong {
    color: var(--white);
    font-weight: 600;
}

/* ===== ABOUT US PAGE STYLES ===== */

/* About Story Section */
.about-story-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.about-story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="story-pattern" width="45" height="45" patternUnits="userSpaceOnUse"><circle cx="22.5" cy="22.5" r="1.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23story-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.about-story-section .container {
    position: relative;
    z-index: 2;
}

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

.story-text {
    animation: slideInLeft 1s ease-out;
}

.story-text .section-title {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.story-image {
    animation: slideInRight 1s ease-out 0.3s both;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.story-image img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 0, 0, 0.3);
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.mission-vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mission-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23mission-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.mission-vision-section .container {
    position: relative;
    z-index: 2;
}

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

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
}

.mission-card { animation-delay: 0.3s; }
.vision-card { animation-delay: 0.4s; }

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 0, 0, 0.4);
}

.card-icon i {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: bold;
}

.icon-mission::before {
    content: '🎯';
}

.icon-vision::before {
    content: '🔮';
}

.mission-card h3,
.vision-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="values-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.values-section .container {
    position: relative;
    z-index: 2;
}

.values-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out;
}

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

.value-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

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

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

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

.value-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.value-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="team-about-pattern" width="35" height="35" patternUnits="userSpaceOnUse"><circle cx="17.5" cy="17.5" r="1.2" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23team-about-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.team-section .container {
    position: relative;
    z-index: 2;
}

.team-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.team-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

.team-member:nth-child(1) { animation-delay: 0.3s; }
.team-member:nth-child(2) { animation-delay: 0.4s; }
.team-member:nth-child(3) { animation-delay: 0.5s; }

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

.team-member:hover::before {
    left: 100%;
}

.team-member:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member:hover img {
    border-color: rgba(255, 0, 0, 0.5);
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.team-member .position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-member p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

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

.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="achievements-pattern" width="55" height="55" patternUnits="userSpaceOnUse"><circle cx="27.5" cy="27.5" r="2.5" fill="rgba(0,0,0,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23achievements-pattern)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.achievements-section .container {
    position: relative;
    z-index: 2;
}

.achievements-section .section-title {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 1s ease-out;
}

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

.achievement-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideInUp 0.8s ease-out both;
    position: relative;
    overflow: hidden;
}

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

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

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

.achievement-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.3);
}

.achievement-number {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.achievement-label {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

/* Future Plans Section */
.future-plans-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

.future-plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="future-pattern" width="42" height="42" patternUnits="userSpaceOnUse"><circle cx="21" cy="21" r="1.8" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100" height="100" fill="url(%23future-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.future-plans-section .container {
    position: relative;
    z-index: 2;
}

.future-plans-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: slideInDown 1s ease-out;
}

.future-plans-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 4rem;
    font-size: 1.2rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: slideInDown 1s ease-out 0.2s both;
}

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

.plans-text {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.plans-text h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.plans-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: justify;
}

.plans-image {
    animation: slideInRight 1s ease-out 0.5s both;
}

.plans-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
}

.plans-image img:hover {
    transform: scale(1.02) rotate(-1deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Glowing orbs */
.login-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.login-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
    z-index: 1;
}

.login-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation: slideInUp 0.8s ease-out both;
}

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

.step:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 1);
}

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

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.step:hover .step-number::before {
    left: 100%;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
}

.step h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

.login-cta {
    text-align: center;
    margin-top: 2rem;
}

.login-cta .btn {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    min-width: 180px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border: none;
    border-radius: 50px;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: slideInUp 1s ease-out 0.6s both;
}

.login-cta .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.login-cta .btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
}

/* Register Section */
.register-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.register-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.register-section .container {
    position: relative;
    z-index: 2;
}

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

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

.register-cta {
    text-align: center;
    margin-top: 3rem;
}

.register-image {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-top: 3rem;
}

.register-image img {
    max-width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.register-image img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--white);
}

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

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

/* Games Section */
.games-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

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

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

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

.testimonial-card::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-color);
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: serif;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    text-align: right;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Games Slider Section */
.games-slider-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.games-slider-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="8" fill="rgba(255,255,255,0.1)">🎮</text></svg>') repeat;
    opacity: 0.3;
    z-index: 1;
}

.games-slider-section .container {
    position: relative;
    z-index: 2;
}

.slider-header {
    text-align: center;
    margin-bottom: 3rem;
}

.slider-header .section-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.slider-header .emoji {
    font-size: 2.5rem;
}

.language-badge {
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 2rem;
    border-radius: 25px;
    display: inline-block;
    font-weight: 600;
    font-size: 1.1rem;
}

.mobile-games-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

.mobile-slider-container {
    overflow: visible;
    margin: 0;
    perspective: 1000px;
    perspective-origin: center;
}

.mobile-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    will-change: transform;
    position: relative;
    height: 600px;
    align-items: center;
}

.mobile-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0.7) rotateY(-15deg);
    opacity: 0.4;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.6);
    z-index: 1;
    width: 280px;
    text-align: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.mobile-slide[data-slide="0"] {
    transform: translate(-120%, -50%) scale(0.6) rotateY(-25deg);
    z-index: 1;
}

.mobile-slide[data-slide="1"] {
    transform: translate(-60%, -50%) scale(0.65) rotateY(-20deg);
    z-index: 2;
}

.mobile-slide[data-slide="2"] {
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    opacity: 1;
    filter: brightness(1);
    z-index: 5;
}

.mobile-slide[data-slide="3"] {
    transform: translate(-40%, -50%) scale(0.65) rotateY(20deg);
    z-index: 2;
}

.mobile-slide[data-slide="4"] {
    transform: translate(20%, -50%) scale(0.6) rotateY(25deg);
    z-index: 1;
}

.mobile-slide.active {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotateY(0deg);
    filter: brightness(1);
    z-index: 5;
}

.mobile-slide.active {
    opacity: 1;
    transform: scale(1);
}

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

.mobile-screen img {
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}



.mobile-screen {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
}

.game-prize {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.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 4px 15px rgba(0, 0, 0, 0.2);
}

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

.game-thumbnails {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.thumbnail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.thumbnail-item.active {
    opacity: 1;
    transform: translateY(-5px);
}

.thumbnail-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.thumbnail-item.active .thumbnail-icon {
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
    transform: scale(1.1);
}

.thumbnail-name {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--white);
    text-align: center;
}

.slider-slogan {
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.slider-slogan p {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--light-gray);
    text-align: center;
}

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

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-section p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--accent-color);
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
a:focus,
input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Enhanced focus styles for better visibility */
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible,
input:focus-visible,
button:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.3);
}

/* Improved focus for interactive elements */
.nav-toggle:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Better focus for form elements */
input:focus,
textarea:focus,
select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

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

/* High contrast mode support */
@media (prefers-contrast: high) {
    .footer-section h3,
    .footer-section ul li a,
    .footer-section p,
    .footer-bottom,
    .stat-label,
    .slider-slogan p {
        color: var(--white) !important;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8) !important;
        font-weight: 700 !important;
    }
}

/* Ensure minimum contrast ratio compliance */
.footer-section h3,
.footer-section ul li a,
.footer-section p,
.footer-bottom,
.stat-label,
.slider-slogan p {
    /* Ensure these elements meet WCAG AA contrast requirements */
    filter: contrast(1.1);
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1001;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.skip-link:focus {
    top: 6px;
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

/* ===== HERO SECTION ANIMATIONS ===== */

@keyframes heroTitleGlow {
    0% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
                     0 0 60px rgba(255, 255, 255, 0.2),
                     0 0 90px rgba(255, 255, 255, 0.1);
    }
    100% {
        text-shadow: 0 0 40px rgba(255, 255, 255, 0.4),
                     0 0 80px rgba(255, 255, 255, 0.3),
                     0 0 120px rgba(255, 255, 255, 0.2);
    }
}

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

@keyframes heroSubtitleSlide {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitleLine {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 100px;
        opacity: 1;
    }
}

@keyframes heroDescriptionSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonsSlide {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes lineFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateX(0);
    }
    90% {
        opacity: 1;
        transform: translateX(300px);
    }
    100% {
        transform: translateX(400px);
        opacity: 0;
    }
} 