/* Mine Slot - Main Stylesheet */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #81C784;
    --secondary-color: #8B4513;
    --secondary-dark: #5D2906;
    --accent-color: #FFD700;
    --accent-orange: #FF9800;
    --background-dark: #1a1a2e;
    --background-darker: #0f0f1a;
    --background-card: #252540;
    --text-primary: #ffffff;
    --text-secondary: #b0b0c0;
    --text-muted: #8888a0;
    --border-color: #3a3a5a;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #f44336;
    --diamond-blue: #00BCD4;
    --gold-color: #FFD700;
    --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(76, 175, 80, 0.3);
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (min-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.5rem; }
    h3 { font-size: 1.75rem; }
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

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

/* Ensure all images in containers stay within bounds */
.container img,
.section img,
.content img,
.mechanics img,
.demo-section img,
.gallery-item img {
    max-width: 100% !important;
    height: auto !important;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-md), var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(76, 175, 80, 0.4);
    color: white;
}

.btn--secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-dark));
    color: white;
}

.btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn--outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold-color), var(--accent-orange));
    color: var(--background-dark);
}

.btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 215, 0, 0.4);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header__logo img {
    height: 40px;
    width: auto;
}

.header__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    display: none;
}

@media (min-width: 768px) {
    .header__logo-text {
        display: block;
    }
}

/* Navigation - Mobile First */
.nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0f0f1a;
    flex-direction: column;
    padding: 80px 20px 100px;
    overflow-y: auto;
    z-index: 999;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.nav--open {
    display: flex !important;
}

.nav__link {
    display: block;
    width: 90%;
    max-width: 320px;
    text-align: center;
    padding: 15px 20px;
    background: #252540;
    border-radius: 10px;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav__link:hover,
.nav__link--active {
    background: #4CAF50;
    color: #fff;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .nav {
        display: flex;
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        background: transparent;
        padding: 0;
        gap: 0.5rem;
        overflow: visible;
    }
    
    .nav__link {
        width: auto;
        max-width: none;
        padding: 0.75rem 1rem;
        background: transparent;
        border-radius: var(--border-radius-sm);
        font-size: 0.9rem;
        color: var(--text-secondary);
    }
    
    .nav__link:hover,
    .nav__link--active {
        color: var(--text-primary);
        background: rgba(76, 175, 80, 0.1);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1000;
    position: relative;
}

.mobile-menu-btn--active {
    position: fixed;
    top: 12px;
    right: 16px;
    z-index: 1000;
    background: #4CAF50;
    border-radius: 8px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn--active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn--active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn--active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Fixed Play Button */
.mobile-play-btn {
    display: none;
}

@media (max-width: 991px) {
    .mobile-play-btn {
        display: block;
        position: fixed;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        z-index: 9997;
        text-align: center;
        font-size: 1rem;
        font-weight: 600;
        padding: 1rem;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        color: #fff;
        text-decoration: none;
        border-radius: var(--border-radius);
        box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5);
        animation: pulse-glow 2s infinite;
    }
    
    @keyframes pulse-glow {
        0%, 100% { box-shadow: 0 4px 20px rgba(76, 175, 80, 0.5); }
        50% { box-shadow: 0 6px 30px rgba(76, 175, 80, 0.8); }
    }
    
    body {
        padding-bottom: 80px;
    }
}

.header__cta {
    display: inline-flex;
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

@media (min-width: 576px) {
    .header__cta {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 50%, #1a3a1a 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%234CAF50" fill-opacity="0.03" width="20" height="20"/></svg>');
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero__container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero__content {
    text-align: center;
}

@media (min-width: 992px) {
    .hero__content {
        text-align: left;
    }
}

.hero__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero__title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: 3.5rem;
    }
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

@media (min-width: 992px) {
    .hero__description {
        margin-left: 0;
        margin-right: auto;
    }
}

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

@media (min-width: 992px) {
    .hero__buttons {
        justify-content: flex-start;
    }
}

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

@media (min-width: 576px) {
    .hero__stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero__stat {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.hero__stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero__image {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}

.hero__image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg), 0 0 60px rgba(76, 175, 80, 0.2);
}

/* ===== Sections ===== */
.section {
    padding: 80px 0;
    width: 100%;
}

.section--dark {
    background: var(--background-darker);
}

.section--gradient {
    background: linear-gradient(180deg, var(--background-dark) 0%, var(--background-darker) 100%);
}

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.section__subtitle {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section__title {
    margin-bottom: 1rem;
}

.section__description {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
}

/* ===== Game Mechanics Section ===== */
.mechanics {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .mechanics {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.mechanics__image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mechanics__image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.mechanics__content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mechanics__list {
    list-style: none;
    margin-top: 1.5rem;
}

.mechanics__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.mechanics__list li::before {
    content: '⛏️';
    flex-shrink: 0;
}

.mechanics__specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.mechanics__spec {
    background: var(--background-card);
    padding: 1rem;
    border-radius: var(--border-radius);
    text-align: center;
}

.mechanics__spec-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.mechanics__spec-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ===== Casino Cards ===== */
.casinos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .casinos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .casinos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.casino-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.casino-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.casino-card__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: var(--border-radius-sm);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem;
}

.casino-card__name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.casino-card__rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gold-color);
    font-size: 0.875rem;
}

.casino-card__bonus {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(76, 175, 80, 0.1));
    border: 1px solid var(--primary-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.casino-card__bonus-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.casino-card__features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.casino-card__features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border-color);
}

.casino-card__features li:last-child {
    border-bottom: none;
}

.casino-card__features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: 700;
}

.casino-card__cta {
    width: 100%;
}

/* ===== Promo Code Section ===== */
.promo-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    margin: 2rem 0;
}

