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

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    padding-bottom: 120px;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #2d3748;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: #2d3748;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 0;
    min-height: 600px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.intro {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.game-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.game-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

/* CTA Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
    filter: brightness(1.1);
}

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

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f7fafc;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    font-size: 1.125rem;
    color: #4a5568;
}

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

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.75rem;
    color: #667eea;
}

.feature-card p {
    color: #4a5568;
    font-size: 1rem;
}

/* How to Play Section */
.how-to-play {
    padding: 5rem 0;
    background: #fff;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f4ff, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.05);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
}

.step-card p {
    color: #4a5568;
    font-size: 1rem;
}

/* Content Section */
.content {
    padding: 5rem 0;
    background: #fff;
}

.content article {
    max-width: 900px;
    margin: 0 auto;
}

.content ul {
    margin: 1.5rem 0 1.5rem 2rem;
}

.content li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.rating-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #f59e0b;
}

.rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 0.5rem;
}

.rating-box p:last-child {
    color: #78350f;
    font-size: 1rem;
}

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

.bonus-card {
    background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.bonus-card h4 {
    font-size: 1.25rem;
    color: #3730a3;
    margin-bottom: 1rem;
}

.bonus-card p {
    color: #4338ca;
    font-size: 1rem;
}

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

.testimonial-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stars {
    color: #f59e0b;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.quote {
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
}

.author {
    font-weight: 600;
    color: #667eea;
    font-size: 0.95rem;
}

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

.pros, .cons {
    padding: 2rem;
    border-radius: 12px;
}

.pros {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-left: 4px solid #10b981;
}

.cons {
    background: linear-gradient(135deg, #fed7d7, #fecaca);
    border-left: 4px solid #ef4444;
}

.pros h3 {
    color: #065f46;
    margin-bottom: 1.5rem;
}

.cons h3 {
    color: #7f1d1d;
    margin-bottom: 1.5rem;
}

.pros ul, .cons ul {
    margin-left: 1.5rem;
}

.pros li {
    color: #047857;
}

.cons li {
    color: #991b1b;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: #f7fafc;
}

.faq-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: #fff;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #f7fafc;
    color: #667eea;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #4a5568;
}

/* Footer */
.footer {
    background: #2d3748;
    color: #fff;
    padding: 3rem 0 2rem;
    text-align: center;
}

.lang-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.lang-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.lang-links a:hover {
    opacity: 1;
    color: #fbbf24;
}

.footer-note {
    color: #cbd5e0;
    font-size: 0.875rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    padding: 1.5rem 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
}

.bottom-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.bottom-bar-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.bottom-bar-text strong {
    color: #fff;
    font-size: 1.25rem;
}

.bottom-bar-text span {
    color: #cbd5e0;
    font-size: 0.95rem;
}

.bottom-bar-btn {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    white-space: nowrap;
}

.bottom-bar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
    filter: brightness(1.1);
}

/* Game Visual Images */
.game-visual {
    text-align: center;
    margin: 3rem 0;
}

.game-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Comparison Tables */
.bonus-comparison,
.technical-specs,
.strategy-comparison {
    margin: 3rem 0;
}

.bonus-comparison h3,
.technical-specs h3,
.strategy-comparison h3 {
    margin-bottom: 1.5rem;
    color: #2d3748;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table td {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1rem;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: #f7fafc;
    transition: all 0.3s ease;
}

.comparison-table strong {
    color: #2d3748;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
    }

    .hero-game {
        order: 2;
    }

    .features-grid, .steps-grid, .testimonials-grid, .pros-cons {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.875rem 0.5rem;
        font-size: 0.875rem;
    }

    .bottom-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .bottom-bar-text {
        align-items: center;
    }

    .lang-links {
        flex-direction: column;
        gap: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    body {
        padding-bottom: 180px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button, .bottom-bar-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}