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

:root {
    --deep-red: #fc0303f1;
    --gold: #FFD700;
    --black: #000000;
    --beige: #F5F5DC;
    --white: #FFFFFF;
    --gray: #666666;
    --light-gray: #F8F8F8;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--beige);
    overflow-x: hidden;
    /* Prevent layout shift */
    font-display: swap;
}

/* Prevent layout shifts globally */
* {
    box-sizing: border-box;
}

/* Reserve space for images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent text reflow */
h1, h2, h3, h4, h5, h6, p {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.2;
}

/* Optimize icon display */
.feature-item span:first-child {
    display: inline-block;
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
}

.login-icon {
    display: inline-block;
    font-size: 3rem;
    color: var(--gold);
    margin-right: 1rem;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    font-weight: bold;
    /* Prevent layout shift */
    font-display: swap;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
}

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

/* Header and Navigation */
.header {
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0;
}

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

.nav-logo img {
    height: 50px;
    width: 150px;
    /* Prevent layout shift */
    object-fit: contain;
}

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

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

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

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    color: var(--black);
}

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

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    font-weight: 600;
}

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

.btn-login {
    background: var(--deep-red);
    color: var(--white);
}

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

.btn-register {
    background: var(--gold);
    color: var(--black);
}

.btn-register:hover {
    background: var(--deep-red);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--deep-red);
    border: 2px solid var(--deep-red);
}

.btn-outline:hover {
    background: var(--deep-red);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content */
main {
    margin-top: 80px;
    /* Optimize rendering */
    content-visibility: auto;
    contain-intrinsic-size: 1000px;
}

/* Hero Section */
.hero-section {
    position: relative;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
    overflow: hidden;
    /* Prevent layout shift */
    min-height: 80vh;
    display: flex;
    align-items: center;
    /* LCP optimization */
    will-change: auto;
    contain: layout style paint;
    /* Force immediate rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    /* LCP optimization */
    loading: lazy;
    decoding: async;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.hero-fallback-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    z-index: -2;
}

/* Video performance optimizations */
.hero-video-bg {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Mobile video optimization */
@media (max-width: 768px) {
    .hero-video-bg {
        object-position: center;
    }
    
    /* Reduce video quality on mobile for better performance */
    .hero-section {
        min-height: 60vh;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .hero-video-bg {
        display: none;
    }
    
    .hero-section {
        background: linear-gradient(135deg, var(--deep-red), var(--black));
    }
}

.hero-section h1 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    /* Prevent layout shift */
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    min-height: 4.2rem;
    display: block;
    /* LCP optimization */
    font-display: swap;
    font-family: Arial, sans-serif;
    /* Force immediate rendering */
    transform: translateZ(0);
    will-change: auto;
    contain: layout style;
    backface-visibility: hidden;
}

.hero-section p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    /* Prevent layout shift */
    line-height: 1.6;
    min-height: 3.6rem;
    display: block;
    /* LCP optimization */
    font-display: swap;
    font-family: Arial, sans-serif;
    font-weight: 400;
    /* Optimize rendering */
    contain: layout style;
    will-change: auto;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 60vh;
    max-width: 800px;
    margin: 0 auto;
    /* Prevent layout shift */
    width: 100%;
    position: relative;
    z-index: 2;
    /* LCP optimization */
    contain: layout style paint;
    will-change: auto;
    /* Ensure immediate rendering */
    transform: translateZ(0);
    backface-visibility: hidden;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    /* Prevent layout shift */
    min-height: 3rem;
    align-items: center;
    justify-content: center;
}
}

