/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables - Neon Cosmic Theme */
:root {
    /* Neon Colors */
    --neon-blue: #00D4FF;
    --electric-blue: #0099FF;

    /* CTA Colors */
    --orange-red: #FF4500;
    --orange-gradient: linear-gradient(45deg, #FF6B00, #FF4500);

    /* Background Colors */
    --dark-navy: #0A0F2E;
    --deep-purple: #1A0B3D;
    --cosmic-gradient: linear-gradient(135deg, #0A0F2E, #1A0B3D, #2D1B69);

    /* Game Colors */
    --aviator-red: #FF3333;
    --mines-yellow: #FFD700;
    --plinko-purple: #9966FF;

    /* Effects */
    --glow-blue: rgba(0, 212, 255, 0.3);
    --glow-orange: rgba(255, 69, 0, 0.4);

    /* Typography */
    --font-primary: 'Noto Sans KR', 'Malgun Gothic', 'Apple SD Gothic Neo', sans-serif;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
}

/* Base Typography */
body {
    font-family: var(--font-primary);
    background: var(--cosmic-gradient);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}


.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

/* Headers and Text Styling */
h1,
h2,
h3,
h4 {
    text-shadow: 0 0 20px var(--glow-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: linear-gradient(45deg, var(--neon-blue), var(--electric-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonPulse 2s ease-in-out infinite alternate;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--neon-blue);
    margin-bottom: 2rem;
}

h3 {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--electric-blue);
}

h4 {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 500;
}

/* Animations */
@keyframes neonPulse {
    0% {
        text-shadow: 0 0 20px var(--glow-blue), 0 0 40px var(--glow-blue);
    }

    100% {
        text-shadow: 0 0 30px var(--glow-blue), 0 0 60px var(--glow-blue);
    }
}

@keyframes neonGlow {
    0% {
        box-shadow: 0 0 20px var(--glow-orange);
    }

    100% {
        box-shadow: 0 0 40px var(--glow-orange), 0 0 60px var(--glow-orange);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 44px;
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.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: var(--orange-gradient);
    color: #fff;
    box-shadow: 0 4px 20px var(--glow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-orange);
    animation: neonGlow 1s ease-in-out infinite alternate;
}

.btn-secondary {
    background: transparent;
    color: var(--neon-blue);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px var(--glow-blue);
}

.btn-secondary:hover {
    background: var(--neon-blue);
    color: var(--dark-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--glow-blue);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    flex-wrap: nowrap;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
}

.logo-image {
    height: 40px;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-blue);
}

.logo-eng {
    color: var(--electric-blue);
    font-weight: 400;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    box-shadow: 0 0 15px var(--glow-blue);
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--neon-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 46, 0.7);
    z-index: -1;
}

body.loaded .hero-overlay {
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    padding: 2rem 0;
    margin-top: 80px;
}

.hero-title {
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.5;
}

.hero-cta {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.btn-hero {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 60px;
    min-width: 250px;
    box-shadow: 0 6px 30px var(--glow-orange);
    animation: neonGlow 2s ease-in-out infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px var(--glow-orange);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--neon-blue);
    font-weight: 500;
}

.feature i {
    font-size: 1.2rem;
}

/* Section Styles */
section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 i {
    margin-right: 0.5rem;
    color: var(--electric-blue);
}

/* Games Showcase Section */
.games-showcase {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.2), rgba(45, 27, 105, 0.2));
    backdrop-filter: blur(5px);
}

.games-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.showcase-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.showcase-card img {
    width: 100%;
    transition: transform 0.3s ease;
}

.showcase-card:hover img {
    transform: scale(1.05);
}

.showcase-content {
    padding: 1.5rem;
    text-align: center;
}

.showcase-content h3 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.showcase-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Crash Intro Section */
.crash-intro {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.3), rgba(45, 27, 105, 0.3));
    backdrop-filter: blur(5px);
}

.crash-intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.intro-text i {
    color: var(--electric-blue);
    margin: 0 0.25rem;
}

.intro-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Games Overview Section */
.games-overview {
    background: rgba(10, 15, 46, 0.3);
}

