* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.6;
}

/* Header */
.top-bar {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.top-nav {
    display: flex;
    gap: 15px;
}

.top-nav a {
    color: #666666;
    text-decoration: none;
    font-weight: 500;
}

.top-nav a:hover {
    color: #FF6B35;
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333333;
    margin-right: 15px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
}

.logo-main {
    color: #FF6B35;
}

.logo-domain {
    color: #666666;
    font-size: 20px;
}

.search-box {
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 25px;
    padding: 8px 15px;
    width: 300px;
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    flex: 1;
    font-size: 14px;
    color: #333333;
}

.search-box input::placeholder {
    color: #999999;
}

.search-icon {
    color: #999999;
    margin-left: 10px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.hero-section {
    margin-bottom: 50px;
}

.hero-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-content {
    padding: 30px;
}

.category-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.category-badge.review {
    background-color: #FF6B35;
    color: #ffffff;
}

.category-badge.feature {
    background-color: #333333;
    color: #ffffff;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333333;
    line-height: 1.2;
}

.hero-description {
    font-size: 18px;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #999999;
}

.play-button-section {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 12px;
}

.play-button-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333333;
}

.play-button-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.play-button-link:hover {
    transform: scale(1.05);
}

.play-button-link img {
    height: 60px;
    width: auto;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF6B35;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

.view-more {
    color: #FF6B35;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.view-more:hover {
    text-decoration: underline;
}

/* Game Screenshots */
.screenshots-section {
    margin-bottom: 50px;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.screenshot-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features-section {
    margin-bottom: 50px;
}

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

.feature-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
}

.feature-description {
    color: #666666;
    line-height: 1.6;
}

/* Game Info Section */
.game-info-section {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.game-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-item {
    text-align: center;
}

.info-label {
    font-size: 14px;
    color: #999999;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-value {
    font-size: 24px;
    font-weight: bold;
    color: #333333;
}

/* Footer */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    margin-top: 60px;
}

.footer-subscribe {
    background-color: #FF6B35;
    padding: 50px 20px;
    text-align: center;
    color: #ffffff;
}

.footer-subscribe h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.footer-subscribe p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.subscribe-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-checkboxes {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.subscribe-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

.subscribe-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.subscribe-input-group {
    display: flex;
    gap: 10px;
    width: 100%;
    max-width: 400px;
}

.subscribe-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
}

.subscribe-input-group button {
    padding: 12px 30px;
    background-color: #ffffff;
    color: #FF6B35;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.subscribe-input-group button:hover {
    background-color: #f0f0f0;
}

.privacy-note {
    font-size: 12px;
    margin-top: 15px;
    opacity: 0.9;
}

.footer-social {
    background-color: #FF6B35;
    padding: 30px 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: rgba(255,255,255,0.3);
}

.footer-links {
    background-color: #333333;
    padding: 40px 20px;
}

.footer-links-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999999;
    font-size: 12px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* Cookies Banner */
.cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333333;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookies-banner.show {
    display: block;
}

.cookies-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookies-text {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

.cookies-text a {
    color: #FF6B35;
    text-decoration: underline;
}

.cookies-buttons {
    display: flex;
    gap: 10px;
}

.cookies-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cookies-btn.accept {
    background-color: #FF6B35;
    color: #ffffff;
}

.cookies-btn.accept:hover {
    background-color: #e55a2b;
}

.cookies-btn.decline {
    background-color: #666666;
    color: #ffffff;
}

.cookies-btn.decline:hover {
    background-color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .search-box {
        width: 200px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .screenshots-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-info-grid {
        grid-template-columns: 1fr;
    }
    
    .cookies-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookies-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookies-btn {
        flex: 1;
    }
}
