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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    color: #ffd700;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    flex-direction: column;
}

.btn-large .btn-text {
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-large .btn-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

.btn-card {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border: 1px solid #ffd700;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-card:hover {
    background: #ffd700;
    color: #000;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

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

.navbar-brand .logo {
    height: 40px;
    width: auto;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 2px;
}

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

.navbar-item {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-item:hover {
    color: #ffd700;
}

.navbar-item:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.navbar-item:hover:after {
    width: 100%;
}

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

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.92), rgba(139,0,0,0.88));
    z-index: 1;
}

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

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffd700;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
    font-weight: 700;
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    border: 2px solid #ffd700;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.feature-icon {
    font-size: 1.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.hero-image {
    position: relative;
    transform: translateZ(0);
    will-change: transform;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.floating-card {
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
    will-change: transform;
    transform: translateZ(0);
}

.card-1 {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.card-image {
    width: 80px;
    height: auto;
    border-radius: 8px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateZ(0); }
    50% { transform: translateY(-15px) translateZ(0); }
}

.hero-stats {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-top: 0.5rem;
}

/* Content Blocks */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.content-block.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-block.reverse .content-text {
    order: 2;
}

.content-block.reverse .content-image {
    order: 1;
}

.block-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.content-text {
    padding: 2rem 0;
}

.section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.feature-list {
    margin: 2rem 0;
}

.feature-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid #ffd700;
    border-radius: 8px;
}

.feature-highlight .feature-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.feature-highlight strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Sections */
.about, .promotions {
    padding: 6rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.games {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    width: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .card-image img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.8), rgba(139,0,0,0.6));
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.card-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-description {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.5;
}

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

