* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #6ba844;
    --text-color: #333;
    --bg-color: #f5f5f5;
    --white: #ffffff;
    --forest-green: #1a3d0a;
    --light-green: #8bc34a;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--primary-color) 100%);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem;
    border-radius: 5px;
    cursor: pointer;
}

.header-play-btn {
    margin-left: 1rem;
}

.btn-header-play {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(107, 168, 68, 0.3);
}

.btn-header-play:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 168, 68, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 61, 10, 0.9) 0%, rgba(45, 80, 22, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%231a3d0a" width="1200" height="600"/><path d="M0,300 Q300,200 600,300 T1200,300" stroke="%234a7c2a" stroke-width="2" fill="none" opacity="0.3"/></svg>');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
}

/* Center buttons */
.button-center {
    text-align: center;
    width: 100%;
    margin: 2rem 0;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(107, 168, 68, 0.4);
}

.btn-primary:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 168, 68, 0.6);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(74, 124, 42, 0.4);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 42, 0.6);
}

/* Sections */
section {
    padding: 3rem 0;
}

section h2 {
    font-size: 2.5rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

section p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Game Info Table */
.info-table {
    margin: 2rem 0;
    overflow-x: auto;
}

.info-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.info-table tr {
    border-bottom: 1px solid var(--border-color);
}

.info-table tr:last-child {
    border-bottom: none;
}

.info-table td {
    padding: 1rem;
    text-align: left;
}

.info-table tr:nth-child(even) {
    background: #f9f9f9;
}

.info-table tr:first-child {
    background: var(--primary-color);
    color: var(--white);
}

.info-table tr:first-child td {
    font-weight: bold;
}

/* Graphics & Theme, Bonus Info */
.graphics-theme, .bonus-info {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

/* Gameplay Modes */
.modes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.mode-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mode-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.mode-card h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.mode-card ul {
    list-style: none;
    margin-top: 1rem;
}

.mode-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.mode-card li:last-child {
    border-bottom: none;
}

/* How to Play */
.steps {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.steps ol {
    margin-left: 2rem;
}

.steps li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
}

/* Demo & App Sections */
.demo-features, .app-features {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.demo-features ul, .app-features ul {
    list-style: none;
}

.demo-features li, .app-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.demo-features li:last-child, .app-features li:last-child {
    border-bottom: none;
}

.demo-features li:before, .app-features li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Pros & Cons */
.pros-cons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pros h3 {
    color: #4caf50;
}

.cons h3 {
    color: #ff9800;
}

.pros ul, .cons ul {
    list-style: none;
    margin-top: 1rem;
}

.pros li, .cons li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.pros li:last-child, .cons li:last-child {
    border-bottom: none;
}

/* Similar Games */
.section-intro-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.similar-games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.similar-game-card {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.similar-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.game-logo-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-logo {
    max-width: 200px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.similar-game-card h3 {
    color: var(--forest-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}

.game-description {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.game-description p {
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
    color: #555;
}

.game-description p:first-child {
    font-weight: 500;
}

.btn-game-link {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(107, 168, 68, 0.3);
}

.btn-game-link:hover {
    background: var(--light-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(107, 168, 68, 0.5);
}

/* Floating Play Button */
.floating-play-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: none; /* Hidden by default, shown on mobile */
    transition: opacity 0.3s;
}

.floating-btn-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-green) 100%);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 6px 25px rgba(107, 168, 68, 0.5);
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.floating-btn-link:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(107, 168, 68, 0.7);
}

.floating-btn-icon {
    font-size: 1.5rem;
}

.floating-btn-text {
    white-space: nowrap;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(107, 168, 68, 0.5);
    }
    50% {
        box-shadow: 0 6px 35px rgba(107, 168, 68, 0.8);
    }
}

/* FAQ */
.faq-list {
    margin-top: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.faq-item h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.footer-disclaimer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--forest-green);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }
    
    .header-play-btn {
        margin-left: 0;
        margin-top: 1rem;
    }
    
    .btn-header-play {
        display: block;
        text-align: center;
        white-space: normal;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .modes-grid, .pros-cons-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    section {
        padding: 2rem 0;
    }
}

/* Logo Styles */
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Hero Section Updates */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Demo Game Section */
.demo-game-section {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.demo-game-container {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 3rem;
}

.demo-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    background: #000;
    margin-bottom: 2rem;
}

.demo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px;
}

.demo-game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/graf/Forest-Arrow-Demo-Game.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.demo-game-overlay.hidden {
    display: none;
}

.demo-play-button {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--light-green) 100%);
    color: var(--white);
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(107, 168, 68, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 11;
}

