:root {
    --bg-color: #121212;
    --text-color: #ffffff;
    --neon-cyan: #08F7FE;
    --neon-pink: #FE53BB;
    --neon-orange: #FFA500;
    --neon-yellow: #F5D300;

    --font-heading: 'Monoton', cursive;
    --font-script: 'Sacramento', cursive;
    --font-body: 'Montserrat', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow-x: hidden;
    position: relative;
}

/* Background Texture */
body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 50% 50%, rgba(20, 20, 20, 0.8), #000 90%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23222' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: -1;
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 1;
}

/* Typography & Neon Text */
/* Logo Image */
.logo-container {
    margin-bottom: 2rem;
    max-width: 100%;
}

.logo-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 5px rgba(8, 247, 254, 0.4));
}

.color-accent {
    color: #fff;
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 40px var(--neon-pink),
        0 0 80px var(--neon-pink);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--neon-yellow);
    text-shadow: 0 0 10px rgba(245, 211, 0, 0.7);
    margin-bottom: 2rem;
}

.subtext {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.6;
    color: #ddd;
}

.highlight {
    color: var(--neon-orange);
    font-weight: bold;
    text-shadow: 0 0 5px var(--neon-orange);
}

/* Visual Teaser (SVG Neon Icons) */
.visual-teaser {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.neon-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.neon-icon:hover {
    transform: scale(1.1);
}

.neon-svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 5px var(--neon-orange));
}

.path-neon {
    fill: none;
    stroke: var(--neon-orange);
    stroke-width: 3;
    stroke-linecap: round;
}

.icee .path-neon {
    stroke: var(--neon-cyan);
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.icee .path-straw {
    stroke: var(--neon-pink);
    stroke-width: 3;
    fill: none;
}

.icon-label {
    margin-top: 10px;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #fff;
    opacity: 0.8;
}

/* Contact Info & Socials */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-btn {
    font-size: 2rem;
    color: #fff;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.social-btn:hover {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink);
    transform: translateY(-5px);
}

.contact-details p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details a:hover {
    color: var(--neon-cyan);
}

.contact-details i {
    color: var(--neon-cyan);
    margin-right: 10px;
    width: 20px;
}

/* Footer */
footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    opacity: 0.7;
    border-top: 1px solid #333;
    padding-top: 1rem;
    width: 100%;
}

footer a {
    color: var(--neon-pink);
    text-decoration: none;
}

/* Animations */
.flicker-slow {
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(8, 247, 254, 0.6));
    }

    20%,
    24%,
    55% {
        opacity: 0.8;
        filter: none;
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .logo-img {
        max-width: 200px;
    }

    .visual-teaser {
        gap: 2rem;
    }

    .neon-svg {
        width: 60px;
        height: 60px;
    }
}