:root {
    --bg-color: #121417;
    --grid-color: rgba(255, 255, 255, 0.04);
    --primary-red: #f31a25;
    --text-white: #f5f5f5;
    --text-muted: #8b929b;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Grid */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
        linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
}

/* Subtle radial glow in the center */
body::before {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(243, 26, 37, 0.08) 0%, transparent 60%);
    z-index: -1;
    pointer-events: none;
}

/* Side Accent Lines */
.accent-line {
    position: fixed;
    top: 65%;
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
    z-index: 10;
}

.accent-left {
    left: 0;
}

.accent-right {
    right: 0;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-top: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    background-color: var(--primary-red);
    width: 24px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 14px;
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: white;
    margin-top: 4px;
}

.status-badge {
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #b0b0b0;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-red);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-red);
}

/* Main Content */
main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 60px;
}

/* Center Logo / Video */
.center-logo {
    margin-bottom: 40px;
}

.center-logo-video {
    width: 180px;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(243, 26, 37, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
    object-fit: cover;
    margin-top: 70px;
}

/* Typography */
.subtitle-text {
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 100px;
    line-height: 0.95;
    letter-spacing: 2px;
    margin-bottom: 35px;
    color: white;
}

.highlight {
    color: var(--primary-red);
    text-shadow: 0 0 25px rgba(243, 26, 37, 0.8), 0 0 50px rgba(243, 26, 37, 0.4);
}

.description {
    color: var(--text-muted);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
}

/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-text {
    color: var(--text-muted);
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
}

.footer-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 16px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 60px;
    }
    
    .description {
        font-size: 15px;
        padding: 0 20px;
    }
    
    .accent-line {
        width: 40px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
