/* ═══════════════════════════════════════════════
   PROJECT ZENITH — Ultra Premium iOS Design System v3.0
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    /* iOS Dark System Colors - Warm Gold & Dark Depth */
    --bg-deepest: #000000;
    --bg-deep: #0e0a05;
    --bg-card: rgba(28, 22, 15, 0.45);
    --bg-card-hover: rgba(38, 30, 20, 0.6);
    --bg-glass: rgba(18, 14, 8, 0.55);
    --bg-glass-border: rgba(230, 183, 65, 0.25);

    /* Apple-inspired Accents - Golden Theme */
    --primary-color: #E6B741; /* Metallic Gold */
    --accent-gold-light: #F1CB6C; /* Light Metallic Gold */
    --accent-gold-dark: #C5921E; /* Rich Bronze Gold */
    --accent-blue: #0a84ff;
    --accent-green: #30d158;
    --accent-red: #ff453a;
    --text-primary: #fffbeb; /* Soft warm gold-white */
    --text-secondary: #ebd5b3; /* Soft muted gold */
    --text-muted: #a39480;

    --accent-glow: rgba(230, 183, 65, 0.3);
    --discord-color: #5865F2;
    --discord-glow: rgba(88, 101, 242, 0.25);
    --danger: #ff453a;

    /* Spacing & Borders */
    --section-gap: 60px;
    --card-radius: 24px;
    --card-padding: 35px;

    /* Animations */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.25, 1, 0.5, 1.2);
    --transition-smooth: 0.5s var(--ease-out-expo);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-deepest);
}

body {
    font-family: 'Cinzel', serif;
    background-color: transparent;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ─── Background & Ambient Light Leak Blobs ─── */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(9, 6, 2, 0.85) 100%),
        url('./assets/golden_dragon_bg.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Animated Apple-style Neon Back-Glows */
.background-overlay::before {
    content: '';
    position: fixed;
    top: -10%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.22) 0%, transparent 70%);
    filter: blur(130px);
    animation: driftOne 25s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: -1;
}

.background-overlay::after {
    content: '';
    position: fixed;
    bottom: -10%;
    right: -10%;
    width: 65vw;
    height: 65vw;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.16) 0%, transparent 70%);
    filter: blur(150px);
    animation: driftTwo 30s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: -1;
}

@keyframes driftOne {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: translate(8%, 12%) scale(1.15) rotate(180deg); opacity: 1; }
    100% { transform: translate(4%, -6%) scale(0.95) rotate(360deg); opacity: 0.8; }
}

@keyframes driftTwo {
    0% { transform: translate(0, 0) scale(1) rotate(0deg); opacity: 0.7; }
    50% { transform: translate(-10%, -8%) scale(1.2) rotate(-180deg); opacity: 0.9; }
    100% { transform: translate(8%, 4%) scale(1) rotate(-360deg); opacity: 0.7; }
}

/* ─── Typography ─── */
h1, h2, h3, .logo, .kings-names {
    font-family: 'Cinzel', serif;
    color: var(--text-primary);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-smooth);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-deepest);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════
   HEADER & FLOATING DOCK NAV (Dynamic Island/Dock Style)
   ═══════════════════════════════════════════════ */
header {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    position: relative;
}

nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(18, 18, 24, 0.6);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all var(--transition-smooth);
}

nav.scrolled {
    top: 12px;
    padding: 10px 24px;
    background: rgba(10, 10, 15, 0.85);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.4s var(--ease-spring);
    filter: brightness(1) drop-shadow(0 2px 10px rgba(255, 215, 0, 0.15));
}

.logo-img:hover {
    transform: scale(1.08);
    filter: brightness(1.1) drop-shadow(0 4px 15px rgba(255, 215, 0, 0.3));
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 550;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s var(--ease-out-expo);
    white-space: nowrap;
}

nav a:not(.cta-button):hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.cta-button {
    display: inline-block;
    white-space: nowrap;
    background: transparent;
    border: 1px solid var(--primary-color);
    padding: 8px 24px;
    border-radius: 40px;
    font-weight: 600;
    color: var(--primary-color);
    transition: all var(--transition-smooth);
}

