* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: Arial, sans-serif;
}

body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.25), transparent 35%),
        linear-gradient(135deg, #eaf8ff, #ffffff);
    color: #0f172a;
}

header {
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 35px rgba(56, 189, 248, 0.12);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: bold;
    color: #0ea5e9;
}

.logo img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    padding: 3px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 18px rgba(56, 189, 248, 0.55);
}

.navbar {
    display: flex;
    gap: 28px;
}

.navbar a {
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
}

.navbar a:hover,
.navbar a.active {
    color: #0ea5e9;
}

.menu-btn {
    display: none;
    font-size: 28px;
    color: #0ea5e9;
    cursor: pointer;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.9);
    color: white;
    font-weight: bold;
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
    transition: 0.3s ease;
}

.btn:hover {
    background: #0284c7;
    transform: translateY(-3px);
}

.btn.light {
    background: rgba(255, 255, 255, 0.55);
    color: #0ea5e9;
    border: 1px solid rgba(14, 165, 233, 0.45);
    backdrop-filter: blur(12px);
}

/* HOME / INVITE BASE */

.home-hero {
    min-height: 90vh;
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 45px;
    align-items: center;
}

.hero-left {
    padding: 45px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 70px rgba(56, 189, 248, 0.18);
}

.hero-badge,
.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 22px;
}

.hero-left h1 span {
    color: #0ea5e9;
}

.hero-left p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    max-width: 720px;
}

.hero-buttons {
    justify-content: flex-start;
    margin-top: 30px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.hero-stat,
.hero-stats div {
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.hero-stats h3 {
    color: #0ea5e9;
    font-size: 30px;
}

.hero-stats p {
    margin: 0;
    font-size: 14px;
}

.player-card {
    padding: 38px 28px;
    border-radius: 38px;
    text-align: center;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 30px 80px rgba(14, 165, 233, 0.22);
    animation: floatCard 4s ease-in-out infinite;
}

.player-top img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    padding: 7px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 45px rgba(56, 189, 248, 0.55);
}

.player-card h2 {
    color: #0f172a;
    font-size: 30px;
    margin-top: 24px;
}

.player-card p {
    color: #475569;
    margin-top: 10px;
}

.music-bars {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 8px;
    height: 55px;
    margin: 30px 0;
}

.music-bars span {
    width: 9px;
    border-radius: 20px;
    background: #0ea5e9;
    animation: musicBar 1s ease-in-out infinite;
}

.music-bars span:nth-child(1) {
    height: 25px;
    animation-delay: 0s;
}

.music-bars span:nth-child(2) {
    height: 42px;
    animation-delay: 0.15s;
}

.music-bars span:nth-child(3) {
    height: 32px;
    animation-delay: 0.3s;
}

.music-bars span:nth-child(4) {
    height: 48px;
    animation-delay: 0.45s;
}

.music-bars span:nth-child(5) {
    height: 28px;
    animation-delay: 0.6s;
}

.player-control {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.player-control button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(14, 165, 233, 0.16);
}

.player-control .play {
    background: #0ea5e9;
    transform: scale(1.18);
}

/* GENERAL */

.section {
    padding: 70px 8%;
    text-align: center;
}

.section h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #0f172a;
}

.section p {
    color: #475569;
    max-width: 750px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(18px);
    padding: 30px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.16);
    text-align: center;
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 45px rgba(56, 189, 248, 0.20);
}

.card h3 {
    color: #0ea5e9;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 0;
    font-size: 14px;
    color: #334155;
}

.premium-section {
    margin: 20px 8%;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.feature-box {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.55);
    color: #0ea5e9;
    font-weight: 700;
    box-shadow: 0 14px 35px rgba(56, 189, 248, 0.12);
}

.cta-section {
    margin: 70px 8%;
    padding: 55px 30px;
    text-align: center;
    border-radius: 38px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.16), rgba(255, 255, 255, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 25px 65px rgba(56, 189, 248, 0.18);
}

.cta-section h2 {
    font-size: 40px;
    color: #0f172a;
    margin-bottom: 14px;
}

.cta-section p {
    color: #475569;
    margin-bottom: 28px;
}

