/* ==========================================================================
   SEÇÃO DO BOT DA SUPREMACY & SLIDER DE FAN ARTS (ULTRA-PREMIUM)
   ========================================================================== */

#supremacy-bot {
    position: relative;
    padding: 4.5rem 2rem 5rem 2rem;
    background: #09090b;
    overflow: hidden;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

/* Orbes Luminosas de Neon no Fundo */
.bot-background-glows {
    display: none;
}

.bot-orb-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
    border-radius: 50%;
    filter: blur(50px);
    animation: floatGlow 12s infinite alternate ease-in-out;
}

.bot-orb-2 {
    position: absolute;
    bottom: 15%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: floatGlow 15s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

/* Container Principal */
.bot-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    z-index: 2;
}

/* Coluna de Informações */
.bot-info-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.bot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #c084fc;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    box-shadow: none;
    animation: none;
}

.bot-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(135deg, #ffffff 30%, #c084fc 70%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.bot-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* Recursos Rápidos do Bot */
.bot-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.bot-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bot-feature-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateX(5px);
}

.bot-feature-item i {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bot-feature-item.bf-economy i {
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    border: 1px solid rgba(234, 179, 8, 0.2);
}

.bot-feature-item.bf-games i {
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.bot-feature-item.bf-moderation i {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.bot-feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #e2e8f0;
}

/* Grupo de Botões */
.bot-btn-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-add-bot {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    padding: 1.1rem 2rem;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-add-bot:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: none;
    filter: brightness(1.1);
}

.btn-bot-docs {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 1.1rem 2rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-bot-docs:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Coluna do Slider de Fan Arts */
.bot-slider-col {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.fanart-slider-card {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 3 / 4;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 1.25rem;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.6), 0 0 40px rgba(168, 85, 247, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform 0.5s ease, border-color 0.5s ease;
}

.fanart-slider-card:hover {
    border-color: rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
}

/* Container de Imagens */
.slider-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #0d061f;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    z-index: 1;
}

.slide-img.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 2;
}

/* Overlay de Legenda e Gradiente */
.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(13, 6, 31, 0.95) 0%, rgba(13, 6, 31, 0.7) 40%, rgba(13, 6, 31, 0) 100%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.slider-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c084fc;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.slider-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-creator {
    font-size: 0.85rem;
    color: #94a3b8;
    font-style: italic;
}

/* Setas de Controle */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(13, 6, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.slider-arrow:hover {
    background: rgba(168, 85, 247, 0.8);
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4);
}

.slider-arrow.prev {
    left: 2rem;
}

.slider-arrow.next {
    right: 2rem;
}

.slider-arrow i {
    font-size: 1rem;
}

/* Dots Indicadores */
.slider-dots {
    position: absolute;
    bottom: 2.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dot.active {
    background: #c084fc;
    width: 24px;
    border-radius: 100px;
    box-shadow: none;
}


/* ==========================================================================
   MEDIA QUERIES (RESPONSIVIDADE)
   ========================================================================== */

@media (max-width: 992px) {
    #supremacy-bot {
        padding: 3.5rem 1.5rem;
    }

    .bot-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .bot-info-col {
        align-items: center;
    }

    .bot-title {
        font-size: 2.2rem;
    }

    .bot-features-list {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .bot-feature-item {
        text-align: left;
    }

    .bot-btn-group {
        justify-content: center;
        width: 100%;
    }

    .btn-add-bot, .btn-bot-docs {
        flex: 1;
        justify-content: center;
        max-width: 280px;
    }

    .fanart-slider-card {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    #supremacy-bot {
        padding: 2.5rem 1rem 3rem 1rem;
    }

    .bot-badge {
        font-size: 0.72rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }

    .bot-title {
        font-size: clamp(1.45rem, 5.5vw, 1.85rem);
        line-height: 1.25;
        margin-bottom: 0.85rem;
    }

    .bot-description {
        font-size: 0.9rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
    }

    .bot-features-list {
        gap: 0.65rem;
        margin-bottom: 1.5rem;
    }

    .bot-feature-item {
        padding: 0.75rem 0.85rem;
        gap: 0.75rem;
        border-radius: 12px;
    }

    .bot-feature-item i {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 0.95rem;
    }

    .bot-feature-item span {
        font-size: 0.82rem;
        line-height: 1.4;
    }

    .bot-btn-group {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .btn-add-bot, .btn-bot-docs {
        max-width: 100%;
        width: 100%;
        padding: 0.85rem 1.2rem;
        font-size: 0.88rem;
        border-radius: 12px;
    }

    .fanart-slider-card {
        max-width: 320px;
        width: 100%;
        aspect-ratio: 1 / 1;
        padding: 0.75rem;
        border-radius: 16px;
    }

    .slider-overlay {
        padding: 0.85rem 1rem;
    }

    .slider-label {
        font-size: 0.68rem;
    }

    .slider-title {
        font-size: 0.95rem;
    }

    .slider-creator {
        font-size: 0.72rem;
    }

    .slider-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }

    .slider-arrow.prev {
        left: 0.75rem;
    }

    .slider-arrow.next {
        right: 0.75rem;
    }
}

/* ==========================================================================
   FAIXA DE PATROCINADORES
   ========================================================================== */
.sponsors-ribbon {
    width: 100%;
    background: linear-gradient(90deg, rgba(9, 9, 11, 1) 0%, rgba(168, 85, 247, 0.05) 50%, rgba(9, 9, 11, 1) 100%);
    border-top: 1px solid rgba(168, 85, 247, 0.15);
    border-bottom: 1px solid rgba(168, 85, 247, 0.15);
    padding: 3.5rem 0;
    margin: 2rem 0 4rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.sponsors-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2.5rem;
    text-align: center;
}

.sponsors-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    /* Soft fade on edges */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
}

.sponsors-marquee-inner {
    display: inline-flex;
    align-items: center;
    gap: 5rem;
    animation: marqueeScroll 35s linear infinite;
    padding-left: 2.5rem; /* half of gap to keep seamless loop */
    padding-right: 2.5rem;
}

.sponsors-marquee:hover .sponsors-marquee-inner {
    animation-play-state: paused;
}

.sponsor-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    user-select: none;
}

.sponsor-logo i {
    font-size: 2.2rem;
}

.sponsor-logo:hover {
    color: #fff;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
    transform: scale(1.08);
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.sponsors-cta {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
    padding: 0 1rem;
}

.sponsors-cta p {
    color: var(--text-sec);
    font-size: 1.05rem;
    max-width: 600px;
    line-height: 1.6;
}

.sponsors-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: rgba(168, 85, 247, 0.1);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
    backdrop-filter: blur(10px);
}

.sponsors-btn:hover {
    background: rgba(168, 85, 247, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.25);
    color: #fff;
    border-color: rgba(168, 85, 247, 0.8);
}

@media (max-width: 768px) {
    .sponsors-ribbon { padding: 2.5rem 0; margin: 1.5rem 0 3rem 0; }
    .sponsor-logo { font-size: 1.4rem; gap: 0.6rem; }
    .sponsor-logo i { font-size: 1.8rem; }
    .sponsors-marquee-inner { gap: 3rem; padding-left: 1.5rem; padding-right: 1.5rem; }
    .sponsors-title { font-size: 0.95rem; margin-bottom: 1.5rem; }
    .sponsors-cta { margin-top: 2.5rem; }
}
