@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Roboto:wght@400;500&display=swap');

* {
    box-sizing: border-box;
    cursor: none !important;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

body {
    background: url('images/background.png') center/cover no-repeat fixed;
    color: #ffffff;
    position: relative;
    cursor: none;
}

.custom-cursor {
    position: fixed;
    width: 16px;
    height: 16px;
    border: 2px solid #4dd0ff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    background: rgba(77, 208, 255, 0.2);
    box-shadow: 0 0 10px rgba(77, 208, 255, 0.6);
    transform: translate(-50%, -50%);
}

.custom-cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4dd0ff;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.6;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 6px rgba(77, 208, 255, 0.8);
}

.container {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    padding: 2rem;
    padding-top: 2.5rem;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: linear-gradient(90deg, rgba(10, 31, 61, 0.95), rgba(20, 50, 90, 0.95));
    border-bottom: 1.5px solid rgba(77, 208, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.navbar-content {
    display: flex;
    gap: 1.8rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    justify-content: flex-start;
}

.navbar-item {
    text-decoration: none;
    color: #4dd0ff;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    border: 1px solid rgba(77, 208, 255, 0.3);
    border-radius: 0.4rem;
    background: rgba(77, 208, 255, 0.08);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.navbar-item:hover {
    color: #ffffff;
    background: rgba(77, 208, 255, 0.2);
    border-color: rgba(77, 208, 255, 0.8);
    box-shadow: 0 0 20px rgba(77, 208, 255, 0.4);
    transform: translateY(-2px);
}

.content {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: calc(100vh - 4rem);
    gap: 1.6rem;
    position: relative;
    padding-top: 0;
}

.seo-copy {
    width: 100%;
    max-width: 620px;
    text-align: center;
    padding: 0.8rem 1.2rem;
    background-color: #000000cc;
    border-radius: 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    margin: 0 auto 1rem;
}


.carousel-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    max-width: 620px;
    margin: auto auto 0.8rem;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 620px;
    margin: auto;
    border-radius: 0 0 1.1rem 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: none;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.carousel-track {
    width: 100%;
    height: 120px;
    position: relative;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.45);
    color: #ffffff;
    font-size: 1.3rem;
    z-index: 3;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(77, 208, 255, 0.55);
}

.carousel-btn.prev {
    left: 0.7rem;
}

.carousel-btn.next {
    right: 0.7rem;
}

.carousel-dots {
    position: absolute;
    bottom: 0.7rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.45rem;
    z-index: 4;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.5);
    transition: transform 0.2s ease, background 0.2s ease;
}

.carousel-dot.active {
    background: #4dd0ff;
    transform: scale(1.15);
}

.buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 520px;
    margin: 1.5rem auto 1rem;
}

.top-actions {
    position: fixed;
    top: 6px;
    right: 18px;
    display: flex;
    justify-content: flex-end;
    z-index: 101;
}

.btn-auth {
    padding: 0.4rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(0, 0, 0, 0.42);
    color: #ebf7ff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    list-style: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-auth::-webkit-details-marker {
    display: none;
}

.btn-auth::after {
    content: "";
    width: 0.48rem;
    height: 0.48rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 1;
    transition: transform 0.2s ease;
}

.btn-auth:hover {
    background: rgba(77, 208, 255, 0.22);
    border-color: rgba(77, 208, 255, 0.65);
    transform: translateY(-1px);
}

.account-menu {
    position: relative;
}

.account-menu[open] .btn-auth {
    background: rgba(77, 208, 255, 0.22);
    border-color: rgba(77, 208, 255, 0.65);
}

.account-menu[open] .btn-auth::after {
    transform: rotate(225deg) translateY(-1px);
}

.account-dropdown {
    position: absolute;
    right: 0;
    top: calc(100% + 0.35rem);
    min-width: 170px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: rgba(4, 14, 28, 0.95);
    backdrop-filter: blur(4px);
    overflow: hidden;
    z-index: 20;
}

.account-dropdown a {
    padding: 0.55rem 0.75rem;
    text-decoration: none;
    color: #dff1ff;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-dropdown a:last-child {
    border-bottom: 0;
}

.account-dropdown a:hover {
    background: rgba(77, 208, 255, 0.18);
}

.account-logout-form {
    margin: 0;
}

.account-logout-btn {
    width: 100%;
    text-align: left;
    padding: 0.55rem 0.75rem;
    border: 0;
    background: transparent;
    color: #dff1ff;
    font-size: 0.84rem;
    cursor: pointer;
}

.account-logout-btn:hover {
    background: rgba(77, 208, 255, 0.18);
}

.seo-copy h1 {
    margin: 0 0 0.3rem 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-shadow: 0 0 12px rgba(0,180,255,0.8), 0 2px 4px rgba(0,0,0,1);
}

.seo-copy p {
    margin: 0.2rem 0 0;
    font-size: 0.8rem;
    line-height: 1.35;
    color: #ffffff;
    text-shadow: 0 1px 4px rgba(0,0,0,1);
}

.btn {
    padding: 0.65rem 1.1rem;
    border: none;
    border-radius: 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    letter-spacing: 0.05em;
}

.btn-discord {
    background: linear-gradient(135deg, rgba(88, 101, 242, 0.95), rgba(78, 91, 232, 0.95));
    color: white;
    box-shadow: 0 14px 28px rgba(88, 101, 242, 0.28);
    border: 1px solid rgba(150, 160, 255, 0.3);
}

.btn-discord:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(88, 101, 242, 0.35);
}

.btn-server {
    background: linear-gradient(135deg, rgba(0, 200, 200, 0.95), rgba(0, 160, 200, 0.95));
    color: white;
    box-shadow: 0 14px 28px rgba(0, 180, 220, 0.28);
    border: 1px solid rgba(100, 220, 255, 0.3);
}

.btn-server:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(0, 200, 230, 0.35);
}

.btn-icon {
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(3, 12, 25, 0.95);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner__content p {
    margin: 0;
    color: #dcecff;
    font-size: 0.92rem;
}

.cookie-banner__actions {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cookie-btn {
    border: 0;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
    cursor: pointer;
}

.cookie-btn-accept {
    background: #3ed6a9;
    color: #032114;
}

.cookie-btn-decline {
    background: rgba(255, 255, 255, 0.16);
    color: #e9f6ff;
}

.cookie-link {
    display: inline-flex;
    align-items: center;
    color: #9bdfff;
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
        padding-top: 2rem;
    }

    .navbar {
        height: 40px;
    }

    .navbar-content {
        gap: 0.8rem;
        padding: 0 1rem;
        justify-content: center;
    }

    .navbar-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .content {
        max-width: 100%;
        min-height: calc(100vh - 2rem);
        justify-content: flex-start;
        padding-top: 0;
        gap: 1rem;
    }

    .buttons {
        grid-template-columns: 1fr;
    }

    .top-actions {
        position: fixed;
        top: 5px;
        right: 10px;
        justify-content: flex-end;
        width: auto;
        z-index: 101;
    }

    .account-dropdown {
        left: auto;
        right: 0;
        transform: none;
    }

    .carousel-wrapper {
        transform: translateX(0);
    }

    .seo-copy h1 {
        font-size: 0.9rem;
    }

    .seo-copy p {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .carousel-track {
        height: 130px;
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}