/* COMMANDS / FAQ CARD STYLE */

.commands-header {
    text-align: center;
    margin-bottom: 35px;
}

.commands-header span {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}

.commands-header h2 {
    font-size: 46px;
    margin-bottom: 12px;
}

.commands-page {
    position: relative;
}

.command-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 520px;
    margin: 30px auto 45px;
}

.stat-box {
    padding: 24px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 45px rgba(56, 189, 248, 0.12);
    overflow: hidden;
}

.stat-box h3 {
    font-size: 36px;
    color: #0284c7;
    margin-bottom: 10px;
}

.stat-box p {
    color: #64748b;
}

.command-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.command-block {
    position: relative;
    padding: 30px;
    border-radius: 32px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.10);
    transition: 0.35s ease;
}

.command-block:hover {
    transform: translateY(-10px);
    border-color: rgba(14, 165, 233, 0.30);
    box-shadow: 0 28px 60px rgba(56, 189, 248, 0.18);
}

.command-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.cmd-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f7ff, #bdeeff);
    color: #0284c7;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.9), 0 14px 28px rgba(56, 189, 248, 0.16);
}

.cmd-icon i {
    font-size: 22px;
    line-height: 1;
}

.command-top h3 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 22px;
    font-weight: 700;
}

.command-top span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.10);
    color: #0284c7;
    font-size: 12px;
    font-weight: 700;
}

.command-block p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 15px;
}

/* PREMIUM TEAM PAGE */

.premium-team-hero {
    position: relative;
    padding: 90px 8% 50px;
    text-align: center;
    overflow: hidden;
}

.premium-team-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.22), transparent 35%),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, 0.18), transparent 35%);
}

.premium-team-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
}

.team-mini-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-weight: 800;
    margin-bottom: 20px;
}

.premium-team-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 18px;
}

.premium-team-content h1 span {
    color: #0ea5e9;
}

.premium-team-content p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
}

.premium-team-section {
    padding: 30px 8% 80px;
}

.premium-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.premium-member-card {
    position: relative;
    padding: 32px 24px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.14);
    overflow: hidden;
    transition: 0.35s ease;
}

.premium-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(56, 189, 248, 0.18);
}

.member-top-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(14, 165, 233, 0.12);
    border-radius: 50%;
    top: -80px;
    right: -80px;
}

.premium-member-card img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    padding: 5px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 28px rgba(56, 189, 248, 0.35);
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.premium-member-card h3 {
    font-size: 26px;
    color: #0f172a;
    margin-bottom: 6px;
}

.member-username {
    color: #64748b;
    margin-bottom: 14px;
}

.member-role {
    display: inline-block;
    padding: 9px 16px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    font-weight: 800;
    font-size: 13px;
}

.founder {
    background: rgba(234, 179, 8, 0.14);
    color: #ca8a04;
}

.developer {
    background: rgba(14, 165, 233, 0.14);
    color: #0284c7;
}

.admin {
    background: rgba(168, 85, 247, 0.14);
    color: #9333ea;
}

.moderator {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

.premium-team-cta {
    margin: 0 8% 70px;
    padding: 50px 25px;
    text-align: center;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 20px 55px rgba(56, 189, 248, 0.14);
}

.premium-team-cta h2 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 12px;
}

.premium-team-cta p {
    color: #475569;
    margin-bottom: 25px;
}

/* INVITE PROFILE */

.invite-profile-card {
    text-align: left;
    padding: 35px;
}

.bot-profile-top {
    display: flex;
    align-items: center;
    gap: 18px;
}

.bot-profile-top img {
    width: 85px;
    height: 85px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 30px rgba(56, 189, 248, 0.45);
}

.bot-profile-top h2 {
    margin: 0;
    font-size: 28px;
}

.online-status {
    color: #22c55e;
    font-size: 14px;
    font-weight: 700;
}

.profile-divider {
    width: 100%;
    height: 1px;
    background: rgba(14, 165, 233, 0.12);
    margin: 24px 0;
}

.premium-feature-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.premium-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #0284c7;
    font-weight: 800;
}

.premium-feature-item span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0ea5e9;
    box-shadow: 0 0 12px rgba(14, 165, 233, 0.8);
}

.premium-command-box {
    margin-top: 20px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(14, 165, 233, 0.10);
    border: 1px solid rgba(14, 165, 233, 0.18);
}

.premium-command-box div {
    color: #0f172a;
    font-weight: 700;
    margin: 6px 0;
}

.command-note-clean {
    margin-top: 20px;
    color: #0ea5e9;
    font-weight: 700;
}

/* SUPPORT */

.support-hero {
    min-height: 82vh;
    padding: 90px 8%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
}

.support-main {
    padding: 50px;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 70px rgba(56, 189, 248, 0.16);
}

.support-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-weight: 700;
    margin-bottom: 24px;
}

.support-avatar img {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    padding: 5px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 32px rgba(56, 189, 248, 0.45);
    margin-bottom: 22px;
}

.support-main h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 20px;
}

.support-main h1 span {
    color: #0ea5e9;
}

.support-main p {
    color: #475569;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 30px;
}

.support-panel {
    display: grid;
    gap: 18px;
}

.support-row,
.support-info-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.12);
    transition: 0.3s ease;
}

.support-row:hover {
    transform: translateX(-8px);
}

.support-row h3,
.support-info-card h3 {
    color: #0ea5e9;
    margin-bottom: 10px;
}

.support-row p,
.support-info-card p {
    color: #475569;
    line-height: 1.7;
}

.support-grid-section {
    padding: 40px 8% 80px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.support-info-card {
    text-align: center;
}

.support-cta {
    margin: 20px 8% 70px;
    padding: 55px 30px;
    border-radius: 38px;
    text-align: center;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.18), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 25px 65px rgba(56, 189, 248, 0.16);
}

.support-cta h2 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 12px;
}

.support-cta p {
    color: #475569;
    margin-bottom: 25px;
}

/* FAQ */

.faq-page {
    padding: 80px 8%;
}

.faq-profile {
    max-width: 950px;
    margin: 0 auto 55px;
    padding: 38px;
    border-radius: 36px;
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 28px 70px rgba(56, 189, 248, 0.16);
}

.faq-profile img {
    width: 115px;
    height: 115px;
    border-radius: 50%;
    object-fit: cover;
    padding: 6px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.45);
}

.faq-profile span {
    color: #0ea5e9;
    font-weight: 800;
}

.faq-profile h1 {
    font-size: 46px;
    color: #0f172a;
    margin: 8px 0;
}

.faq-profile p {
    color: #475569;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.faq-card {
    padding: 32px;
    border-radius: 32px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.12);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(56, 189, 248, 0.18);
}

.faq-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 20px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #dff5ff, #bfeeff);
    color: #0284c7;
    font-size: 22px;
}

.faq-card h3 {
    color: #0f172a;
    font-size: 21px;
    margin-bottom: 12px;
}

.faq-card span {
    display: inline-block;
    padding: 7px 15px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 22px;
}

.faq-card p {
    color: #475569;
    line-height: 1.7;
}

/* FOOTER */

footer {
    padding: 25px 8%;
    text-align: center;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(18px);
    color: #64748b;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
}

/* ANIMATIONS */

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

@keyframes musicBar {

    0%,
    100% {
        transform: scaleY(0.65);
    }

    50% {
        transform: scaleY(1.2);
    }
}

/* RESPONSIVE */

@media (max-width: 1100px) {

    .command-list,
    .cards,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .premium-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .home-hero {
        grid-template-columns: 1fr;
        padding: 60px 5%;
    }

    .hero-left h1 {
        font-size: 44px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {

    .support-hero,
    .support-grid-section {
        grid-template-columns: 1fr;
        padding-left: 5%;
        padding-right: 5%;
    }

    .support-main {
        padding: 35px 24px;
    }

    .support-main h1 {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .menu-btn {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 82px;
        left: 5%;
        width: 90%;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        display: none;
        border-radius: 22px;
        box-shadow: 0 18px 35px rgba(56, 189, 248, 0.18);
    }

    .navbar.active {
        display: flex;
    }

    .section {
        padding: 55px 5%;
    }

    .cards,
    .command-list,
    .command-stats,
    .premium-team-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .hero-left {
        padding: 32px 22px;
    }

    .hero-left h1,
    .premium-team-content h1 {
        font-size: 36px;
    }

    .hero-stats,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cta-section h2,
    .premium-team-cta h2 {
        font-size: 30px;
    }

    .faq-profile {
        flex-direction: column;
        text-align: center;
    }

    .faq-profile h1 {
        font-size: 34px;
    }
}

.team-list-new .team-person>img,
.team-person img {
    width: 105px !important;
    height: 105px !important;
    max-width: 105px !important;
    min-width: 105px !important;
    max-height: 105px !important;
    object-fit: cover !important;
    border-radius: 28px !important;
    display: block !important;
}

/* FINAL TEAM FIX */
.team-page-new {
    padding: 80px 8% !important;
}

.team-list-new {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
}

.team-person {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    padding: 28px !important;
    border-radius: 32px !important;
    background: rgba(255, 255, 255, 0.58) !important;
    overflow: hidden !important;
}

.team-person img {
    width: 105px !important;
    height: 105px !important;
    max-width: 105px !important;
    max-height: 105px !important;
    min-width: 105px !important;
    object-fit: cover !important;
    border-radius: 24px !important;
    display: block !important;
}

.team-person h3 {
    font-size: 26px !important;
}

@media (max-width: 800px) {
    .team-list-new {
        grid-template-columns: 1fr !important;
    }
}

/* PREMIUM TEAM FINAL UI */

.team-page-new {
    padding: 85px 8% !important;
}

.team-head-new {
    max-width: 900px !important;
    margin: 0 auto 60px !important;
    text-align: center !important;
}

.team-head-new span {
    display: inline-block !important;
    padding: 10px 22px !important;
    border-radius: 999px !important;
    background: rgba(14, 165, 233, 0.12) !important;
    color: #0ea5e9 !important;
    font-weight: 800 !important;
    margin-bottom: 18px !important;
}

.team-head-new h1 {
    font-size: 56px !important;
    color: #0f172a !important;
    margin-bottom: 14px !important;
}

.team-head-new p {
    color: #475569 !important;
    font-size: 18px !important;
}

.team-list-new {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 28px !important;
}

.team-person {
    min-height: 330px !important;
    padding: 34px 24px !important;
    border-radius: 36px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    position: relative !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.78) !important;
    backdrop-filter: blur(22px) !important;
    box-shadow: 0 22px 60px rgba(56, 189, 248, 0.14) !important;
    transition: 0.35s ease !important;
}

.team-person:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 34px 80px rgba(56, 189, 248, 0.22) !important;
}

.team-person::before {
    content: "" !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 6px !important;
    background: linear-gradient(90deg, #38bdf8, #0ea5e9) !important;
}

.team-person::after {
    content: "" !important;
    position: absolute !important;
    right: -60px !important;
    top: -60px !important;
    width: 170px !important;
    height: 170px !important;
    border-radius: 50% !important;
    background: rgba(14, 165, 233, 0.12) !important;
}

.team-person img {
    width: 118px !important;
    height: 118px !important;
    min-width: 118px !important;
    max-width: 118px !important;
    max-height: 118px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    padding: 5px !important;
    background: linear-gradient(135deg, #38bdf8, #ffffff) !important;
    box-shadow: 0 0 35px rgba(56, 189, 248, 0.42) !important;
    margin-bottom: 22px !important;
    position: relative !important;
    z-index: 2 !important;
}

.team-person h3 {
    font-size: 28px !important;
    color: #0f172a !important;
    margin-bottom: 6px !important;
    position: relative !important;
    z-index: 2 !important;
}

.team-person p {
    color: #64748b !important;
    margin-bottom: 16px !important;
    position: relative !important;
    z-index: 2 !important;
}

.team-person span {
    display: inline-block !important;
    padding: 10px 18px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    background: rgba(14, 165, 233, 0.13) !important;
    color: #0284c7 !important;
    position: relative !important;
    z-index: 2 !important;
}

.founder-card span {
    background: rgba(234, 179, 8, 0.16) !important;
    color: #ca8a04 !important;
}

.dev-card span {
    background: rgba(14, 165, 233, 0.15) !important;
    color: #0284c7 !important;
}

.admin-card span {
    background: rgba(168, 85, 247, 0.14) !important;
    color: #9333ea !important;
}

.mod-card span {
    background: rgba(34, 197, 94, 0.14) !important;
    color: #16a34a !important;
}

@media (max-width: 1100px) {
    .team-list-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 700px) {
    .team-list-new {
        grid-template-columns: 1fr !important;
    }

    .team-head-new h1 {
        font-size: 38px !important;
    }
}

.team-clean-page {
    padding: 70px 8% 90px;
}

.team-clean-head {
    text-align: center;
    margin-bottom: 45px;
}

.team-clean-head span {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-weight: 800;
    margin-bottom: 14px;
}

.team-clean-head h1 {
    font-size: 46px;
    color: #0f172a;
    margin-bottom: 10px;
}

.team-clean-head p {
    color: #64748b;
}

.team-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.team-clean-card {
    min-height: 235px;
    padding: 24px 18px;
    border-radius: 28px;
    text-align: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 16px 38px rgba(56, 189, 248, 0.12);
    transition: 0.3s ease;
}

.team-clean-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(56, 189, 248, 0.18);
}

.team-clean-card img {
    width: 86px !important;
    height: 86px !important;
    max-width: 86px !important;
    max-height: 86px !important;
    object-fit: cover !important;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 24px rgba(56, 189, 248, 0.35);
    margin-bottom: 16px;
}

.team-clean-card h3 {
    color: #0f172a;
    font-size: 22px;
    margin-bottom: 5px;
}

.team-clean-card p {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 13px;
}

.team-clean-card span {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    background: rgba(14, 165, 233, 0.12);
    color: #0284c7;
}

.team-clean-card.founder-card span {
    background: rgba(234, 179, 8, 0.16);
    color: #ca8a04;
}

.team-clean-card.dev-card span {
    background: rgba(14, 165, 233, 0.14);
    color: #0284c7;
}

.team-clean-card.admin-card span {
    background: rgba(168, 85, 247, 0.14);
    color: #9333ea;
}

.team-clean-card.mod-card span {
    background: rgba(34, 197, 94, 0.14);
    color: #16a34a;
}

@media (max-width: 1100px) {
    .team-clean-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 800px) {
    .team-clean-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .team-clean-grid {
        grid-template-columns: 1fr;
    }
}

.team-intro-box {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 35px;
    align-items: center;
    margin-bottom: 55px;
}

.team-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(14, 165, 233, 0.12);
    color: #0ea5e9;
    font-weight: 800;
    margin-bottom: 22px;
}

.team-intro-left h1 {
    font-size: 58px;
    line-height: 1.08;
    color: #0f172a;
    margin-bottom: 20px;
}

.team-intro-left h1 span {
    color: #0ea5e9;
}

.team-intro-left p {
    color: #475569;
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
}

.team-bot-profile {
    padding: 32px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    box-shadow: 0 24px 60px rgba(56, 189, 248, 0.14);
}

.team-bot-top {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.team-bot-top img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    padding: 4px;
    background: linear-gradient(135deg, #38bdf8, #ffffff);
    box-shadow: 0 0 26px rgba(56, 189, 248, 0.35);
}

.team-bot-top h3 {
    font-size: 28px;
    color: #0f172a;
    margin-bottom: 6px;
}

.team-bot-top span {
    color: #22c55e;
    font-weight: 700;
}

.team-bot-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.team-bot-features div {
    padding: 15px;
    border-radius: 18px;
    text-align: center;
    background: rgba(14, 165, 233, 0.08);
    color: #0284c7;
    font-weight: 700;
}

@media (max-width: 950px) {

    .team-intro-box {
        grid-template-columns: 1fr;
    }

    .team-intro-left h1 {
        font-size: 40px;
    }

}

.team-info-card {
    padding: 34px !important;
    border-radius: 34px !important;
    background: rgba(255, 255, 255, 0.58) !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 0 24px 60px rgba(56, 189, 248, 0.14) !important;
}

.team-info-card h3 {
    font-size: 34px !important;
    color: #0f172a !important;
    margin-bottom: 18px !important;
}

.team-info-card p {
    color: #475569 !important;
    line-height: 1.8 !important;
    margin-bottom: 26px !important;
    font-size: 16px !important;
}

.team-info-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
    margin-top: 18px !important;
}

.team-info-list div {
    padding: 16px !important;
    border-radius: 18px !important;
    text-align: center !important;
    background: rgba(14, 165, 233, 0.08) !important;
    color: #0284c7 !important;
    font-weight: 700 !important;
    border: 1px solid rgba(14, 165, 233, 0.10) !important;
}

.team-info-card .music-bars {
    margin-top: 35px !important;
}

.team-socials {
    margin-top: 18px;
}

.team-socials a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 11px 18px;
    border-radius: 14px;

    background: rgba(88, 101, 242, 0.10);
    color: #5865F2;

    font-size: 13px;
    font-weight: 800;

    transition: 0.3s ease;
}