.games-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.games-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(26, 11, 61, 0.6);
    backdrop-filter: blur(10px);
}

.games-table th,
.games-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.games-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.games-table td {
    color: rgba(255, 255, 255, 0.9);
}

.game-name {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.game-name i {
    font-size: 1.2rem;
    color: var(--electric-blue);
}

.highlight {
    color: var(--mines-yellow);
    font-weight: 700;
}

.easy {
    color: #4CAF50;
    font-weight: 600;
}

/* Analysis Section */
.analysis-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 11, 61, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.analysis-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.game-analysis {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.analysis-item h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.analysis-item h4 i {
    color: var(--neon-blue);
}

.conclusion {
    font-weight: 600;
    color: var(--neon-blue);
    border-left: 4px solid var(--electric-blue);
    padding-left: 1rem;
    margin-top: 2rem;
}

/* Game Sections */
.game-section {
    margin: 0;
    padding: 3rem 0;
    position: relative;
}

.aviator-section {
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.1), rgba(255, 69, 0, 0.1));
}

.mines-section {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 193, 7, 0.1));
}

.plinko-section {
    background: linear-gradient(135deg, rgba(153, 102, 255, 0.1), rgba(138, 43, 226, 0.1));

}

.game-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.game-title-section {
    text-align: center;
}

.game-title-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.game-image {
    text-align: center;
}

.game-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-image img:hover {
    transform: scale(1.05);
}

.game-content {
    max-width: 1000px;
    margin: 0 auto;
}

.game-features {
    margin-top: 20px;
}

.game-description h3,
.game-features h3,
.strategies-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.game-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.game-info {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.info-item h4 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: block;
}

.feature-card h4 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

/* Tables */
.strategies-table-wrapper,
.probability-table-wrapper,
.risk-table-wrapper,
.advanced-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.strategies-table,
.probability-table,
.risk-table,
.advanced-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
}

.strategies-table th,
.strategies-table td,
.probability-table th,
.probability-table td,
.risk-table th,
.risk-table td,
.advanced-table th,
.advanced-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.strategies-table th,
.probability-table th,
.risk-table th,
.advanced-table th {
    background: rgba(0, 212, 255, 0.1);
    color: var(--neon-blue);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Probability Colors */
.high-prob {
    color: #4CAF50;
    font-weight: 700;
}

.good-prob {
    color: #8BC34A;
    font-weight: 700;
}

.medium-prob {
    color: #FFC107;
    font-weight: 700;
}

.low-prob {
    color: #FF5722;
    font-weight: 700;
}

/* Risk Profile Colors */
.low-risk {
    color: #4CAF50;
    font-weight: 600;
}

.medium-risk {
    color: #FF9800;
    font-weight: 600;
}

.high-risk {
    color: #F44336;
    font-weight: 600;
}

.strategy-conclusion {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    border-left: 4px solid var(--neon-blue);
    font-size: 1.1rem;
    line-height: 1.6;
}

.game-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

/* Reviews Section */
.reviews-section {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.3), rgba(45, 27, 105, 0.3));
    backdrop-filter: blur(5px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--neon-blue);
    opacity: 0.3;
}

.review-content p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.review-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-name {
    font-weight: 600;
    color: var(--electric-blue);
}

.author-location {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.review-icon {
    font-size: 1.5rem;
    color: var(--neon-blue);
    opacity: 0.7;
}

/* Advanced Strategies Section */
.advanced-strategies {
    background: rgba(10, 15, 46, 0.3);
}

.game-aviator {
    color: var(--aviator-red);
}

.game-mines {
    color: var(--mines-yellow);
}

.game-plinko {
    color: var(--plinko-purple);
}

.strategy-explanations {
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.explanation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.explanation-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.explanation-item h4 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.explanation-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.3), rgba(45, 27, 105, 0.3));
    backdrop-filter: blur(5px);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.1);
}

