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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a2332;
    background-color: #ffffff;
}

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

/* Header */
.header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(26, 35, 50, 0.1);
}

.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    color: #1a2332;
    letter-spacing: -0.5px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a2332;
    margin: 0;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    color: #6c757d;
    max-width: 600px;
    margin: 0;
    line-height: 1.5;
}

.hero-image-placeholder {
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 35, 50, 0.15);
}

.hero-image-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.text-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.6;
}

.mission-icon {
    display: flex;
    justify-content: center;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.features h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(26, 35, 50, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.feature-card h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 16px;
    color: #6c757d;
}

/* Games Catalog */
.catalog {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.catalog h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 60px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.game-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(26, 35, 50, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(26, 35, 50, 0.2);
}

.game-image-placeholder {
    width: 100%;
    height: 160px;
}

.game-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.game-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin: 20px 20px 10px;
}

.game-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0 20px 20px;
}

/* Developer Tools */
.developer-tools {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.tools-image-placeholder {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(26, 35, 50, 0.12);
}

.tools-image-placeholder img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    font-size: 16px;
    color: #495057;
    padding: 8px 0 8px 25px;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: bold;
}

/* Products Section */
.products {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.products h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 60px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.product-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(26, 35, 50, 0.12);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card h4 {
    font-size: 22px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 15px;
}

.product-card p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.5;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #ff9500;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: #ff9500;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #e6850e;
}

/* Subscription Section */
.subscription {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.monetization-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.monetization-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 300px;
}

.mini-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
    box-shadow: 0 4px 15px rgba(26, 35, 50, 0.1);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #ffffff;
}

.contact h3 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 60px;
}

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

.contact-item {
    text-align: center;
    padding: 30px;
}

.contact-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.contact-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.5;
}

/* Footer */
.footer {
    background: #1a2332;
    padding: 60px 0 40px;
    color: #ffffff;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 600;
}

.footer-navigation {
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
}

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

.footer-links a:hover {
    color: #ffffff;
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 14px;
    color: #adb5bd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        gap: 30px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        gap: 15px 20px;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .monetization-cards {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .hero-content h2 {
        font-size: 28px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .text-content h3 {
        font-size: 28px;
    }
    
    .features h3,
    .catalog h3,
    .products h3,
    .contact h3 {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}