/* 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: #2D5A5A;
    background-color: #F5F1E8;
}

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

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Header */
.header {
    background-color: #F5F1E8;
    padding: 1rem 0;
    border-bottom: 1px solid #E6DFD0;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D5A5A;
    text-decoration: none;
}

.brand-name:hover {
    color: #CC7A00;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #F5F1E8 0%, #F0EBD8 100%);
    padding: 4rem 0;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    color: #2D5A5A;
    font-size: 3rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4A8080;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #2D5A5A;
    font-weight: 500;
}

.feature-icon {
    flex-shrink: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #E6DFD0;
}

/* Featured Games Section */
.featured-games {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background-color: #F5F1E8;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #E6DFD0;
}

.game-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-bottom: 2px solid #E6DFD0;
    border-radius: 12px 12px 0 0;
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    color: #2D5A5A;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: #4A8080;
    margin-bottom: 1rem;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    background-color: #CC7A00;
    color: #F5F1E8;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background-color: #F5F1E8;
}

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

.benefit-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E6DFD0;
}

.benefit-icon {
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: #2D5A5A;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #4A8080;
    line-height: 1.5;
}

/* Game Categories Section */
.game-categories {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

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

.category-card {
    background-color: #F5F1E8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E6DFD0;
    cursor: pointer;
}

.category-card:hover {
    border-color: #CC7A00;
    transform: translateY(-2px);
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    color: #2D5A5A;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: #4A8080;
    font-size: 0.9rem;
}

/* Product Showcase Section */
.product-showcase {
    padding: 4rem 0;
    background-color: #F5F1E8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E6DFD0;
}

.product-card h3 {
    color: #2D5A5A;
    margin-bottom: 1rem;
}

.product-card p {
    color: #4A8080;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #CC7A00;
    margin-bottom: 1.5rem;
}

.product-button {
    display: inline-block;
    background-color: #CC7A00;
    color: #F5F1E8;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.product-button:hover {
    background-color: #E69500;
    transform: translateY(-2px);
}

/* Platform Compatibility Section */
.platform-compatibility {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

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

.platform-card {
    background-color: #F5F1E8;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E6DFD0;
}

.platform-icon {
    margin-bottom: 1rem;
}

.platform-card h3 {
    color: #2D5A5A;
    margin-bottom: 1rem;
}

.platform-card p {
    color: #4A8080;
    line-height: 1.5;
}

/* How It Works Section */
.how-it-works {
    padding: 4rem 0;
    background-color: #F5F1E8;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E6DFD0;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background-color: #CC7A00;
    color: #F5F1E8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    color: #2D5A5A;
    margin-bottom: 1rem;
}

.step p {
    color: #4A8080;
    line-height: 1.5;
}

/* Contacts Section */
.contacts {
    padding: 4rem 0;
    background-color: #FFFFFF;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background-color: #F5F1E8;
    border-radius: 12px;
    border: 2px solid #E6DFD0;
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    color: #2D5A5A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.contact-item p {
    color: #4A8080;
    margin-bottom: 0;
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: #2D5A5A;
    color: #F5F1E8;
    padding: 3rem 0 1rem;
}

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

.footer-brand .brand-name {
    color: #F5F1E8;
}

.footer-brand p {
    color: #B8C8C8;
    margin-top: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
}

.footer-section h4 {
    color: #F5F1E8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #B8C8C8;
    text-decoration: none;
}

.footer-section ul li a:hover {
    color: #CC7A00;
}

.footer-bottom {
    border-top: 1px solid #4A8080;
    padding-top: 1rem;
    text-align: center;
    color: #B8C8C8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .games-grid,
    .benefits-grid,
    .categories-grid,
    .products-grid,
    .platforms-grid,
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .game-card,
    .benefit-card,
    .category-card,
    .product-card,
    .platform-card,
    .step,
    .contact-item {
        padding: 1.5rem;
    }
}

/* Utility classes for consistent spacing */
.section {
    padding: 4rem 0;
}

.centered-section {
    text-align: center !important;
}

.centered-section h2,
.centered-section .games-grid,
.centered-section .benefits-grid,
.centered-section .categories-grid,
.centered-section .products-grid,
.centered-section .platforms-grid,
.centered-section .process-steps {
    margin-left: auto;
    margin-right: auto;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }