/* GLOBAL */
body {
    margin: 0;
    background: #0a0a0f;
    font-family: Arial, sans-serif;
    color: #fff;
    text-align: center;
}

/* ===========================
   FULLSCREEN RESPONSIVE VIDEO
   =========================== */
.video-header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center;
}

/* ===========================
   SPOTIFY PLAYER
   =========================== */
.spotify-player {
    margin: 60px auto;
    max-width: 90%;
}

/* ===========================
   SOCIAL ICONS
   =========================== */
.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    margin: 60px 0;
    padding-bottom: 40px;
}

.icon svg {
    width: 40px;
    height: 40px;
    display: block;
    filter: drop-shadow(0 0 6px #ff00ff) drop-shadow(0 0 12px #00eaff);
    transition: transform 0.25s ease, filter 0.25s ease;
}

.icon:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 12px #00eaff) drop-shadow(0 0 20px #ff00ff);
}

/* ===========================
   FOOTER
   =========================== */
footer {
    margin-top: 40px;
    padding: 20px;
    opacity: 0.6;
    font-size: 14px;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
    .spotify-player iframe {
        height: 300px;
    }

    .icon svg {
        width: 32px;
        height: 32px;
    }
}
/* MOBILE FIX FOR 9:16 SCREENS */
@media (max-width: 600px) {
    .video-header {
        height: 80vh; /* reduce height so video fits better */
    }

    #bg-video {
        object-fit: contain; /* show full video */
        background: black;   /* fill any empty space */
    }
}
/* VIDEO HEADER CONTAINER */
.video-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Default: show desktop video */
.video-16x9 {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.video-9x16 {
    display: none;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ===========================
   MOBILE SWITCH (max-width: 768px)
   =========================== */
@media (max-width: 768px) {

    .video-16x9 {
        display: none;
    }

    .video-9x16 {
        display: block;
    }
}
/* --- Re:poke Neon Visitor Counter --- */

#visitor-counter {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 10px 18px;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    color: #0ff;

    /* Neon gradient border */
    border: 2px solid transparent;
    border-radius: 8px;
    border-image: linear-gradient(45deg, #00eaff, #ff00ff, #ff0044) 1;

    /* Cyberpunk glow */
    text-shadow: 0 0 6px #00eaff, 0 0 12px #ff00ff;
    box-shadow: 0 0 12px #00eaff, 0 0 24px #ff00ff;

    /* Hologram flicker + pulse */
    animation: repokePulse 3s infinite alternate,
               repokeFlicker 7s infinite;

    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
}

/* Smooth neon pulse */
@keyframes repokePulse {
    from {
        box-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
        color: #00eaff;
    }
    to {
        box-shadow: 0 0 20px #ff00ff, 0 0 40px #ff00ff;
        color: #ff00ff;
    }
}

/* Hologram flicker */
@keyframes repokeFlicker {
    0%, 92% { opacity: 1; }
    93% { opacity: 0.7; }
    94% { opacity: 1; }
    95% { opacity: 0.5; }
    96% { opacity: 1; }
}

