/* Extracted from page_panels/discord.php block 1 */
/* Fullscreen section */
.ww-join-page {
    position: relative;
    width: 100%;
    height: 100vh;
    background: #000;
    overflow: hidden;
}

/* Background image */
.ww-join-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('/img/biggie.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: brightness(0.45);
    z-index: 1;
}

/* Dark radial overlay */
.ww-join-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.35), rgba(0,0,0,0.85));
    z-index: 2;
}

/* Centered content */
.ww-join-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ww-join-box {
    max-width: 580px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;

    background: rgba(10, 15, 28, 0.7);
    border: 1px solid #1f2937;
    backdrop-filter: blur(6px);
    border-radius: 2px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75);
}

/* Titles */
.ww-join-title {
    font-size: 2rem;
    margin: 0 0 0.6rem;
    color: #f9fafb;
}

.ww-join-subtitle {
    font-size: 1rem;
    color: #d1d5db;
    margin: 0 auto 1.8rem;
    max-width: 420px;
}

/* Buttons wrapper */
.ww-join-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1.2rem;
}

/* Buttons */
.ww-join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 48px;
    padding: 0 2rem;

    border-radius: 2px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #1f2937;

    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

/* Primary (Discord) */
.ww-join-btn-primary {
    background: linear-gradient(135deg, #2563eb, #22c55e);
    color: #ffffff;
}

.ww-join-btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8, #16a34a);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.7);
}

/* Secondary (Group) */
.ww-join-btn-ghost {
    background: rgba(15, 23, 42, 0.8);
    color: #e5e7eb;
}

.ww-join-btn-ghost:hover {
    background: rgba(31, 41, 55, 0.9);
    border-color: #2563eb;
}

/* Mobile */
@media (max-width: 600px) {
    .ww-join-box {
        padding: 2rem 1.5rem;
    }

    .ww-join-title {
        font-size: 1.75rem;
    }

    .ww-join-btn {
        height: 44px;
        font-size: 0.95rem;
    }
}


