* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: white;
    text-align: center;
    position: relative;

    /* Allow scroll */
    min-height: 100vh;
    overflow-x: hidden;

    /* Base gradient */
    background-color: #333333;

    /* Center content on larger screens */
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 40px 20px;
}

/* Repeating pattern overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image: url("pattern.png");
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.08;

    z-index: 0;
    pointer-events: none;
}

/* Main content container */
.container {
    position: relative;
    z-index: 1;

    max-width: 600px;
    width: 100%;
    padding: 50px 40px;

    background-color: #1e252f;
    backdrop-filter: blur(12px);
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.logo {
    width: 220px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.description {
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 35px;
    color: #cbd5e1;
}

.discord-btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    background: #5865F2;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.discord-btn:hover {
    background: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(88, 101, 242, 0.4);
}

.footer {
    margin-top: 40px;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Video */

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    margin-bottom: 35px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.video-container iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.trailer-btn {
    display: inline-block;
    margin-bottom: 35px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    background: #ef4444;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.trailer-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.35);
}

/* Mobile adjustments */
@media (max-width: 600px) {
    body {
        align-items: flex-start; /* prevents weird vertical lock on mobile */
    }

    .container {
        padding: 40px 25px;
    }

    h1 {
        font-size: 1.8rem;
    }
}