.cta-button:hover {
    background: rgba(230, 183, 65, 0.15);
    color: var(--text-primary);
    border-color: var(--accent-gold-light);
    box-shadow: 0 4px 15px rgba(230, 183, 65, 0.2);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════ */
.hero h1 {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    margin-bottom: 16px;
    letter-spacing: -1.5px;
    font-weight: 800;
    line-height: 1.1;
    color: #E6B741;
    background: linear-gradient(135deg, #F1CB6C 0%, #E6B741 50%, #C5921E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes shineText {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.subtitle {
    font-size: 1.35rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: -0.2px;
}

.hero-stats {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 35px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.discord-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--primary-color);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    transition: all var(--transition-smooth);
}

.discord-btn:hover {
    background: rgba(230, 183, 65, 0.15);
    color: var(--text-primary);
    border-color: var(--accent-gold-light);
    box-shadow: 0 10px 25px rgba(230, 183, 65, 0.2);
    transform: translateY(-2px);
}

.discord-btn:active {
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   MAIN CONTENT & WIDGETS
   ═══════════════════════════════════════════════ */
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    z-index: 1;
}

/* iOS Widget Section style */
.glass-section {
    background: var(--bg-glass);
    backdrop-filter: blur(35px) saturate(190%);
    -webkit-backdrop-filter: blur(35px) saturate(190%);
    border: 1px solid var(--bg-glass-border);
    border-radius: var(--card-radius);
    padding: 50px var(--card-padding);
    margin-bottom: var(--section-gap);
    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    position: relative;
}

h2 {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 45px;
    letter-spacing: -0.5px;
}

h2::after {
    display: none; /* Removed line decoration to make layout cleaner/flatter */
}

/* ─── Grid Container ─── */
.grid-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

/* ─── iOS Cards/Widgets ─── */
.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px) saturate(170%);
    -webkit-backdrop-filter: blur(25px) saturate(170%);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    flex: 1 1 270px;
    max-width: 420px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.08),
        transparent
    );
    transform: skewX(-20deg);
    transition: none;
    pointer-events: none;
}

.card:hover {
    transform: scale(1.03) translateY(-6px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card:hover::after {
    left: 150%;
    transition: all 0.8s ease;
}

.card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: block;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

.card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: #fff;
    font-weight: 600;
}

.card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ─── Alliance Widget Cards ─── */
.alliance-card {
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: rgba(28, 28, 30, 0.5);
    justify-content: space-between;
}

.alliance-card h3 {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 16px;
    margin-bottom: 16px;
    min-height: auto;
    color: var(--text-primary);
}

.leader-info,
.plan-info {
    margin-bottom: 16px;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.leader-info h4,
.plan-info h4 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
}

.leader-info h4::before,
.plan-info h4::before {
    content: '●';
    font-size: 0.5rem;
    color: var(--primary-color);
}

.small-btn {
    text-align: center;
    margin-top: 10px;
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
    text-transform: none;
    transition: all 0.3s ease;
}

.small-btn:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* ─── List Widgets ─── */
.list-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    padding: 24px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.list-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.list-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
    flex-shrink: 0;
}

.list-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.list-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* ─── Contact & Direct DM ─── */
.contact-section {
    text-align: center;
}

.discord-link-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
}

.discord-dm-btn {
    background: rgba(88, 101, 242, 0.08) !important;
    border: 1px solid rgba(88, 101, 242, 0.2) !important;
    color: #fff !important;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 14px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.discord-dm-btn:hover {
    background: var(--discord-color) !important;
    border-color: var(--discord-color) !important;
    box-shadow: 0 8px 20px var(--discord-glow);
    transform: translateY(-2px);
}

