/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    /* Ensure the background extends to overscroll areas (e.g., Safari bounce) */
    background: #0d0d0d;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e5e7;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* Navigation Bar */
.nav-bar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-tabs {
    display: flex;
    gap: 4px;
    padding: 6px;
    border-radius: 999px;
    position: relative;
    background: rgba(25, 25, 25, 0.9);
    border: none;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-slider {
    position: absolute;
    top: 6px;
    left: 6px;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    background: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(240, 240, 240, 0.85);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    position: relative;
    z-index: 2;
}

/* Subtle hover overlay matching the selected pill */
.nav-tab::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: rgba(255, 255, 255, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.nav-tab:hover::before {
    opacity: 1;
}

.nav-tab:hover {
    color: rgba(220, 220, 220, 0.9);
}

.nav-tab.active {
    color: #f5f5f7;
    font-weight: 600;
}

/* Nav Icons */
.nav-icon i {
    color: #ffffff;
    font-size: 16px;
}

/* Main Content */
.main-content {
    padding-top: 80px;
    min-height: 100vh;
}

.content-section {
    display: none;
    min-height: calc(100vh - 60px);
    padding: 40px 20px;
}

.content-section.active {
    display: block;
}

/* Hero Section */
.hero-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 80vh;
}

.hero-content {
    padding: 40px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(200, 200, 200, 0.9);
    margin-bottom: 40px;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #404040, #2a2a2a);
    color: #f5f5f7;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(80, 80, 80, 0.8);
}

.cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #505050, #3a3a3a);
}

.cta-btn.secondary {
    background: rgba(60, 60, 60, 0.3);
    color: #e5e5e7;
    border: 2px solid rgba(120, 120, 120, 0.4);
    backdrop-filter: blur(10px);
}

.cta-btn.secondary:hover {
    background: rgba(80, 80, 80, 0.4);
    transform: translateY(-2px);
    border-color: rgba(140, 140, 140, 0.6);
}

/* Device Showcase */
.hero-devices {
    height: auto;
}

.device-showcase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.device {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    margin: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    transform-origin: center bottom;
}

.device:hover {
    /* Hover transform disabled */
}

.device.iphone {
    width: 200px;
    height: 434px;
    transform: rotate(8deg);
    z-index: 1;
}

.device.ipad {
    width: 420px;
    height: 300px;
    transform: rotate(-3deg);
    z-index: 2;
    border-radius: 12px;
}

.device-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
}

.features-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(80, 80, 80, 0.4);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(50, 50, 50, 0.7);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 15px;
}

.feature-card p {
    color: rgba(200, 200, 200, 0.9);
    line-height: 1.6;
}

/* Privacy & Discord Sections */
.section-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 0;
}

.section-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f5f7;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(200, 200, 200, 0.9);
    margin-bottom: 60px;
    line-height: 1.5;
}

/* Privacy Features */
.privacy-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: left;
}

.privacy-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(80, 80, 80, 0.4);
    transition: all 0.3s ease;
}

.privacy-item:hover {
    background: rgba(50, 50, 50, 0.7);
    transform: translateY(-5px);
}

.privacy-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.privacy-text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f5f5f7;
    margin-bottom: 8px;
}

.privacy-text p {
    color: rgba(200, 200, 200, 0.9);
    line-height: 1.6;
}

/* Discord Content */
.discord-content {
    text-align: center;
    position: relative;
}

#discord {
    position: relative;
    overflow: hidden;
}

.discord-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f5f7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-label {
    font-size: 1rem;
    color: rgba(200, 200, 200, 0.9);
    margin-top: 5px;
}