.promo-section__title {
    color: white;
    margin-bottom: 1rem;
}

.promo-section__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.promo-code {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    border: 2px dashed var(--gold-color);
}

.promo-code__text {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-color);
    letter-spacing: 2px;
}

.promo-code__copy {
    background: var(--gold-color);
    color: var(--background-dark);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.promo-code__copy:hover {
    transform: scale(1.05);
}

/* ===== Demo Section ===== */
.demo-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .demo-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.demo-section__image {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.demo-section__image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.demo-section__features {
    list-style: none;
    margin: 1.5rem 0;
}

.demo-section__features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
}

.demo-section__features li::before {
    content: '🎮';
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.testimonial-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.testimonial-card__name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-card__location {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.testimonial-card__rating {
    color: var(--gold-color);
    margin-bottom: 0.5rem;
}

.testimonial-card__text {
    color: var(--text-secondary);
    font-style: italic;
}

/* ===== FAQ Section ===== */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-card);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(76, 175, 80, 0.05);
}

.faq-question h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    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.25rem;
    margin: 0;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--background-darker));
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.cta-section__title {
    color: white;
    margin-bottom: 1rem;
}

.cta-section__description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--background-darker);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer__grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo img {
    height: 40px;
}

.footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

.footer__description {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-card);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary-color);
    color: white;
}

.footer__column h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.75rem;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary-color);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer__copyright {
    color: var(--text-muted);
    font-size: 0.875rem;
}

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

.footer__regulations img {
    height: 40px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer__regulations img:hover {
    opacity: 1;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    font-size: 0.875rem;
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__item::after {
    content: '›';
    color: var(--text-muted);
}

.breadcrumb__item:last-child::after {
    content: none;
}

.breadcrumb__link {
    color: var(--text-muted);
}

.breadcrumb__link:hover {
    color: var(--primary-color);
}

.breadcrumb__current {
    color: var(--text-secondary);
}

/* ===== Table of Contents ===== */
.toc-section {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.toc-section__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.toc-section__list {
    list-style: none;
    counter-reset: toc;
}

.toc-section__list li {
    counter-increment: toc;
    margin-bottom: 0.5rem;
}

.toc-section__list li::before {
    content: counter(toc) ".";
    color: var(--primary-color);
    font-weight: 600;
    margin-right: 0.5rem;
}

.toc-section__list a {
    color: var(--text-secondary);
}

.toc-section__list a:hover {
    color: var(--primary-color);
}

/* ===== Requirements Table ===== */
.requirements-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.requirements-table th,
.requirements-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.requirements-table th {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

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

/* ===== Download Steps ===== */
.download-steps {
    counter-reset: step;
}

.download-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.download-step:last-child {
    border-bottom: none;
}

.download-step__number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.download-step__content h4 {
    margin-bottom: 0.5rem;
}

.download-step__content p {
    margin-bottom: 0;
}

/* ===== Comparison Table ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: var(--background-card);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

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

/* ===== Warning Note ===== */
.warning-note {
    background: rgba(255, 152, 0, 0.1);
    border-left: 4px solid var(--warning-color);
    padding: 1rem 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin: 1.5rem 0;
}

.warning-note p {
    margin: 0;
    color: var(--text-secondary);
}

/* ===== Problems List ===== */
.problems-list {
    list-style: none;
    counter-reset: problem;
}

.problems-list li {
    counter-increment: problem;
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
}

.problems-list li h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.problems-list li h4::before {
    content: counter(problem);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--danger-color);
    border-radius: 50%;
    font-size: 0.875rem;
    color: white;
}

/* ===== Related Pages ===== */
.related-pages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.related-page-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-decoration: none;
}

.related-page-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.related-page-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.related-page-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
}

.team-card__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 3px solid var(--primary-color);
}

