/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100vh;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(180deg, #000 0%, #b9b9b9 100%);
    color: #333;
}

/* Main container */
.container {
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    max-width: 100vw;
}

/* Hero section */
.hero {
    text-align: center;
    flex: 0 0 auto;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    line-height: 1.4;
    max-width: 90%;
    margin: 0 auto;
}

/* Stores section */
.stores {
    /*flex: 1;*/
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin: 1rem 0;
}

.store-card {
    background: rgb(255 255 255 / 40%);
    border-radius: 16px;
    padding: 1.5rem 0rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
    max-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.store-logo {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    max-width: 140px;
}

.cta-max {
    background: linear-gradient(0deg, #000, #6d6d6d);
    color: white;
}

.cta-max:hover {
    background: linear-gradient(0deg, #6d6d6d, #000);
    transform: scale(1.05);
}

.cta-uni {
    background: linear-gradient(0deg, #0c85e1, #0cb6e1);
    color: white;
}

.cta-uni:hover {
    background: linear-gradient(0deg, #0cb6e1, #0c85e1);
    transform: scale(1.05);
}

/* Marquee section */
.marquee-section {
    flex: 0 0 auto;
    margin-bottom: 0.5rem;
    overflow: hidden;
    background: rgb(255 255 255 / 40%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 0.75rem 0;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.marquee-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.marquee-logo:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Copyright */
.copyright {
    flex: 0 0 auto;
    text-align: center;
    padding: 0.5rem 0;
    font-weight: 600;
}

.copyright p {
    font-size: 0.8rem;
    color: white;
}

/* Tablet styles */
@media (min-width: 768px) {
    .container {
        padding: 2rem;
    }

    .hero {
        margin-bottom: 2rem;
    }

    .stores {
        gap: 2rem;
        margin: 2rem 0;
    }

    .store-card {
        max-width: 220px;
        padding: 2rem 1.5rem;
    }

    .store-logo {
        max-width: 150px;
    }

    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        max-width: 160px;
    }

    .marquee-logo {
        height: 50px;
        margin: 0 3rem;
    }
}

/* Desktop styles */
@media (min-width: 1024px) {
    .container {
        padding: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .stores {
        gap: 3rem;
    }

    .store-card {
        max-width: 280px;
        padding: 2.5rem 2rem;
    }

    .store-logo {
        max-width: 180px;
    }

    .marquee-logo {
        height: 60px;
        margin: 0 4rem;
    }
}