.discord-btn {
    background: linear-gradient(135deg, #404040, #2a2a2a);
    color: #f5f5f7;
    border: 1px solid rgba(80, 80, 80, 0.8);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.discord-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #505050, #3a3a3a);
}

/* Discord Member Scroller */
.discord-member-scroller {
    position: absolute;
    height: 200px;
    margin: 40px 0;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.discord-member-scroll {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.discord-member-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 40px;
    white-space: nowrap;
    animation: member-scroll-horizontal 190s linear infinite;
    width: max-content;
    height: 32px;
}

.discord-member-list:nth-child(2) {
    animation-delay: -38s;
}

.discord-member-list:nth-child(3) {
    animation-delay: -76s;
}

.discord-member-list:nth-child(4) {
    animation-delay: -114s;
}

.discord-member-list:nth-child(5) {
    animation-delay: -152s;
}

.discord-member-list li {
    font-size: 24px;
    font-weight: 900;
    color: rgba(140, 140, 140, 0.08);
    white-space: nowrap;
    flex-shrink: 0;
    display: inline-block;
    text-shadow: 0 0 1px rgba(140, 140, 140, 0.05);
}

@keyframes member-scroll-horizontal {
    0% {
        transform: translateX(100vw);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Discord Leaderboard */
.discord-leaderboard {
    margin: 40px auto;
    max-width: 600px;
    width: 100%;
}

.leaderboard-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.leaderboard-entry {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(40, 40, 40, 0.6);
    border: 1px solid rgba(80, 80, 80, 0.4);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: background 0.3s ease;
}

.leaderboard-entry:hover {
    background: rgba(50, 50, 50, 0.7);
}

.leaderboard-entry .rank {
    font-weight: 700;
    font-size: 1.25rem;
    width: 48px;
    text-align: center;
    color: #f5f5f7;
}

.leaderboard-entry .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.leaderboard-entry .name {
    flex: 1;
    font-weight: 600;
    color: #f5f5f7;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.leaderboard-entry .level {
    font-weight: 500;
    color: rgba(200, 200, 200, 0.9);
}

/* Discord Podium for Top 3 */
.podium {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    margin: 32px auto 40px;
    position: relative;
}

.podium-entry {
    position: relative;
    width: 120px;
    text-align: center;
    flex: 0 0 120px;
}

.podium-entry .avatar-top {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1a1a1a;
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1a1a;
}

.podium-column {
    width: 100%;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.rank-1 .podium-column {
    height: 140px;
    background: linear-gradient(135deg, #ffd700, #ffbf00);
}

.rank-2 .podium-column {
    height: 110px;
    background: linear-gradient(135deg, #c0c0c0, #b0b0b0);
}

.rank-3 .podium-column {
    height: 90px;
    background: linear-gradient(135deg, #cd7f32, #b87333);
}

.rank-1 { order: 2; }
.rank-2 { order: 1; }
.rank-3 { order: 3; }

.podium-label {
    margin-top: 8px;
    font-weight: 600;
    color: #f5f5f7;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Avatar per rank adjustments */
.rank-1 .avatar-top { top: -28px; }
.rank-2 .avatar-top,
.rank-3 .avatar-top { top: -36px; }

/* Prevent overlap with numbers on shorter columns */
.rank-2 .podium-column,
.rank-3 .podium-column {
    padding-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-bar {
        top: 15px;
    }
    
    .nav-tabs {
        padding: 5px;
        border-radius: 999px;
    }
    
    .nav-slider {
        top: 5px;
        left: 5px;
        border-radius: 999px;
    }
    
    .nav-tab {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 999px;
    }
    
    .nav-tab .nav-text {
        display: none;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-devices {
        height: 550px;
        order: 1;
    }
    
    .device.iphone,
    .device.ipad {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        max-width: 90vw;
        height: auto;
    }
    
    .device.iphone {
        transform: rotate(8deg) !important;
        width: min(200px, 40vw);
        height: auto;
        aspect-ratio: 200/434;
    }
    
    .device.ipad {
        transform: rotate(-3deg) !important;
        width: min(320px, 80vw);
        height: auto;
        aspect-ratio: 420/300;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .discord-stats {
        gap: 30px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .privacy-item {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        align-items: flex-start;
    }
    
    .section-content h1 {
        font-size: 2.5rem;
    }

    .loopy-banner {
        width: calc(100% - 40px);
        bottom: 22px;
        padding: 12px 18px;
    }

    .loopy-headline {
        font-size: 0.9rem;
    }

    .loopy-copy {
        max-width: none;
    }

    .loopy-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 20px 15px;
    }
    
    .hero-section {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .device.iphone {
        width: min(160px, 35vw) !important;
        height: auto !important;
        aspect-ratio: 200/434;
        transform: rotate(8deg) !important;
    }
    
    .device.ipad {
        width: min(280px, 75vw) !important;
        height: auto !important;
        aspect-ratio: 420/300;
        transform: rotate(-3deg) !important;
    }
    
    .device-showcase {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }
    
    .features-section {
        margin: 60px auto 0;
        padding: 0 15px;
    }
    
    .features-section h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .section-content {
        padding: 60px 15px;
    }

    .section-content h1 {
        font-size: 2rem;
    }

    .privacy-item {
        padding: 20px;
    }

    .full-policy {
        padding: 20px;
        font-size: 13px;
        margin: 40px 0;
    }
    
    .podium {
        gap: 12px;
    }
    .podium-entry {
        width: 90px;
        flex: 0 0 90px;
    }
    .podium-entry .avatar-top {
        width: 60px;
        height: 60px;
        top: -28px;
    }
    .podium-column {
        font-size: 1.25rem;
    }
    .rank-1 .podium-column { height: 120px; }
    .rank-2 .podium-column { height: 90px; }
    .rank-3 .podium-column { height: 72px; }
    .podium-label {
        font-size: 0.9rem;
    }

    .loopy-banner {
        width: calc(100% - 28px);
        padding: 12px 16px;
        gap: 10px;
        bottom: 18px;
    }

    .loopy-eyebrow {
        font-size: 0.7rem;
    }

    .loopy-headline {
        font-size: 0.85rem;
    }

    .loopy-icon {
        width: 34px;
        height: 34px;
    }
}

@media (max-width: 320px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .device.iphone {
        width: min(140px, 40vw) !important;
    }
    
    .device.ipad {
        width: min(240px, 70vw) !important;
    }
    
    .feature-card {
        padding: 25px 20px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
    
    .nav-tab {
        padding: 6px 10px;
    }

    .loopy-banner {
        width: calc(100% - 22px);
        padding: 10px 14px;
        gap: 8px;
        bottom: 16px;
    }

    .loopy-headline {
        font-size: 0.8rem;
    }

    .loopy-icon {
        width: 30px;
        height: 30px;
    }
}

/* Slideshow Overlay */
.slideshow-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 9999;
}

.slideshow-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slideshow-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.slideshow-container img {
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.slideshow-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10001;
}

.slideshow-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slideshow-nav svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.slideshow-nav.prev {
    left: 40px;
}

.slideshow-nav.next {
    right: 40px;
}

.slideshow-overlay:focus {
    outline: none;
}

.slideshow-nav[hidden] {
    display: none;
}

.slideshow-close {
    position: absolute;
    top: 30px;
    right: 40px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.2s ease;
}

.slideshow-close:hover,
.slideshow-close:focus-visible {
    background: rgba(255, 255, 255, 0.25);
}

.slideshow-close:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.slideshow-close:active {
    transform: scale(0.95);
}

/* Loopy promo banner */
.loopy-banner {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px 12px 22px;
    border-radius: 999px;
    background: rgba(26, 26, 26, 0.92);
    border: 1px solid rgba(100, 100, 100, 0.35);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #f5f5f7;
    text-decoration: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1100;
}

.loopy-banner:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
}

.loopy-banner.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 20px);
}

.loopy-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 260px;
}

.loopy-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 245, 247, 0.7);
}

.loopy-headline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #f5f5f7;
    line-height: 1.3;
}

.loopy-icon {
    width: 44px;
    height: 44px;
    border-radius: 22%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.loopy-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .slideshow-nav {
        width: 44px;
        height: 44px;
    }
    .slideshow-nav svg {
        width: 20px;
        height: 20px;
    }
    .slideshow-nav.prev {
        left: 16px;
    }
    .slideshow-nav.next {
        right: 16px;
    }
}

/* Keep transforms anchored so scaling doesn't push them off-screen */
.device {
    transform-origin: center bottom;
}

/* Tablet / desktop: place devices side-by-side */
@media (min-width: 768px) {
    .device-showcase {
        flex-direction: row;
        gap: 60px;
        align-items: flex-end;
    }
}

.full-policy {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
    white-space: pre-wrap;
    background: rgba(30, 30, 30, 0.8);
    padding: 30px;
    border-radius: 12px;
    margin-top: 60px;
    border: 1px solid rgba(80, 80, 80, 0.4);
    overflow-x: auto;
    line-height: 1.6;
    color: rgba(220, 220, 220, 0.95);
}

/* Ensure links inside privacy section are readable */
.section-content a {
    color: #6fa8ff;
    text-decoration: underline;
}
.section-content a:hover {
    color: #98c0ff;
}

/* MOTD Banner */
.motd-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(25, 25, 25, 0.9);
    border: 1px solid rgba(80, 80, 80, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 12px 26px;
    color: #f5f5f7;
    font-size: 14px;
    font-weight: 500;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
    z-index: 1000;
}

.motd-banner.visible {
    opacity: 1;
    pointer-events: auto;
}

/* Discord Info (button container) */
.discord-info {
    margin-bottom: 80px;
} 