.feature-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Promotions */
.promotion-list {
    margin: 2rem 0;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.promo-item:hover {
    transform: translateX(10px);
}

.promo-icon {
    font-size: 2rem;
}

.promo-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.promo-content p {
    color: #e0e0e0;
    font-size: 0.9rem;
}

/* Advantages */
.advantages {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(139,0,0,0.1));
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon img {
    width: 30px;
    height: 30px;
}

.advantage-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.advantage-description {
    color: #e0e0e0;
    line-height: 1.6;
}

/* How to Join */
.how-to-join {
    padding: 6rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.steps-container {
    display: grid;
    gap: 2rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.4);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.step-link:hover {
    color: #ff6b35;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.testimonial-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.testimonial-content p {
    color: #e0e0e0;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
}

.testimonial-content p:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #ffd700;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #999;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.8), rgba(0,0,0,0.8));
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-description {
    color: #999;
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-title {
    color: #ffd700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-link {
    display: block;
    color: #999;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ffd700;
}

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

.copyright, .disclaimer {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Mobile Enhancements */
.btn, .navbar-toggle, .game-card {
    min-height: 44px; /* Touch target size */
    min-width: 44px;
}

/* Loading performance */
img {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

picture img {
    display: block;
    width: 100%;
    height: auto;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus indicators for accessibility */
:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Prevent zoom on input focus */
@media screen and (max-width: 768px) {
    input, select, textarea {
        font-size: 16px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transform: translateY(-100%);
        transition: transform 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 6rem 0 3rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-image {
        order: 2;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0.8rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-block.reverse .content-text,
    .content-block.reverse .content-image {
        order: unset;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        justify-content: center;
        margin-bottom: 2rem;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .game-card {
        width: 100%;
    }
    
    .card-image {
        height: 200px;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        grid-template-columns: 1fr;
    }
}

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

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 4rem 0 2rem;
        gap: 2rem;
    }
    
    .hero-image {
        max-width: 320px;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0.6rem;
    }
    
    .feature-item {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 350px;
    }
    
    .card-image {
        height: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .advantage-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Page-specific Styles */
.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139,0,0,0.8), rgba(0,0,0,0.8));
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.page-description {
    font-size: 1.1rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.content-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

/* Requirements Section */
.requirements-section {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

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

.requirement-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.requirement-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.req-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.req-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.req-description {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Step by Step Section */
.step-by-step {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.steps-detailed {
    display: grid;
    gap: 3rem;
}

.step-detailed {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border-left: 5px solid #ffd700;
    transition: transform 0.3s ease;
}

.step-detailed:hover {
    transform: translateX(10px);
}

.step-details ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.step-details li {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.step-details li:before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
}

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

.info-item {
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.info-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.verification-tips,
.success-actions {
    background: rgba(255, 215, 0, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin: 1rem 0;
}

.verification-tips h4,
.success-actions h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.step-action {
    margin-top: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.benefits-list {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Security Section */
.security-section {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.security-feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.security-feature:hover {
    transform: translateY(-5px);
}

.security-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-img {
    width: 40px;
    height: 40px;
}

.security-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.security-description {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Game Categories */
.games-categories {
    display: grid;
    gap: 3rem;
}

.category-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.category-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.category-image {
    position: relative;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

.category-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.category-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.category-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.category-details {
    margin: 1.5rem 0;
}

.detail-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.detail-item strong {
    color: #ffd700;
}

/* Hot Promotions */
.hot-promotions {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

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

.promo-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.promo-card.featured {
    border: 2px solid #ffd700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #ff6b35, #ffd700);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
}

.promo-image {
    height: 200px;
    overflow: hidden;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-content {
    padding: 2rem;
}

.promo-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.promo-value {
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.promo-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.promo-details {
    background: rgba(255, 215, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.detail-label {
    color: #999;
}

.detail-value {
    color: #ffd700;
    font-weight: 600;
}

/* VIP Program */
.vip-program {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.vip-tiers {
    margin: 2rem 0;
}

.vip-tier {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.vip-tier:hover {
    transform: translateX(10px);
}

.tier-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tier-icon.bronze {
    background: linear-gradient(45deg, #cd7f32, #daa520);
}

.tier-icon.silver {
    background: linear-gradient(45deg, #c0c0c0, #e5e5e5);
}

.tier-icon.gold {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
}

.tier-icon.diamond {
    background: linear-gradient(45deg, #b9f2ff, #ffffff);
}

.tier-info strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Promotion Categories */
.promotion-categories {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

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

.category-promo {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

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

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

.category-icon {
    font-size: 2.5rem;
}

.category-name {
    color: #ffd700;
    font-size: 1.5rem;
}

.category-offers {
    margin-bottom: 2rem;
}

.offer-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ffd700;
}

.offer-item strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.contact-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.contact-card.priority {
    border: 2px solid #ffd700;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.contact-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-details {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Support Categories */
.support-categories {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

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

.support-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.support-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.support-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
    justify-content: center;
}

.topic-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.support-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* App Download */
.app-download {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

.app-features {
    margin: 2rem 0;
}

.app-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.app-feature .feature-icon {
    font-size: 2rem;
    margin-top: 0.25rem;
}

.app-feature strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffd700;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.download-icon {
    width: 40px;
    height: 40px;
}

.download-info {
    display: flex;
    flex-direction: column;
}

.download-text {
    color: #999;
    font-size: 0.9rem;
}

.download-platform {
    color: #ffd700;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Install Guide */
.install-guide {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.install-tabs {
    max-width: 800px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-btn {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: #999;
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.tab-btn.active,
.tab-btn:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    border-color: #ffd700;
}

.tab-content {
    position: relative;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.install-steps {
    display: grid;
    gap: 1.5rem;
}

.install-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.install-step .step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    color: #e0e0e0;
    line-height: 1.6;
}

/* FAQ Contact */
.faq-contact {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

/* Contact Form */
.contact-form {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.contact-form-container {
    max-width: 600px;
}

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

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

.form-label {
    display: block;
    color: #ffd700;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ffd700;
}

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

/* Event Timeline */
.events-timeline {
    display: grid;
    gap: 2rem;
}

.event-card {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateX(10px);
    border-color: rgba(255, 215, 0, 0.4);
}

.event-date {
    text-align: center;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    padding: 1rem;
    border-radius: 10px;
    flex-shrink: 0;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 600;
}

.event-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-description {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.reward-tag {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Terms and Tips */
.promo-terms {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.terms-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.terms-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.terms-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.terms-list {
    list-style: none;
    padding: 0;
    color: #e0e0e0;
    line-height: 1.6;
}

.terms-list li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.terms-list li:before {
    content: '•';
    color: #ffd700;
    position: absolute;
    left: 0;
}

.promo-tips {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

.tips-list .tip-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
}

.tips-list .tip-item:hover {
    transform: translateX(10px);
}

.tip-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.tip-content strong {
    color: #ffd700;
    display: block;
    margin-bottom: 0.5rem;
}

/* CTA Enhancements */
.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

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

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffd700;
    font-weight: 600;
}

.highlight-icon {
    font-size: 1.5rem;
}

/* Popular Games */
.popular-games {
    padding: 4rem 0;
    background: rgba(0, 0, 0, 0.5);
}

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

.popular-card {
    background: rgba(255, 215, 0, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.popular-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.4);
}

.popular-rank {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ffd700, #ff6b35);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    z-index: 2;
}

.popular-image {
    height: 200px;
    overflow: hidden;
}

.popular-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-content {
    padding: 1.5rem;
}

.popular-title {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.popular-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.popular-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.popular-stats .stat {
    background: rgba(255, 215, 0, 0.2);
    color: #ffd700;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Game Providers */
.game-providers {
    padding: 4rem 0;
    background: rgba(139, 0, 0, 0.1);
}

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

.provider-card {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.provider-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.provider-img {
    max-width: 60px;
    max-height: 60px;
}

.provider-name {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.provider-description {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-gold { color: #ffd700; }
.bg-dark { background-color: rgba(0,0,0,0.8); }

/* Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #ffd700;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff6b35;
}