body {
    background-color: #232323;
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    color: white;
    margin: 0;
    padding: 0;
    font-family: "degular-variable", sans-serif;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/background.webp');
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: blur(10px);
}

.bg-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color : rgba(35, 35, 35, 0.8);
    z-index: -1;
}

a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.container {
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    max-width: 76rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 2px solid #3D3D3D;
    background-color: #232323;
    z-index: 1000;
}

.header-content {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.header-logo {
    display: flex;
    padding: 1rem;
}

.header-item {
    display: flex;
    padding: 1rem 0;
    
}

.logo {
    height: 28px;
    width: 3rem;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    border-top: 2px solid #3D3D3D;
    background-color: #232323;
    z-index: 1000;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    justify-items: center;
}

.footer-discord-logo {
    font-weight: 600;
    font-family: "degular-variable", sans-serif;
    color: #ffffff;
}

.landing-center {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.landing-logo {
    height: 64px;
    width: 64px;
    margin-bottom: 1rem;
}

.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.landing-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.landing-card {
    background: rgba(50,50,50,0.50);
    border: 2px solid #3D3D3D;
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.2s, border-color 0.2s;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    cursor: pointer;
    width: 300px;           /* Fixed width for all cards */
    max-width: 90vw;        /* Never exceeds viewport */
    box-sizing: border-box; /* Includes padding/border */
    position: relative;
}

.card-banner {
    position: absolute;
    top: 12px;
    left: 35%;
    transform: translateX(-50%) rotate(-12deg);
    width: 80%;
    background: #d32f2f;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    padding: 0.35em 0;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    letter-spacing: 1px;
    pointer-events: none;
    border-radius: 0.5em;
}

@media (max-width: 700px) {
    .container,
    .landing-center {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .landing-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .landing-card {
        width: 100%;
        max-width: 350px;
        min-width: 0;
        padding: 1.5rem 1rem;
    }
}

.landing-card:hover {
    border-color: #6c63ff;
    background: rgba(20,20,20,0.60);
    box-shadow: 0 4px 24px rgba(108,99,255,0.15);
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

.landing-card-icon {
    height: 48px;
    width: 48px;
    margin-bottom: 1rem;
}

.landing-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.landing-card-desc {
    font-size: 1rem;
    color: #ccc;
}

.landing-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(50,50,50,0.50);
    border: 2px solid #3D3D3D;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.social-icon img {
    width: 26px;
    height: 26px;
}

.social-icon:hover {
    border-color: #6c63ff;
    background: rgba(20,20,20,0.60);
    box-shadow: 0 4px 24px rgba(108,99,255,0.15);
    transition: box-shadow 0.2s, border-color 0.2s, background 0.2s;
}

@media (max-width: 700px) {
    .landing-links {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .landing-card {
        min-width: 0;
        width: 90vw;
        max-width: 350px;
        padding: 1.5rem 1rem;
    }
    .landing-social {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 500px) {
    .landing-title {
        font-size: 1.5rem;
    }
    .landing-logo {
        height: 48px;
        width: 48px;
    }
    .landing-card-title {
        font-size: 1rem;
    }
    .landing-card-desc {
        font-size: 0.9rem;
    }
    .social-icon {
        width: 36px;
        height: 36px;
    }
    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

.site-disclaimer {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    left: auto;
    background: rgba(35,35,35,0.85);
    color: #ccc;
    font-size: 0.95rem;
    padding: 0.5em 1.2em;
    border-radius: 0.5em;
    z-index: 2000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    pointer-events: auto;
    text-align: right;
    max-width: calc(100vw - 3rem);
    box-sizing: border-box;
}

.site-disclaimer a {
    color: #6c63ff;
}

@media (max-width: 600px) {
    .site-disclaimer {
        right: 0.75rem;
        left: 0.75rem;
        font-size: 0.85rem;
        padding: 0.5em 0.7em;
        max-width: calc(100vw - 1.5rem);
    }
}