@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@900&display=swap');

:root {
    --bg-start: #070A10;
    --bg-end: #0B1020;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A0;
    --cta-color: #FFD400;
    --accent-glow: #28E0E9;
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-start);
    color: var(--text-primary);
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.02em;
}

/* Background Video & Grid Overlay */
.video-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at center, transparent 0%, rgba(7, 10, 16, 0.2) 100%),
        linear-gradient(to bottom, rgba(7, 10, 16, 0.4), rgba(11, 16, 32, 0.6));
}

.overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(40, 224, 233, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Top Bar */
.top-bar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
    display: flex;
    align-items: center;
}

.top-bar-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-box {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
}

.logo-box::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--cta-color);
}

.game-logo-img {
    height: 100px;
    width: auto;
     object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

/* Hero Section */
.hero-section {
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5vh 0;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.content-wrapper {
    max-width: fit-content;
    width: fit-content;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4vh;
    position: relative;
    z-index: 2;
}

.headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.2rem, 4vh, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    font-style: italic;
    flex-shrink: 0;
}

.highlight {
    color: var(--cta-color);
    text-shadow: 0 0 20px rgba(255, 212, 0, 0.3);
}

.image-container {
    position: relative;
     width: fit-content;
     max-width: clamp(450px, 90vw, 1100px);
    max-height: 70vh;
    height: auto;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
    padding: 0;
    border: 1px solid rgba(255, 212, 0, 0.5);
    border-radius: 20px;
    filter: drop-shadow(0 0 15px rgba(255, 212, 0, 0.4));
    animation: image-glow 3s infinite ease-in-out;
    flex-shrink: 1;
    min-height: 0;
}

@keyframes image-glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 212, 0, 0.3)); }
    50% { filter: drop-shadow(0 0 25px rgba(255, 212, 0, 0.7)); }
}

.image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--cta-color);
    border-left: 2px solid var(--cta-color);
    border-top-left-radius: 20px;
    z-index: 2;
}

#hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 0.95;
}

.promise {
    font-size:  clamp(1rem, 2.5vh, 1.4rem);
    line-height: 1.3;
    color: #cccccc;
    max-width: 600px;
    font-weight: 500;
    padding-left: 0;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    margin-bottom: 0;
    flex-shrink: 0;
}

.bullets {
    display: none;
}

.cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7vh;
    position: relative;
    padding: 0.7vh 0;
    flex-shrink: 0;
    margin-bottom: 4vh;
}

.cta-btn {
    position: relative;
    display: inline-block;
    background-color: var(--cta-color);
    color: #000;
    padding: 1.5vh 5vw;
    font-weight: 800;
    font-size: clamp(1rem, 2.5vh, 1.4rem);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 212, 0, 0.4);
    animation: gamer-glow 2s infinite ease-in-out;
    border: none;
    cursor: pointer;
    overflow: hidden;
}

.cta-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(30deg);
    transition: none;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

@keyframes gamer-glow {
    0%, 100% { 
        box-shadow: 0 0 15px rgba(255, 212, 0, 0.4), inset 0 0 0px rgba(255, 255, 255, 0);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 35px rgba(255, 212, 0, 0.9), inset 0 0 15px rgba(255, 255, 255, 0.4);
        transform: scale(1.05);
    }
}

.cta-btn:hover {
    background-color: #fff;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    animation: none;
}

.cta-btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .top-bar { height: 5vh; }
    .logo-box { padding: 0 1.5vw; }
    .game-logo-img { height: 2.5vh; }
    .hero-section { padding: 1.5vh 3vw; }
    .content-wrapper { gap: 1.1vh; justify-content: center; }
    .headline { font-size: clamp(1rem, 4vh, 1.6rem); line-height: 1.3; white-space: pre-line; }
    .image-container { width: 95vw; max-width: 100%; max-height: 35vh; margin: 0 auto; }
    .promise { font-size: clamp(0.65rem, 1.8vh, 0.9rem); padding-left: 0; max-width: 95%; text-align: left; }
    .promise p { margin-bottom: 0.4vh !important; font-size: clamp(0.8rem, 2vh, 1rem) !important; }
    .promise ul { gap: 0.6vh !important; }
    .promise svg { width: 2vh; height: 2vh; }
    .cta-wrapper { padding: 0.7vh 0; }
    .cta-btn { padding: 1.5vh 0; font-size: clamp(0.9rem, 2.2vh, 1.2rem); width: 100%; text-align: center; border-radius: 8px; }
}

/* Extra Short Screens */
@media (max-height: 600px) and (max-width: 600px) {
    .image-container { display: none; }
    .content-wrapper { justify-content: center; gap: 15px; }
    .headline { font-size: 1.4rem; }
    .promise { font-size: 0.9rem; }
}

