body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(180, 0, 0, 0.35), transparent 35%),
        linear-gradient(135deg, #050505 0%, #111111 45%, #000000 100%);
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    padding: 30px;
}

.home-page {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-box,
.content-card {
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.82);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
    padding: 30px;
    margin-bottom: 30px;
}

.hero-box {
    text-align: center;
}

.hero-box h1 {
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.7);
}

.tagline {
    color: #ff3333;
    font-size: 1.4rem;
    font-weight: bold;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.content-card h2 {
    color: #ff3333;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

iframe {
    max-width: 100%;
    border-radius: 12px;
}

.chat-section {
    text-align: center;
}

@media (max-width: 600px) {
    body {
        padding: 20px;
    }

    .hero-box,
    .content-card {
        padding: 22px;
    }
}

/* ==================================================
   STICKY NAVIGATION
================================================== */

.site-header {
    width: 100%;
    margin-bottom: 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding-top: 10px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    border: 1px solid rgba(255, 0, 0, 0.35);
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.88);
    box-shadow: 0 0 35px rgba(255, 0, 0, 0.22);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo img {
    width: 180px;
    max-width: 100%;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.site-nav a:hover {
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

.site-nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

.site-nav-right a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.site-nav-right a:visited {
    color: #ffffff !important;
    text-decoration: none !important;
}

.site-nav-right a:hover {
    color: #ff3333 !important;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    text-decoration: none !important;
}