:root {
    --bg-color: #020204;
    --primary: #FFD700;
    /* Gold */
    --text-color: #ffffff;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCI+PGRlZnM+PGZpbHRlciBpZD0ibm9pc2UiPjxmZVR1cmJ1bGVuY2UgdHlwZT0iZnJhY3RhbE5vaXNlIiBiYXNlRnJlcXVlbmN5PSIwLjciIG51bU9jdGF2ZXM9IjMiIHN0aXRjaFRpbGVzPSJzdGl0Y2giLz48L2ZpbHRlcj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsdGVyPSJ1cmwoI25vaXNlKSIgb3BhY2l0eT0iMC4wNSIvPjwvc3ZnPg==');
    opacity: 0.5;
    pointer-events: none;
    z-index: 1;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent 0%, #000000 90%);
    z-index: 2;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
}

/* Typography & Glitch Effect */
.logo-container {
    margin-bottom: 3rem;
}

.glitch {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    position: relative;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    animation: fadeUp 1s ease-out forwards;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
}

.glitch::before {
    left: 2px;
    text-shadow: -1px 0 #00ffff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -1px 0 #ff00ff;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 5s infinite linear alternate-reverse;
}

.subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.5em;
    color: var(--primary);
    text-transform: uppercase;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.5s forwards;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 3rem 0;
    width: 100%;
}

/* Button Grid */
.grid-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    justify-content: center;
}

@media (min-width: 768px) {
    .grid-buttons {
        flex-direction: row;
    }
}

/* Button Base */
.btn-enter {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 1.5rem 2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    min-width: 240px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Primary Button (Blog) */
.btn-primary {
    background: var(--text-color);
    color: #000;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

/* Secondary Button (Store) */
.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    /* Transparent Glass */
    color: var(--text-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    border-color: var(--primary);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
    text-align: left;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    font-size: 1.1rem;
}

.btn-text small {
    font-size: 0.6rem;
    opacity: 0.7;
    margin-bottom: 2px;
}

.btn-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.btn-enter:hover .btn-glow {
    transform: translateX(100%);
}

.footer {
    margin-top: 4rem;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.2em;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Keep existing Glitch Animations */
@keyframes glitch-anim-1 {
    0% {
        clip: rect(20px, 9999px, 10px, 0);
    }

    20% {
        clip: rect(60px, 9999px, 80px, 0);
    }

    40% {
        clip: rect(10px, 9999px, 90px, 0);
    }

    60% {
        clip: rect(85px, 9999px, 15px, 0);
    }

    80% {
        clip: rect(40px, 9999px, 5px, 0);
    }

    100% {
        clip: rect(70px, 9999px, 95px, 0);
    }
}

@keyframes glitch-anim-2 {
    0% {
        clip: rect(25px, 9999px, 90px, 0);
    }

    20% {
        clip: rect(10px, 9999px, 5px, 0);
    }

    40% {
        clip: rect(55px, 9999px, 35px, 0);
    }

    60% {
        clip: rect(30px, 9999px, 85px, 0);
    }

    80% {
        clip: rect(65px, 9999px, 45px, 0);
    }

    100% {
        clip: rect(15px, 9999px, 60px, 0);
    }
}