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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    background-attachment: fixed;
}

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

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

p {
    margin-bottom: 1rem;
}

a {
    color: #ff6b35;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #f7931e;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    color: #fff;
}

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.site-header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #ff6b35;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.site-title {
    font-size: 1.4rem;
    color: #ff6b35;
    margin: 0;
}

.header-actions {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
}

/* Navigation */
.main-navigation {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    margin-top: 80px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero-section {
    padding: 140px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 147, 30, 0.05));
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-badge {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #b8bcc8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight {
    color: #ff6b35;
    font-weight: 600;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    font-size: 14px;
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.live-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 0, 0, 0.1);
    padding: 12px 24px;
    border-radius: 25px;
    border: 2px solid #ff0000;
    max-width: 300px;
    margin: 0 auto;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.8; }
}

.live-badge {
    color: #ff0000;
    font-weight: bold;
    font-size: 14px;
}

.live-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.viewer-count {
    font-weight: bold;
    font-size: 16px;
    color: #fff;
}

.live-text {
    font-size: 12px;
    color: #b8bcc8;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b8bcc8;
    font-weight: 500;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Casinos Section */
.casinos-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.casino-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.casino-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.casino-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.25);
}

.casino-rank {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    min-width: 60px;
    text-align: center;
}

.casino-content {
    flex: 1;
}

.casino-name {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.casino-bonus {
    color: #f7931e;
    font-weight: 600;
    margin-bottom: 1rem;
}

.casino-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.feature-tag {
    background: rgba(255, 107, 53, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.casino-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: #f7931e;
    font-size: 1.1rem;
}

.score {
    color: #ff6b35;
    font-weight: bold;
}

.casino-action {
    text-align: center;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

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

.content-text p {
    font-size: 1.1rem;
    color: #b8bcc8;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    margin-top: 2rem;
}

.highlight-box ul {
    list-style: none;
    margin-top: 1rem;
}

.highlight-box li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

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

/* How to Play Section */
.how-to-play {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.step-title {
    margin: 1rem 0;
    color: #fff;
}

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

/* Bonus Rounds Section */
.bonus-rounds {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

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

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.25);
}

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

.bonus-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #fff;
}

.bonus-multiplier {
    font-size: 2rem;
    font-weight: bold;
    color: #f7931e;
    margin-bottom: 1rem;
}

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

.bonus-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.bonus-stats .stat {
    background: rgba(255, 107, 53, 0.2);
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 12px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Strategies Section */
.strategies-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

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

.strategy-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

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

.strategy-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.low-risk {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.medium-risk {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.high-risk {
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

.strategy-points {
    list-style: none;
    margin-bottom: 1rem;
}

.strategy-points li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #b8bcc8;
}

.strategy-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

.strategy-note {
    font-style: italic;
    color: #f7931e;
    font-weight: 600;
}

.disclaimer {
    background: rgba(255, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 0, 0, 0.3);
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #ff6b35;
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.2);
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff6b35;
    font-weight: bold;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: #b8bcc8;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    text-align: center;
}

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

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

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn-primary {
    background: #fff;
    color: #ff6b35;
}

.cta-actions .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #ff6b35;
}

.cta-actions .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-actions .btn-secondary:hover {
    background: #fff;
    color: #ff6b35;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(15, 15, 35, 0.95));
    padding: 60px 0 30px;
    border-top: 3px solid #ff6b35;
}

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

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-section ul li a {
    color: #b8bcc8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.footer-section p {
    color: #b8bcc8;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal p {
    color: #b8bcc8;
    font-size: 14px;
    margin: 0;
}

.footer-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 12px;
    font-size: 12px;
    color: #ff6b35;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        margin-top: 0;
    }

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

    .nav-menu {
        flex-direction: column;
        padding: 1rem 0;
    }

    .nav-menu li a {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-section {
        padding: 100px 0 60px;
        margin-top: 0;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

    .casino-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

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

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

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

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

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

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

    .footer-badges {
        justify-content: center;
    }
}

/* Wheel Structure Section */
.wheel-structure {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(247, 147, 30, 0.05));
}

.wheel-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #ff6b35;
}

.wheel-intro p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.wheel-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 3rem;
    overflow-x: auto;
}

