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

:root {
    --primary: hsl(355, 85%, 48%);
    --primary-foreground: hsl(0, 0%, 100%);
    --secondary: hsl(45, 95%, 55%);
    --accent: hsl(280, 70%, 60%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(0, 0%, 12%);
    --muted: hsl(355, 10%, 92%);
    --muted-foreground: hsl(355, 8%, 38%);
    --card: hsl(0, 0%, 98%);
    --card-foreground: hsl(0, 0%, 12%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.carousel-slide.active {
    opacity: 1;
}

.hero-overlay-1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, hsla(355, 85%, 48%, 0.4), hsla(0, 0%, 0%, 0.6), hsla(280, 70%, 60%, 0.4));
    z-index: 1;
}

.hero-overlay-2 {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, hsla(0, 0%, 0%, 0.7), transparent, hsla(0, 0%, 0%, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 2rem;
    max-width: 900px;
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.hero-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.hero-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-box {
    background: linear-gradient(to bottom right, hsla(355, 85%, 48%, 0.3), hsla(280, 70%, 60%, 0.3));
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem 2rem;
    min-width: 80px;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.countdown-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    font-family: 'Montserrat', sans-serif;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.countdown-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Subscribe Form */
.hero-subscribe {
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.subscribe-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.subscribe-text {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.subscribe-form {
    display: flex;
    gap: 0.5rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.subscribe-input {
    flex: 1;
    min-width: 250px;
    height: 3rem;
    padding: 0 1rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.subscribe-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.subscribe-button {
    height: 3rem;
    padding: 0 2rem;
    background: linear-gradient(to right, var(--primary), var(--accent));
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.subscribe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
}

.subscribe-button:active {
    transform: translateY(0);
}

.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.2);
    color: white;
    border: 1px solid rgba(34, 197, 94, 0.5);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.2);
    color: white;
    border: 1px solid rgba(239, 68, 68, 0.5);
    display: block;
}

/* What's Coming Section */
.whats-coming {
    padding: 8rem 0;
    background: linear-gradient(to bottom right, var(--background), hsla(355, 85%, 48%, 0.05), hsla(280, 70%, 60%, 0.05));
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.store-image-wrapper {
    position: relative;
}

.glow-effect {
    position: absolute;
    inset: -4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    border-radius: 8px;
    opacity: 0.25;
    filter: blur(20px);
    transition: opacity 0.5s;
}

.store-image-wrapper:hover .glow-effect {
    opacity: 0.4;
}

.store-image {
    position: relative;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid hsla(355, 85%, 48%, 0.2);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    background: linear-gradient(to bottom right, hsla(355, 85%, 48%, 0.2), hsla(280, 70%, 60%, 0.2));
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid hsla(355, 85%, 48%, 0.2);
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary);
    display: block;
}

.feature-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.feature-description {
    color: var(--muted-foreground);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(to bottom right, var(--background), hsla(280, 70%, 60%, 0.05), hsla(355, 85%, 48%, 0.05));
}

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

.contact-card {
    background: var(--card);
    border: 2px solid hsla(355, 85%, 48%, 0.2);
    border-radius: 8px;
    padding: 3rem;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 20px 60px hsla(355, 85%, 48%, 0.1);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--card-foreground);
}

.contact-text {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--foreground);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .countdown-box {
        padding: 1rem 1.5rem;
        min-width: 60px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-input {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .countdown {
        gap: 0.5rem;
    }
    
    .countdown-box {
        padding: 0.75rem 1rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }
    
    .hero-logo img {
        max-width: 150px;
    }
}