.team-card__name {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.team-card__role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-card__bio {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* ===== Author Section ===== */
.author-section {
    background: var(--background-card);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .author-section {
        flex-direction: row;
        align-items: flex-start;
    }
}

.author-section__avatar {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
    margin: 0 auto;
}

@media (min-width: 768px) {
    .author-section__avatar {
        margin: 0;
    }
}

.author-section__content h3 {
    margin-bottom: 0.5rem;
}

.author-section__role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.author-section__details {
    list-style: none;
    margin-top: 1rem;
}

.author-section__details li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ===== Verdict Section ===== */
.verdict-section {
    max-width: 800px;
    margin: 0 auto;
}

.verdict-section__content {
    text-align: left;
}

.verdict-section__content .section__subtitle,
.verdict-section__content .section__title {
    text-align: center;
}

.verdict-section__content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

.verdict-section__content p:first-of-type::first-letter {
    font-size: 3rem;
    font-weight: 700;
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.verdict-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15), rgba(76, 175, 80, 0.05));
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--primary-color);
}

.verdict-score__rating {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.verdict-score__rating span {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.verdict-score__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0.5rem;
}

/* ===== Gallery Section ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        gap: 1.5rem;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--background-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item__caption {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--background-card);
}

/* ===== Symbols Grid ===== */
.symbols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.symbol-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.symbol-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.symbol-card__image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.symbol-card__name {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.symbol-card__description {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}

/* ===== Content Styles ===== */
.content {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
}

.content h2 {
    margin-top: 3rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.content h3 {
    margin-top: 2rem;
    color: var(--primary-light);
}

.content ul,
.content ol {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-secondary);
}

.content li {
    margin-bottom: 0.5rem;
}

.content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: 1.5rem auto;
    box-shadow: var(--shadow-md);
}

.content-image {
    margin: 2rem 0;
    display: block;
    width: 100%;
    text-align: center;
}

.content-image img {
    display: block;
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.content-image figcaption {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
}

/* ===== Page Hero ===== */
.page-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--background-darker), var(--background-dark));
    text-align: center;
}

.page-hero__title {
    margin-bottom: 1rem;
}

.page-hero__description {
    max-width: 700px;
    margin: 0 auto 1rem;
}

.page-hero__meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

/* ===== Social Share Section ===== */
.social-share {
    text-align: center;
    padding: 2rem;
}

.social-share__title {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.social-share__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-share__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: var(--background-card);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.875rem;
}

.social-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.social-share__btn--twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
    color: white;
}

.social-share__btn--facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.social-share__btn--copy:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.social-share__btn svg {
    flex-shrink: 0;
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-4 { padding-top: 2rem; padding-bottom: 2rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

/* ===== Responsive Utilities ===== */
.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
    
    .hide-desktop {
        display: none;
    }
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.animate-pulse {
    animation: pulse 2s ease infinite;
}

/* ===== Game Container (Demo Iframe) ===== */
.game-container {
    max-width: 900px;
    margin: 0 auto;
}

.game-container__wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio */
    background: var(--background-darker);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 60px rgba(76, 175, 80, 0.15);
    border: 2px solid var(--border-color);
}

.game-container__iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.game-container__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.game-container__disclaimer {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Game Placeholder (before iframe loads) */
.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.game-placeholder__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.game-placeholder__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: radial-gradient(circle, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.game-placeholder__play-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.game-placeholder__play-btn:hover {
    transform: scale(1.1);
    color: var(--accent-color);
}

.game-placeholder__play-btn svg {
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.5));
}

.game-placeholder__hint {
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

@media (min-width: 768px) {
    .game-container__wrapper {
        padding-bottom: 56.25%; /* 16:9 aspect ratio on larger screens */
    }
    
    .game-container__info {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ===== Related Articles Section ===== */
.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-article-card {
    background: var(--background-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-article-card__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.related-article-card__description {
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    margin: 0;
}

.related-article-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

@media (max-width: 768px) {
    .related-articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .related-article-card {
        padding: 1.5rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .header,
    .footer,
    .mobile-menu-btn,
    .btn {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .section {
        padding: 20px 0;
    }
}