.team-socials a i {
    font-size: 16px;
}

.team-socials a:hover {
    background: #5865F2;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(88, 101, 242, 0.25);
}

/* PREFIX BOX */

.prefix-box {
    margin: 0 auto 50px;
    padding: 35px;
    border-radius: 34px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 35px;

    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(20px);

    box-shadow: 0 24px 60px rgba(56, 189, 248, 0.12);
}

.prefix-badge {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;

    background: rgba(14, 165, 233, 0.10);

    color: #0ea5e9;

    font-size: 13px;
    font-weight: 800;

    margin-bottom: 18px;
}

.prefix-left h2 {
    font-size: 38px;
    color: #0f172a;
    margin-bottom: 12px;
}

.prefix-left p {
    color: #475569;
    line-height: 1.7;
    max-width: 550px;
}

.prefix-right {
    display: flex;
    gap: 18px;
}

.prefix-command {
    min-width: 180px;

    padding: 24px;

    border-radius: 24px;

    text-align: center;

    background: rgba(14, 165, 233, 0.08);

    border: 1px solid rgba(14, 165, 233, 0.10);
}

.prefix-command span {
    display: block;
    color: #64748b;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 700;
}

.prefix-command h3 {
    font-size: 36px;
    color: #0284c7;
}

.prefix-command.slash {
    background: rgba(88, 101, 242, 0.08);
    border: 1px solid rgba(88, 101, 242, 0.10);
}

