@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;
}

.content {
    width: 100%;
    max-width: 760px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 4rem);
    gap: 1rem;
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 560px;
    border-radius: 1.1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.carousel-track {
    width: 100%;
    height: 160px;
    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(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 520px;
}

.seo-copy {
    width: 100%;
    max-width: 680px;
    text-align: center;
    padding: 0 0.5rem;
}

.seo-copy h1 {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    line-height: 1.45;
    letter-spacing: 0.02em;
    color: #f5fbff;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.seo-copy p {
    margin: 0.5rem 0 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #d3e8ff;
}

.btn {
    padding: 0.95rem 1.5rem;
    border: none;
    border-radius: 1.2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    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: 1.2rem;
}

@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .content {
        max-width: 100%;
        min-height: calc(100vh - 2rem);
    }

    .buttons {
        grid-template-columns: 1fr;
    }

    .seo-copy h1 {
        font-size: 0.98rem;
    }

    .seo-copy p {
        font-size: 0.84rem;
    }

    .carousel-track {
        height: 130px;
    }
}