.wheel-table table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.wheel-table th, 
.wheel-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.wheel-table th {
    background: rgba(255, 107, 53, 0.2);
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wheel-table td {
    color: #b8bcc8;
    font-size: 0.95rem;
}

.wheel-table tr.number-segment:hover {
    background: rgba(0, 230, 199, 0.1);
}

.wheel-table tr.bonus-segment:hover {
    background: rgba(255, 107, 53, 0.1);
}

.wheel-table tr.featured {
    border: 2px solid #ff6b35;
}

.wheel-table tr.featured td {
    color: #fff;
    font-weight: 600;
}

.wheel-analysis {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.wheel-analysis h3 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
}

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

.analysis-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    transition: transform 0.3s ease;
}

.analysis-item:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.analysis-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.analysis-item p {
    color: #b8bcc8;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* RTP Section */
.rtp-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.rtp-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #ff6b35;
}

.rtp-intro p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

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

.rtp-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
}

.rtp-card.featured {
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.rtp-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b35;
}

.rtp-value {
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.rtp-label {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.rtp-analysis {
    background: rgba(0, 230, 199, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 230, 199, 0.3);
}

.rtp-analysis h3 {
    color: #00e6c7;
    margin-bottom: 1rem;
    text-align: center;
}

.rtp-analysis p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
    text-align: center;
}

/* Footer External Links */
.footer-section a[target="_blank"]:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: #ff6b35 !important;
    color: #ff6b35 !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

/* External Regulatory Links */
div[style*="background: rgba(255, 107, 53, 0.05)"] a:hover {
    background: rgba(255, 107, 53, 0.15) !important;
    border-color: #ff6b35 !important;
    color: #ff6b35 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Additional Styles for Extended Content */

/* Game Overview */
.game-overview {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #ff6b35;
}

.game-overview p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Game Tips */
.game-tips {
    margin-top: 3rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.game-tips h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.tip-mini {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 3px solid #f7931e;
}

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

/* Bonus Details */
.bonus-details {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    border-left: 3px solid #f7931e;
}

.bonus-details p {
    margin: 0;
    font-size: 0.9rem;
    color: #b8bcc8;
    line-height: 1.5;
}

.bonus-details strong {
    color: #f7931e;
}

/* Bonus Comparison */
.bonus-comparison {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.bonus-comparison h3 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 1.5rem;
}

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

.comparison-item {
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

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

/* Strategy Enhancements */
.strategy-intro {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border-left: 4px solid #ff6b35;
}

.strategy-intro p {
    color: #b8bcc8;
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 0;
}

.strategy-description {
    margin-bottom: 1.5rem;
}

.strategy-description p {
    color: #b8bcc8;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.strategy-results {
    background: rgba(0, 230, 199, 0.1);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(0, 230, 199, 0.3);
}

.strategy-results strong {
    color: #00e6c7;
}

.strategy-tips {
    margin-top: 3rem;
}

.strategy-tips h3 {
    color: #ff6b35;
    text-align: center;
    margin-bottom: 2rem;
}

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

.tip-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s ease;
}

.tip-item:hover {
    transform: translateY(-3px);
    border-color: #ff6b35;
}

.tip-item h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-item p {
    color: #b8bcc8;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Mobile Responsive for Extended Content */
@media (max-width: 768px) {
    .game-overview,
    .game-tips,
    .bonus-comparison,
    .strategy-intro,
    .rtp-intro,
    .rtp-analysis,
    .wheel-intro,
    .wheel-analysis {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .tips-grid-mini,
    .comparison-grid,
    .tips-grid,
    .rtp-grid,
    .analysis-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .tip-mini,
    .tip-item,
    .rtp-card,
    .analysis-item {
        padding: 1rem;
    }

    .bonus-details {
        padding: 0.8rem;
    }

    .strategy-description p {
        font-size: 0.9rem;
    }

    .rtp-value {
        font-size: 2rem;
    }

    .rtp-label {
        font-size: 1.1rem;
    }

    .wheel-table {
        margin: 0 -20px;
        border-radius: 0;
    }

    .wheel-table th,
    .wheel-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .game-overview p,
    .strategy-intro p,
    .rtp-intro p,
    .rtp-analysis p,
    .wheel-intro p {
        font-size: 1rem;
    }

    .tip-item h4,
    .analysis-item h4 {
        font-size: 1rem;
    }

    .bonus-details p {
        font-size: 0.85rem;
    }

    .rtp-value {
        font-size: 1.8rem;
    }

    .rtp-description,
    .analysis-item p {
        font-size: 0.85rem;
    }

    .wheel-table th,
    .wheel-table td {
        padding: 0.6rem 0.3rem;
        font-size: 0.8rem;
    }
}