* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #000;
    color: white;

    font-family: Arial, Helvetica, sans-serif;

    overflow-x: hidden;
}

/* NAVBAR */

nav {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 24px 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;

    font-size: 1.3rem;
    font-weight: 700;
}

.logo img {
    width: 46px;
    height: 46px;

    object-fit: contain;
}

.logo span {
    color: white;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #888;

    text-decoration: none;

    font-size: 1rem;
    font-weight: 600;

    transition: 0.2s ease;
}

.nav-links a:hover {
    color: #00b11c;
}

/* HERO */

.hero {
    text-align: center;

    padding: 120px 20px 80px;
}

.hero h1 {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
}

.hero h1 span {
    color: #00b11c;
}

.hero p {
    margin-top: 30px;

    color: #666;

    font-size: 2rem;
    font-weight: 700;

    line-height: 1.4;
}

.button {
    display: inline-block;

    margin-top: 50px;

    background: #00b11c;
    color: white;

    padding: 18px 42px;

    border-radius: 999px;

    text-decoration: none;

    font-weight: 700;
    font-size: 1rem;

    transition: 0.2s ease;
}

.button:hover {
    transform: scale(1.05);

    background: #00cf21;
}

/* STREAM SECTION */

.stream-section {
    display: flex;

    justify-content: center;
    align-items: flex-start;

    gap: 24px;

    width: 100%;
    max-width: 1600px;

    margin: 0 auto;

    padding: 40px 20px 80px;
}

.stream-video {
    width: 1100px;
    min-width: 1100px;

    height: 720px;

    border: none;
    border-radius: 24px;

    overflow: hidden;

    background: #111;

    box-shadow:
        0 0 30px rgba(0,0,0,0.6),
        0 0 80px rgba(0,177,28,0.08);
}

.stream-chat {
    width: 380px;
    min-width: 380px;

    height: 720px;

    border: none;
    border-radius: 24px;

    overflow: hidden;

    background: #111;

    box-shadow:
        0 0 30px rgba(0,0,0,0.6),
        0 0 80px rgba(0,177,28,0.08);
}

iframe {
    display: block;
}

/* CONTENT */

.content {
    max-width: 1200px;

    margin: 0 auto;

    padding: 100px 40px;
}

.content h2 {
    font-size: 4rem;
    margin-bottom: 30px;
}

.content h2 span {
    color: #00b11c;
}

.content p {
    color: #777;

    font-size: 1.5rem;
    line-height: 1.6;

    max-width: 900px;
}

/* MOBILE */

@media (max-width: 1400px) {

    .stream-section {
        flex-direction: column;
        align-items: center;
    }

    .stream-video {
        width: 100%;
        min-width: 0;

        height: 600px;
    }

    .stream-chat {
        width: 100%;
        min-width: 0;

        height: 500px;
    }
}

@media (max-width: 900px) {

    nav {
        flex-direction: column;
        gap: 20px;

        padding: 24px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .content h2 {
        font-size: 2.5rem;
    }

    .content p {
        font-size: 1.2rem;
    }

    .stream-video {
        height: 400px;
    }

    .stream-chat {
        height: 400px;
    }
}