:root {
    --primary-orange: #FF7B00;
    --primary-orange-rgb: 255, 123, 0;
    --background-black: #0A0A0A;
    --text-white: #F5F5F7;
    --text-muted: #A1A1A6;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--background-black);
    color: var(--text-white);
    overflow: hidden;
    /* Prevent scroll on landing page for premium feel */
    height: 100vh;
    width: 100vw;
}

/* Background Logic */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.locker-bg {
    width: 100%;
    height: 100%;
    background-image: url('assets/locker-bg.png');
    background-size: cover;
    background-position: center;
    filter: grayscale(0.2) contrast(1.1);
    /* Reduced grayscale for the new colorful image */
    transform: scale(1.05);
    /* Slightly zoomed for subtle motion effect */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.95) 100%);
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 2rem;
    text-align: center;
}

.logo {
    width: 120px;
    height: auto;
    margin-bottom: 2rem;
    border-radius: 20%;
    box-shadow: 0 0 30px rgba(var(--primary-orange-rgb), 0.3);
}

.slogan {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 3rem;
    max-width: 900px;
}

.highlight {
    color: var(--primary-orange);
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(var(--primary-orange-rgb), 0.2);
    z-index: -1;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.5rem;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.store-btn img {
    height: 35px;
    opacity: 0.5;
    filter: saturate(0);
}

.coming-soon {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 0.6rem;
    text-transform: uppercase;
    background: var(--primary-orange);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

.store-btn.disabled:hover {
    border-color: rgba(var(--primary-orange-rgb), 0.5);
    background: rgba(255, 255, 255, 0.08);
}

/* Contact */
.contact {
    margin-top: auto;
    padding-bottom: 2rem;
}

.contact p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.email-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.email-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.email-link:hover {
    color: #ff9d42;
}

.email-link:hover::after {
    width: 100%;
}

/* Animations */
.fade-in {
    animation: fadeIn 1.2s ease forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 1.5rem;
    }

    .slogan {
        font-size: 2.8rem;
    }

    .store-btn {
        width: 200px;
    }
}