.demo-play-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(107, 168, 68, 0.7);
    background: linear-gradient(135deg, var(--light-green) 0%, var(--accent-color) 100%);
}

.demo-play-button:active {
    transform: translateY(-1px) scale(1.02);
}

.demo-game-info {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.demo-game-info h3 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.demo-game-info ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.demo-game-info li {
    padding: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.6;
}

.demo-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 5px;
    border-left: 3px solid #ffc107;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Demo Features Detailed */
.demo-features-detailed {
    margin: 3rem 0;
}

.demo-features-detailed h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

/* Expert Tips */
.demo-expert-tips {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.demo-expert-tips h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.tip-item h4 {
    color: var(--forest-green);
    margin-bottom: 0.8rem;
}

/* Graphics & Theme Updates */
.graphics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.theme-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bonus-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.bonus-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Gameplay Screenshots */
.gameplay-screenshots {
    margin: 2rem 0;
    text-align: center;
}

.main-gameplay-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.screenshot-img:hover {
    transform: scale(1.05);
}

.mode-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    margin-bottom: 1rem;
}

/* App Showcase */
.app-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
    align-items: start;
}

.app-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-image:first-child {
    grid-column: 1 / -1;
}

/* Footer Badges */
.responsible-gaming-badges,
.licensing-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.badge-img,
.license-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.badge-img:hover,
.license-img:hover {
    opacity: 1;
}

/* Demo Version Enhanced Styles */
.demo-intro-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.demo-intro-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.demo-features h3 {
    text-align: center;
    margin: 2rem 0 1.5rem;
    color: var(--forest-green);
}

.demo-features ul {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    list-style: none;
}

.demo-features li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
}

.demo-features li:last-child {
    border-bottom: none;
}

.demo-features li:before {
    content: "✓ ";
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.demo-benefits {
    margin: 3rem 0;
}

.demo-benefits h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: var(--forest-green);
    margin-bottom: 0.8rem;
}

.demo-comparison {
    margin: 3rem 0;
}

.demo-comparison h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    background: var(--forest-green);
    color: var(--white);
    padding: 1rem;
    text-align: left;
    font-weight: bold;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background: #f9f9f9;
}

.demo-testimonials {
    margin: 3rem 0;
}

.demo-testimonials h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    font-weight: bold;
    color: var(--forest-green);
    display: block;
    text-align: right;
}

.demo-conclusion {
    background: #f0f8f0;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    border-left: 4px solid var(--accent-color);
}

.demo-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-header-play {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    .graphics-content,
    .bonus-content {
        grid-template-columns: 1fr;
    }
    
    .app-showcase {
        grid-template-columns: 1fr;
    }
    
    .app-images {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .tips-content {
        grid-template-columns: 1fr;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-iframe-wrapper {
        padding-bottom: 100%; /* Более высокий для мобильных */
    }
    
    .demo-intro-section {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .demo-cta {
        flex-direction: column;
    }
    
    .demo-cta button {
        width: 100%;
    }
    
    .similar-games-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-play-btn {
        display: block; /* Show on mobile */
    }
}

/* Show floating button on tablets and mobile */
@media (max-width: 1024px) {
    .floating-play-btn {
        display: block;
    }
}
