@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;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    letter-spacing: 0.02em;
}

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

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

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

.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 {
    background: rgba(255, 255, 255, 0.03);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 40px;
    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: 45px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

/* Hero Section */
.hero-section {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 0 40px;
    text-align: center;
}

.content-wrapper {
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-top: 10px;
}

.headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    font-style: italic;
}

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

.image-container {
    position: relative;
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.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);
    z-index: 2;
}

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

.promise {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-secondary);
    max-width: 600px;
    font-weight: 400;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
}

.bullets {
    display: none;
}

.cta-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.cta-btn {
    position: relative;
    display: inline-block;
    background-color: var(--cta-color);
    color: #000;
    padding: 12px 40px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: polygon(0 0, 90% 0, 100% 30%, 100% 100%, 10% 100%, 0 70%);
}

.cta-btn:hover {
    background-color: #fff;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

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

.credibility {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Adjustments */
@media (max-height: 800px) {
    .content-wrapper { gap: 20px; }
    .headline { font-size: 2.5rem; }
    .image-container { max-width: 300px; }
    .promise { font-size: 1.1rem; }
}