/* About Hero Section - Normal Background Style */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero::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="about-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.05)"/><circle cx="40" cy="40" r="1" fill="rgba(255,215,0,0.05)"/><circle cx="25" cy="5" r="0.5" fill="rgba(255,215,0,0.03)"/><circle cx="5" cy="25" r="0.5" fill="rgba(255,215,0,0.03)"/><circle cx="45" cy="25" r="0.5" fill="rgba(255,215,0,0.03)"/><circle cx="25" cy="45" r="0.5" fill="rgba(255,215,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23about-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.3), rgba(255, 215, 0, 0.1), rgba(139, 0, 0, 0.3));
    background-size: 200% 200%;
    animation: about-shimmer 8s ease-in-out infinite;
    z-index: 2;
}

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

.about-hero .container {
    position: relative;
    z-index: 3;
}

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

.about-hero .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gold), #FFA500, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.about-hero .hero-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--beige);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

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

.about-hero .hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-hero .hero-buttons .btn-primary {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    border: none;
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.about-hero .hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, #FFA500, var(--gold));
}

.about-hero .hero-buttons .btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.about-hero .hero-buttons .btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

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

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
    display: block;
}

.feature-card .icon::before {
    font-family: "Font Awesome 5 Free", "Font Awesome 5 Brands", Arial, sans-serif;
    font-weight: 900;
}

.feature-card .icon.secure::before {
    content: "\f023"; /* Lock icon */
}

.feature-card .icon.bonus::before {
    content: "\f3d1"; /* Gift icon */
}

.feature-card .icon.games::before {
    content: "\f54e"; /* Dice icon */
}

.feature-card .icon.support::before {
    content: "\f075"; /* Comment icon */
}

.feature-card .icon.email::before {
    content: "\f0e0"; /* Envelope icon */
}

.feature-card .icon.tech::before {
    content: "\f7d9"; /* Tools icon */
}

.feature-card .icon.chat::before {
    content: "\f086"; /* Comments icon */
}

.feature-card .icon.faq::before {
    content: "\f059"; /* Question circle icon */
}

.feature-card .icon.security::before {
    content: "\f023"; /* Lock icon */
}

.feature-card .icon.fair-play::before {
    content: "\f0c0"; /* Users icon */
}

.feature-card .icon.customer-service::before {
    content: "\f075"; /* Comment icon */
}

.feature-card .icon.slot-machines::before {
    content: "\f54e"; /* Dice icon */
}

.feature-card .icon.table-games::before {
    content: "\f0c0"; /* Users icon */
}

.feature-card .icon.live-gaming::before {
    content: "\f03d"; /* Video icon */
}

.feature-card .icon.live-chat-support::before {
    content: "\f086"; /* Comments icon */
}

.feature-card .icon.email-support::before {
    content: "\f0e0"; /* Envelope icon */
}

.feature-card .icon.faq-support::before {
    content: "\f059"; /* Question circle icon */
}

.feature-card h3 {
    color: var(--deep-red);
    margin-bottom: 1rem;
}

/* Login Section */
.login-section {
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    color: var(--white);
    padding: 4rem 0;
    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="25" cy="25" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.login-info {
    padding-right: 2rem;
}

.login-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.login-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-right: 1rem;
}

.login-header h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin: 0;
}

.login-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--beige);
}

.login-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.feature-item i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.login-form-container {
    display: flex;
    justify-content: center;
}

.login-form-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.login-form-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-form-card > p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--beige);
    font-size: 0.9rem;
}

.login-steps-visual {
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number {
    background: var(--gold);
    color: var(--black);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--gold);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.step-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--beige);
}

.login-actions {
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
    margin-bottom: 1rem;
}

.btn-large i {
    margin-right: 0.5rem;
}

.login-help {
    margin-top: 1rem;
}

