/* =================================
   RESET
================================= */

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

/* =================================
   BODY
================================= */

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    background:
        radial-gradient(circle at 20% 20%, rgba(180, 0, 255, 0.35), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(120, 0, 255, 0.25), transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(200, 0, 255, 0.18), transparent 55%),
        #0a0812;

    background-attachment: fixed;

    line-height: 1.6;
}


/* =================================
   CONTAINER
================================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =================================
   HEADER
================================= */

header {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

/* =================================
   NAVIGATION
================================= */

nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

nav a:hover {
    color: #b56dff;
}

/* =================================
   HERO
================================= */

.hero {
    min-height: 85vh;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 80px 20px;
}

.hero-content {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 20px;
}

.hero-avatar {
    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    border: 4px solid rgba(161,0,255,0.6);

    box-shadow:
        0 0 40px rgba(161,0,255,0.45);
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    opacity: 0.9;
}

/* =================================
   PANELS
================================= */

.panel,
.live-card,
.community-panel {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(161,0,255,0.25);

    border-radius: 18px;

    padding: 24px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 0 20px rgba(161,0,255,0.15);
}

/* =================================
   LIVE STATUS
================================= */

.live-card {
    width: 100%;
    max-width: 700px;
}

/* =================================
   COUNTDOWN
================================= */

#stream-countdown {
    margin-top: 10px;

    font-size: 1.1rem;
    font-weight: bold;

    color: #c993ff;
}

/* =================================
   STREAMPLAN LINK
================================= */

.streamplan-link {
    color: #c993ff;
    text-decoration: none;
    font-weight: bold;
}

.streamplan-link:hover {
    color: white;
}

/* =================================
   BUTTONS
================================= */

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 22px;

    border-radius: 10px;

    text-decoration: none;
    color: white;

    transition: 0.2s;
}

.primary {
    background: #9147ff;
}

.secondary {
    background: #23232c;
}

.btn:hover {
    transform: translateY(-2px);
}

/* =================================
   SECTIONS
================================= */

.section {
    padding: 60px 0;
}

.section h2 {
    margin-bottom: 20px;
}

/* =================================
   TWITCH PLAYER
================================= */

.stream-box iframe,
.stream-wrapper iframe {
    width: 100%;

    height: 80vh;
	
	min-height: 600px;
		
    border: none;

    border-radius: 18px;

    box-shadow:
        0 0 20px rgba(161,0,255,0.15);
}

/* =================================
   VODS
================================= */

#vods {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 20px;
}

.vod-card {
    display: block;

    overflow: hidden;

    border-radius: 18px;

    text-decoration: none;

    color: white;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(161,0,255,0.25);
}

.vod-card img {
    width: 100%;
    height: 800px;
	
    object-fit: cover;
}

.vod-info {
    padding: 15px;
}

/* =================================
   COMMUNITY
================================= */

.community-panel {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.social-card {

    display: flex;
    align-items: center;

    gap: 10px;

    padding: 14px;

    text-decoration: none;

    color: white;

    background: rgba(255,255,255,0.05);

    border-radius: 12px;

    transition: 0.2s;
}

.social-card:hover {
    transform: translateY(-2px);
}

.social-card img {
    width: 20px;
    height: 20px;
}

/* =================================
   SCHEDULE
================================= */

#stream-schedule {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#schedule-title {
    font-size: 1.2rem;
    font-weight: bold;
}

#schedule-game {
    color: #c993ff;
}

#schedule-time {
    opacity: 0.8;
}

.schedule-divider {
    border: none;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

/* =================================
   FOOTER
================================= */

footer {
    padding: 50px 0;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 12px;

    text-align: center;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    color: white;
    text-decoration: none;
}

.footer-links a:hover {
    color: #c993ff;
}

/* =================================
   MOBILE
================================= */

@media (max-width: 900px) {

    .community-panel {
        grid-template-columns: 1fr;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stream-box iframe,
    .stream-wrapper iframe {
        height: 450px;
    }
}

.schedule-panel {

    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;

    padding: 12px;

    border-radius: 10px;

    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.05);

    color: white;
}

.contact-form textarea {
    resize: vertical;
}

.form-buttons {

    display: flex;

    gap: 10px;

    margin-top: 15px;
}

/* =========================
COOKIE BANNER
========================= */

#cookie-banner {

    position: fixed;

    inset: 0;

    display: none;

    justify-content: center;

    align-items: center;

    background: rgba(0,0,0,0.8);

    z-index: 99999;
}

.cookie-content {

    max-width: 500px;

    padding: 25px;

    border-radius: 20px;

    background: rgba(20,20,30,0.95);

    border: 1px solid rgba(170,0,255,0.4);

    text-align: center;
}

.cookie-buttons {

    display: flex;

    gap: 10px;

    justify-content: center;

    margin-top: 20px;
}

.cookie-buttons button {

    padding: 12px 20px;

    border: none;

    border-radius: 10px;

    cursor: pointer;
}

.panel,
.live-card,
.stream-box,
.social-card,
.vod-card {

    transition: all 0.25s ease;

    box-shadow: 0 0 20px rgba(161, 0, 255, 0.15);
}

.panel:hover,
.live-card:hover,
.stream-box:hover,
.social-card:hover,
.vod-card:hover {

    transform: translateY(-4px);

    box-shadow:
        0 0 25px rgba(161, 0, 255, 0.35),
        0 0 60px rgba(161, 0, 255, 0.15);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.media-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: white;

    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(161,0,255,0.25);
    border-radius: 14px;

    overflow: hidden;

    transition: 0.2s;
}

.media-card img {
    width: 100%;
    height: 40x;
    object-fit: cover;
}

.media-card span {
    padding: 10px;
    font-size: 0.9rem;
}

.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(161,0,255,0.3);
}