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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

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

.hero {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 20px;
    text-align: center;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.4rem;
    font-weight: 600;
    color: #e63946;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto;
}

.section {
    padding: 80px 20px;
}

.section-alt {
    background-color: #111111;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.emoji {
    font-size: 1.8rem;
}

.section-description {
    text-align: center;
    color: #888888;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

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

.card {
    background: linear-gradient(145deg, #1a1a1a 0%, #151515 100%);
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
    border-color: #e63946;
}

.card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.card p {
    color: #999999;
    margin-bottom: 20px;
    font-size: 1rem;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    color: #ffffff;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

.stores-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

.footer {
    background-color: #050505;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid #1a1a1a;
}

.about {
    margin-bottom: 30px;
}

.about h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #e63946;
}

.about p {
    color: #777777;
    max-width: 600px;
    margin: 0 auto;
}

.copyright {
    color: #555555;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .cards {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .logo {
        max-width: 220px;
    }
    
    .section {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 8px;
    }
}