.faq-question h3 {
    color: var(--electric-blue);
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: var(--neon-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.footer-content {
    text-align: center;
}

.footer-warning {
    margin-bottom: 2rem;
    padding: 2rem;
    background: rgba(255, 69, 0, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 69, 0, 0.3);
}

.footer-warning h3 {
    color: var(--orange-red);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-warning ul {
    list-style: none;
    color: rgba(255, 255, 255, 0.9);
}

.footer-warning li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.footer-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

@media (max-width: 1024px) {
    /* Header Mobile */

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 15, 46, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        border-top: 1px solid rgba(0, 212, 255, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .header-content {
        gap: 0;
        flex-wrap: wrap;
    }

    .header-buttons {
        order: 3;
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

/* Responsive Design - Mobile First Approach */

/* Mobile (320px - 768px) */
@media (max-width: 768px) {
    :root {
        --section-padding: 2rem 0;
    }

    .container {
        padding: 0 0.5rem;
    }


    /* Games Showcase Mobile */
    .games-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    /* Hero Mobile */
    .hero {
        min-height: 80vh;
        padding-top: 120px;
    }

    .hero-content {
        padding: 1rem 0;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .btn-hero {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-width: 280px;
        width: 100%;
        max-width: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .features-cta {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .features-intro .features-grid-intro {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .features-intro {
        padding: 2rem 0;
    }

    .feature-intro {
        padding: 1rem;
    }

    .feature-intro i {
        font-size: 2rem;
    }

    .feature-intro h3 {
        font-size: 1rem;
    }

    .features-cta .btn {
        width: 100%;
        max-width: 300px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    /* Game Images Mobile */
    .game-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Tables Mobile */
    .games-table,
    .strategies-table,
    .probability-table,
    .risk-table,
    .advanced-table {
        font-size: 0.9rem;
    }

    .games-table thead {
        display: none;
    }

    .games-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        padding: 1rem;
    }

    .games-table tbody td {
        display: block;
        padding: 0.5rem 0;
        border: none;
    }

    .games-table tbody td::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--neon-blue);
    }

    /* Strategy Tables Mobile */
    .strategies-table thead,
    .probability-table thead,
    .risk-table thead,
    .advanced-table thead {
        display: none;
    }

    .strategies-table tbody tr,
    .probability-table tbody tr,
    .risk-table tbody tr,
    .advanced-table tbody tr {
        display: block;
        margin-bottom: 1rem;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 10px;
        padding: 1rem;
    }

    .strategies-table tbody td,
    .probability-table tbody td,
    .risk-table tbody td,
    .advanced-table tbody td {
        display: block;
        padding: 0.5rem 0;
        border: none;
    }

    .strategies-table tbody td::before,
    .probability-table tbody td::before,
    .risk-table tbody td::before,
    .advanced-table tbody td::before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: var(--neon-blue);
        display: block;
        margin-bottom: 0.25rem;
    }

    /* Grid adjustments */
    .features-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .explanation-grid {
        grid-template-columns: 1fr;
    }

    .game-info {
        grid-template-columns: 1fr;
    }
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {

    .nav-menu {
        gap: 1rem;
    }

    .hero-content {
        margin-top: 60px;
    }


    /* Games Showcase Tablet */
    .games-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-header {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .game-title-section h2 {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .explanation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .game-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {


    /* Games Showcase Desktop */
    .games-showcase-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .game-header {
        grid-template-columns: 1fr;
        align-items: center;
    }

    .game-title-section h2 {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .game-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Desktop (1440px+) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }

    :root {
        --section-padding: 6rem 0;
    }
}

/* Accessibility and Print Styles */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--neon-blue);
    outline-offset: 2px;
}

/* Loading animation for images */
img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded {
    opacity: 1;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection styling */
::selection {
    background: var(--neon-blue);
    color: var(--dark-navy);
}

::-moz-selection {
    background: var(--neon-blue);
    color: var(--dark-navy);
}


/* Features Intro Section */
.features-intro {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.2), rgba(45, 27, 105, 0.2));
    backdrop-filter: blur(5px);
}

.features-grid-intro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-intro {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-intro:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.feature-intro i {
    font-size: 2.5rem;
    color: var(--neon-blue);
    margin-bottom: 1rem;
    display: block;
}

.feature-intro h3 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-intro p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.features-cta {
    text-align: center;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}