/* CSS Variables */
:root {
    /* PRIMARY COLORS */
    --primary-color: #FFD700;          /* Main gold */
    --secondary-color: #FFA500;        /* Orange gold */
    --accent-color: #6C5CE7;           /* Purple accent */

    /* BACKGROUND COLORS */
    --bg-primary: #1A1A2E;             /* Dark main background */
    --bg-secondary: #16213E;           /* Darker sections */
    --bg-card: #2D3748;               /* Card backgrounds */
    --bg-gradient: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);

    /* TEXT COLORS */
    --text-primary: #FFFFFF;           /* Main white text */
    --text-secondary: #E2E8F0;         /* Secondary light text */
    --text-muted: #A0AEC0;            /* Muted text */
    --text-dark: #2D3748;             /* Dark text on light backgrounds */

    /* BUTTON COLORS */
    --btn-primary: #FFD700;           /* Primary buttons */
    --btn-primary-hover: #FFA500;     /* Primary button hover */
    --btn-secondary: #6C5CE7;         /* Secondary buttons */
    --btn-secondary-hover: #5A52D5;   /* Secondary button hover */

    /* BORDER COLORS */
    --border-light: #4A5568;          /* Light borders */
    --border-gold: #FFD700;           /* Gold borders */
    --border-muted: #2D3748;          /* Subtle borders */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-gradient);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: bold;
}

h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Header */
.header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid var(--border-gold);
}

.header .container {
    max-width: unset;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

.header-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background: linear-gradient(45deg, var(--btn-primary), var(--btn-primary-hover));
    color: var(--text-dark);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--btn-primary-hover), var(--secondary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: linear-gradient(45deg, var(--btn-secondary), var(--btn-secondary-hover));
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: linear-gradient(45deg, var(--btn-secondary-hover), #4C46B7);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-massive {
    padding: 20px 40px;
    font-size: 1.2rem;
    margin: 2rem 0;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: var(--bg-gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-image {
    margin: 2rem 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 3px solid var(--border-gold);
}

.hero-description {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.trending-slots {
    background: var(--bg-secondary);
}

.choose-slot {
    background: var(--bg-primary);
}

.payment-mobile {
    background: var(--bg-secondary);
}

.player-feedback {
    background: var(--bg-primary);
}

.faq {
    background: var(--bg-secondary);
}

.play-now {
    background: var(--bg-primary);
    border-top: 3px solid var(--border-gold);
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
}

/* Images */
.trending-image,
.choose-image,
.payment-image,
.feedback-image,
.faq-image,
.booming-image {
    text-align: center;
    margin: 2rem 0;
}

.trending-image img,
.choose-image img,
.payment-image img,
.feedback-image img,
.faq-image img,
.booming-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
}

/* Comparison Table */
.comparison-table {
    margin: 3rem 0;
}

.table-responsive {
    overflow-x: auto;
    background: var(--bg-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

thead {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: bold;
    color: var(--text-dark);
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-muted);
    color: var(--text-secondary);
}

tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

/* Reason Cards */
.booming-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.reason-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.reason-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reason-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Tips Grid */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tip-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 12px 35px rgba(108, 92, 231, 0.2);
}

.tip-icon {
    background: linear-gradient(45deg, var(--accent-color), var(--btn-secondary-hover));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tip-icon i {
    font-size: 2rem;
    color: var(--text-primary);
}

.tip-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

h3 {
    text-align: center;
}

/* Payment Features */
.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Payment Methods */
.payment-methods {
    margin: 3rem 0;
    text-align: center;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.method {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.method:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
}

.method i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.method span {
    display: block;
    font-weight: bold;
    color: var(--text-primary);
}

/* Feedback Cards */
.feedback-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feedback-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
}

.feedback-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.2);
}

.feedback-card .fa-quote-left {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feedback-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.rating {
    margin-top: 1rem;
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--primary-color);
}



.faq-item {
    background: var(--bg-card);
    margin-bottom: 1rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--bg-card);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.05);
}

.faq-question i:first-child {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.faq-question h3 {
    flex-grow: 1;
    margin: 0;
    color: var(--text-primary);
}

.faq-question .fa-chevron-down {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--bg-secondary);
}

.faq-answer p {
    padding: 1.5rem;
    margin: 0;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Play Now Section */
.play-now-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 2rem 0;
}

.play-text {
    text-align: center;
}

.play-image {
    margin: 2rem 0;
}

.play-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-gold);
}

.final-image {
    text-align: center;
}

.final-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-gold);
}

.responsible-gaming {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border: 2px solid var(--border-light);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 0;
    text-align: center;
    border-top: 3px solid var(--border-gold);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer {
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.credits {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .faq-question h3 {
        font-size: .7rem;
    }

    .faq-answer p {
        font-size: .7rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }


    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero {
        padding: 195px 0 60px;
    }

    section {
        padding: 60px 0;
    }

    .booming-reasons,
    .tips-grid,
    .payment-features,
    .feedback-cards {
        grid-template-columns: 1fr;
    }

    .play-now-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 1rem;
    }

    .btn-massive {
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .table-responsive {
        padding: 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-description {
        font-size: 1rem;
    }

    .reason-card,
    .tip-card,
    .feature-card,
    .feedback-card {
        padding: 1.5rem;
    }

    .methods-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p {
        padding: 1rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-intro,
.comparison-table,
.booming-reasons,
.tips-grid,
.payment-features,
.feedback-cards,
.faq-items {
    animation: fadeInUp 0.8s ease-out;
}

/* Scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Additional utility classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.p-2 {
    padding: 2rem;
}

/* Gradient text effect */
.gradient-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
} 