.prefix-command.slash h3 {
    color: #5865F2;
}

@media (max-width: 850px) {

    .prefix-box {
        flex-direction: column;
        text-align: center;
    }

    .prefix-right {
        width: 100%;
        flex-direction: column;
    }

}

.prefix-mini-box {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    width: fit-content;

    padding: 16px 24px;

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.58);

    border: 1px solid rgba(255, 255, 255, 0.75);

    backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.10);

    margin-top: 24px;
}

.prefix-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.prefix-mini-item span {
    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(14, 165, 233, 0.08);

    color: #64748b;

    font-size: 14px;
    font-weight: 700;
}

.prefix-mini-item code {
    padding: 10px 14px;

    border-radius: 12px;

    background: rgba(14, 165, 233, 0.10);

    color: #0284c7;

    font-size: 14px;
    font-weight: 800;
}

.prefix-divider {
    width: 1px;
    height: 30px;
    background: rgba(100, 116, 139, 0.15);
}

.prefix-center {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(14, 165, 233, 0.10);

    color: #0284c7;

    font-size: 18px;
    font-weight: 800;
}

.bot-profile {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
}

.bot-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;

    border: 4px solid rgba(120, 190, 255, 0.4);

    box-shadow:
        0 0 30px rgba(120, 190, 255, 0.25);
}

.bot-profile h1 {
    font-size: 52px;
    color: #4bb4ff;
    margin-bottom: 15px;
    font-weight: 800;

    text-shadow:
        0 0 20px rgba(75, 180, 255, 0.35);
}

.bot-profile p {
    max-width: 760px;
    line-height: 1.8;
    color: #4d6f8c;
    font-size: 17px;
    font-weight: 500;
}

.bot-profile {
    padding-top: 30px;
}