/* ─── iOS Custom Discord Status Widget ─── */
.custom-discord-widget {
    background: rgba(88, 101, 242, 0.05);
    border: 1px solid rgba(88, 101, 242, 0.15);
    padding: 0;
    max-width: 350px;
    margin: 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.cdw-header {
    background: rgba(88, 101, 242, 0.2);
    border-bottom: 1px solid rgba(88, 101, 242, 0.15);
    color: #fff;
    padding: 16px;
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cdw-logo {
    height: 24px;
    width: auto;
}

.cdw-content {
    padding: 20px;
}

.cdw-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background-color: var(--accent-green);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-green);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ─── Animations & Reveal ─── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s var(--ease-out-expo) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Hero Buttons ─── */
.cta-button.big {
    display: inline-block;
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000 !important;
    background: linear-gradient(180deg, #F1CB6C 0%, #E6B741 50%, #C5921E 100%);
    border: none;
    border-radius: 50px;
    margin-right: 15px;
    box-shadow: 0 4px 15px rgba(230, 183, 65, 0.3);
}

.cta-button.big:hover {
    background: linear-gradient(180deg, #ffffff 0%, #F1CB6C 50%, #E6B741 100%);
    box-shadow: 0 6px 25px rgba(230, 183, 65, 0.5);
    transform: translateY(-2px);
}

/* ─── Kingdom & Alliance Leadership Specifics ─── */
.kingdom-card {
    background: rgba(28, 28, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.kingdom-card h3 {
    width: 100%;
    margin-bottom: 25px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.leadership-list-item {
    background: rgba(255, 255, 255, 0.02);
    border-left: 4px solid var(--primary-color);
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 0 12px 12px 0;
    transition: all 0.3s ease;
}

.leadership-list-item:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.04);
}

.leadership-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 2px;
}

.kings-special {
    background: rgba(255, 215, 0, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
}

.kings-names {
    color: var(--primary-color);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — MOBILE (Dynamic tab drawer & bottom stack)
   ═══════════════════════════════════════════════ */
.menu-toggle {
    display: none;
}

@media (max-width: 1024px) {
    nav ul {
        gap: 15px;
    }
    nav a {
        font-size: 0.85rem;
        padding: 6px 8px;
    }
    .cta-button {
        padding: 6px 16px;
    }
}

@media (max-width: 768px) {
    /* ─── Typography & Spacing ─── */
    .hero {
        margin-top: 60px;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 9vw, 3.5rem);
    }

    .subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* ─── Floating Dynamic Top Bar ─── */
    nav {
        top: 16px;
        width: 92%;
        padding: 10px 20px;
        border-radius: 24px;
    }

    .logo-img {
        height: 32px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 26px;
        height: 18px;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle span {
        display: block;
        height: 2.5px;
        width: 100%;
        background: var(--text-primary);
        border-radius: 3px;
        transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Hamburger Animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-10px);
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* iOS Glass Drawer Overlay */
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(18, 18, 24, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--ease-out-expo), padding 0.4s var(--ease-out-expo);
        border-radius: 0 0 24px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        gap: 0;
    }

    nav ul.active {
        max-height: 350px;
        padding: 20px 0;
    }

    nav ul li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(8px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    nav ul.active li {
        opacity: 1;
        transform: translateY(0);
    }

    nav ul.active li:nth-child(1) { transition-delay: 0.05s; }
    nav ul.active li:nth-child(2) { transition-delay: 0.1s; }
    nav ul.active li:nth-child(3) { transition-delay: 0.15s; }
    nav ul.active li:nth-child(4) { transition-delay: 0.2s; }

    nav a {
        display: block;
        padding: 14px 20px;
        font-size: 1.1rem;
    }

    nav ul li a.cta-button {
        display: inline-block;
        padding: 8px 32px;
        margin-top: 10px;
        width: auto;
    }

    /* ─── Layout Formatting ─── */
    main {
        padding: 20px 16px;
    }

    .glass-section {
        padding: 30px 20px;
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .card {
        padding: 24px 20px;
        border-radius: 18px;
    }

    .list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    /* Action Buttons */
    .discord-btn, .cta-button.big {
        width: 100%;
        justify-content: center;
        margin: 6px 0;
    }
}

/* ─── Custom Made Icons/Emojis ─── */
.custom-emoji-icon {
    width: 34px;
    height: 34px;
    vertical-align: middle;
    margin-right: 12px;
    filter: drop-shadow(0 2px 6px rgba(230, 183, 65, 0.4));
}

.custom-svg-emoji {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 12px;
    fill: url(#goldGradient);
    filter: drop-shadow(0 2px 6px rgba(230, 183, 65, 0.4));
}

/* Discord Mention Badge styling */
.discord-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(88, 101, 242, 0.15);
    color: #5865f2;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 550;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    border: 1px solid rgba(88, 101, 242, 0.25);
    cursor: pointer;
    vertical-align: middle;
}

.discord-badge i {
    font-size: 0.95em !important;
    display: inline-block !important;
    color: #5865f2 !important;
    margin: 0 4px 0 0 !important;
}

.discord-badge:hover {
    background: #5865f2;
    color: #ffffff !important;
    border-color: #5865f2;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(88, 101, 242, 0.3);
}

.discord-badge:hover i {
    color: #ffffff !important;
}