.help-link {
    color: var(--beige);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.help-link:hover {
    color: var(--gold);
}

.help-link i {
    margin-right: 0.5rem;
}

/* Register Section */
.register-section {
    background: linear-gradient(135deg, var(--gold), var(--deep-red));
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.register-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="register-pattern" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="40" cy="40" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="20" cy="20" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="60" cy="60" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="20" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="20" cy="60" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23register-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.register-header-main {
    text-align: center;
    margin-bottom: 4rem;
}

.register-header-main h2 {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.register-header-main p {
    color: var(--beige);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.register-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.register-benefits-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold);
    transform: translateX(10px);
}

.benefit-icon-main {
    width: 50px;
    height: 50px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon-main i {
    font-size: 1.2rem;
    color: var(--black);
}

.benefit-text h3 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.benefit-text p {
    color: var(--white);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.register-form-side {
    display: flex;
    justify-content: center;
}

.register-form-main {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.form-header h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--beige);
    font-size: 1rem;
    margin: 0;
}

.registration-steps {
    margin-bottom: 2rem;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.step-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.step-number-main {
    background: var(--gold);
    color: var(--black);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-details h4 {
    color: var(--gold);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.step-details p {
    color: var(--beige);
    margin: 0;
    font-size: 0.85rem;
}

.register-cta {
    text-align: center;
}

.btn-register-main {
    background: linear-gradient(135deg, var(--gold), #FFA500);
    color: var(--black);
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-register-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #FFA500, var(--gold));
}

.register-note {
    color: var(--beige);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.register-form-container {
    display: flex;
    justify-content: center;
    order: 2;
}

.register-form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.register-form-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.register-form-card > p {
    text-align: center;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.register-steps-visual {
    margin-bottom: 2rem;
}

.register-steps-visual .step-item {
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--white);
}

.register-steps-visual .step-content h4 {
    color: var(--white);
}

.register-steps-visual .step-content p {
    color: rgba(255, 255, 255, 0.8);
}

.register-steps-visual .step-number {
    background: var(--white);
    color: var(--deep-red);
}

.register-actions {
    text-align: center;
}

.register-help {
    margin-top: 1rem;
}

.register-info {
    padding-left: 2rem;
    order: 1;
}

.register-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.register-icon {
    font-size: 3rem;
    color: var(--white);
    margin-right: 1rem;
}

.register-header h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin: 0;
}

.register-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.register-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.benefit-icon {
    background: var(--white);
    color: var(--deep-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.2rem;
}

.benefit-content h4 {
    color: var(--white);
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.benefit-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.register-stats {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
}

/* Privacy Policy Specific Styles */
.privacy-policy .about-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
    position: relative;
}

.privacy-policy .about-section::before {
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M40 20c11.046 0 20 8.954 20 20s-8.954 20-20 20-20-8.954-20-20 8.954-20 20-20zm0 2c-9.941 0-18 8.059-18 18s8.059 18 18 18 18-8.059 18-18-8.059-18-18-18z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.privacy-policy .about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.05) 50%, transparent 70%);
    animation: privacy-shimmer 8s ease-in-out infinite;
    z-index: 2;
}

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

.about-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    background-image: url('public/images/casino-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    z-index: 1;
}

/* Enhanced fallback with pattern */
.about-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="40" cy="40" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="25" cy="10" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="40" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    z-index: -1;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.8), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 3;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Privacy Policy Specific Content Styles */
.privacy-policy .about-content {
    background: linear-gradient(145deg, rgba(26, 26, 46, 0.9), rgba(22, 33, 62, 0.8));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 25px;
    padding: 4rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.privacy-policy .about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #FFA500, var(--gold));
    background-size: 200% 100%;
    animation: privacy-border-shimmer 4s ease-in-out infinite;
}

.privacy-policy .about-content::after {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFD700' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    opacity: 0.3;
    animation: privacy-shield-pulse 3s ease-in-out infinite;
}

@keyframes privacy-border-shimmer {
    0%, 100% { background-position: 200% 0; }
    50% { background-position: -200% 0; }
}

@keyframes privacy-shield-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
}

.about-content h2 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(45deg, var(--gold), #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.about-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, var(--gold), #FFA500);
    border-radius: 2px;
}

/* Privacy Policy Specific Heading Styles */
.privacy-policy .about-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--gold), #FFA500, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.privacy-policy .about-content h2::after {
    width: 120px;
    height: 4px;
    background: linear-gradient(45deg, var(--gold), #FFA500, #FFD700);
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.privacy-policy .about-content h2::before {
    content: '🔒';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    animation: privacy-lock-bounce 2s ease-in-out infinite;
}

@keyframes privacy-lock-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.about-content p {
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Privacy Policy Specific Paragraph Styles */
.privacy-policy .about-content p {
    font-size: 1.3rem;
    line-height: 1.9;
    font-weight: 400;
    color: #E8F4FD;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    margin-bottom: 2.5rem;
    position: relative;
}

.privacy-policy .about-content p::before {
    content: '📋';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* About Content List Styles - Applied to all pages */
.about-content ul,
.about-content ol {
    margin-left: 0;
    color: #F5F5F5;
    list-style: none;
    padding: 0;
}

.about-content li {
    margin-bottom: 0.8rem;
    color: #F5F5F5;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
    list-style: none;
}

.about-content li::before {
    content: '•';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.about-content li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--gold);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.about-content .btn-outline {
    background: linear-gradient(45deg, var(--gold), #FFA500);
    border: none;
    color: var(--black);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 2rem;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.about-content .btn-outline:hover {
    background: linear-gradient(45deg, #FFA500, var(--gold));
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.about-content .btn-outline:hover::before {
    left: 100%;
}

/* About Story Grid */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.story-content p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.story-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.highlight-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.highlight-item span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.story-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.story-card h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.story-card p {
    color: var(--beige);
    font-size: 1rem;
    margin: 0;
}

/* Values Section */
.values-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.values-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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="70" height="70" patternUnits="userSpaceOnUse"><circle cx="35" cy="35" r="2" fill="rgba(255,215,0,0.1)"/><circle cx="15" cy="15" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="55" cy="55" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="35" cy="15" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="15" cy="55" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23values-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.values-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.values-header p {
    color: var(--beige);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

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

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.value-icon {
    font-size: 1.5rem;
    color: var(--black);
}

.value-content {
    flex: 1;
}

.value-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.value-content p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

.value-feature i {
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.value-feature span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Games Section */
.games-section {
    padding: 4rem 0;
    background: var(--white);
}

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

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

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.game-card h3 {
    padding: 1rem;
    margin: 0;
    color: var(--deep-red);
}

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

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--deep-red), var(--black));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="benefits-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="3" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="50" cy="50" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="30" cy="10" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="50" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23benefits-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.benefits-header h2 {
    color: var(--gold);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.benefits-header p {
    color: var(--beige);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

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

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

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.2);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), #FFA500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    text-align: center;
    line-height: 1;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.benefit-content p {
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.benefit-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 215, 0, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
}

.benefit-feature i {
    color: var(--gold);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.benefit-feature span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}

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

.benefits-cta p {
    color: var(--beige);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.benefits-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefits-cta .btn i {
    margin-right: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

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

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

.testimonial-card cite {
    color: var(--deep-red);
    font-weight: bold;
}

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

.stats-section h2 {
    color: var(--gold);
}

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

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

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

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

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

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

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

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

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

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

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

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, var(--deep-red), var(--black));
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(145deg, var(--gold), #FFA500);
    color: var(--black);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.social-links a:hover::before {
    left: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .about-hero {
        min-height: 60vh;
    }
    
    .about-hero .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-hero .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-buttons {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .games-grid,
    .benefits-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section,
    .features-section,
    .login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-info {
        padding-right: 0;
        text-align: center;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .login-form-card {
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .login-form-card h3 {
        font-size: 1.3rem;
    }
    
    .login-form-card > p {
        font-size: 0.9rem;
    }
    
    .step-item {
        padding: 0.8rem;
    }
    
    .step-content h4 {
        font-size: 1rem;
    }
    
    .step-content p {
        font-size: 0.8rem;
    }
    
    .btn-large {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    /* Additional Mobile Optimizations for Login Section */
    .login-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .login-icon {
        font-size: 2.5rem;
        margin-right: 0;
    }
    
    .feature-item {
        padding: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-item i {
        font-size: 1rem;
        margin-right: 0.5rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
    
    .login-help {
        margin-top: 1rem;
    }
    
    .help-link {
        font-size: 0.9rem;
    }
    
    .register-header-main h2 {
        font-size: 2.5rem;
    }
    
    .register-cards-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .register-benefits-side {
        order: 2;
    }
    
    .register-form-side {
        order: 1;
    }
    
    .benefit-highlight {
        padding: 1rem;
    }
    
    .register-form-main {
        padding: 2rem;
        max-width: 100%;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .btn-register-main {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .about-bg-image {
        filter: blur(4px);
    }
    
    .about-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .about-content h2 {
        font-size: 2.5rem;
    }
    
    .about-content p {
        font-size: 1.1rem;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-highlights {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-card {
        max-width: 100%;
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-icon-wrapper {
        margin: 0 auto;
    }
    
    .benefits-header h2 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-icon-wrapper {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .benefit-icon {
        font-size: 1.2rem;
    }
    
    .benefit-content {
        text-align: center;
    }
    
    .login-section,
    .register-section,
    .about-section,
    .games-section,
    .benefits-section,
    .testimonials-section,
    .stats-section,
    .cta-section {
        padding: 2rem 0;
    }
    
    /* Login Section Mobile Styles */
    .login-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .login-info {
        padding-right: 0;
        text-align: center;
    }
    
    .login-header h2 {
        font-size: 2rem;
    }
    
    .login-description {
        font-size: 1rem;
    }
    
    .login-features {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .login-form-card {
        max-width: 100%;
        padding: 2rem;
    }
    
    .login-form-card h3 {
        font-size: 1.5rem;
    }
    
    .login-steps-visual {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-number {
        margin-bottom: 0.5rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

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

/* Focus styles for accessibility */
a:focus,
button:focus,
.btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --deep-red: #000000;
        --gold: #FFFFFF;
        --beige: #FFFFFF;
    }
}

/* Contact Form Styles */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--deep-red);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--light-gray);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

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

/* FAQ Styles */
.faq-section {
    margin-bottom: 3rem;
}

.faq-section h3 {
    color: var(--deep-red);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--deep-red);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item ul,
.faq-item ol {
    margin-left: 1.5rem;
}

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

/* Support Styles */
.support-section {
    margin-bottom: 3rem;
}

.support-section h3 {
    color: var(--deep-red);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.support-item {
    margin-bottom: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 20px;
    border: 2px solid #333;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), #FFA500, var(--gold));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.support-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent var(--gold) transparent transparent;
    opacity: 0.3;
}

.support-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: var(--gold);
}

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

.support-item h4 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-left: 2.5rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 1rem;
}

.support-item h4::before {
    content: '⚡';
    position: absolute;
    left: 0;
    top: -2px;
    color: var(--gold);
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

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

.support-item p {
    color: #F5F5F5;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.support-item ul,
.support-item ol {
    margin-left: 0;
    color: #F5F5F5;
    list-style: none;
    padding: 0;
}

.support-item li {
    margin-bottom: 0.8rem;
    color: #F5F5F5;
    font-size: 1rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border-left: 3px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
    list-style: none;
}

.support-item li::before {
    content: '•';
    position: absolute;
    left: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.support-item li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--gold);
    transform: translateX(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Game Info Styles */
.game-info {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.game-info span {
    background: var(--deep-red);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-red);
        padding: 1rem;
        box-shadow: var(--shadow);
    }
    
    .nav-buttons.active {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Benefit Item Styles */
.benefit-item {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.game-icon,
.support-icon,
.contact-icon {
    width: 64px;
    height: 64px;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-item:hover .game-icon,
.benefit-item:hover .support-icon,
.benefit-item:hover .contact-icon {
    transform: scale(1.1);
    color: var(--deep-red);
} 