:root {
    --primary: #00e5ff;
    --primary-glow: rgba(0, 229, 255, 0.5);
    --bg: #020608;
    --surface: rgba(6, 15, 20, 0.85);
    --surface-hover: rgba(10, 25, 32, 0.95);
    --border: rgba(0, 229, 255, 0.15);
    --text-main: #e6f7ff;
    --text-muted: #8ba6ad;
    --whatsapp-green: #25d366;
    --discord-blurple: #5865F2;
    --dc-sidebar: #2b2d31;
    --glow-cyan: 0 0 20px rgba(0, 229, 255, 0.3);
    --discord-green: #23a55a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background-color: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    cursor: url('../normal.cur'), auto;
    -webkit-touch-callout: none;
}

a,
button,
.social-tile,
.server-card,
.dc-join-btn,
.contact-pill,
.join-btn-wa {
    cursor: url('../normal.cur'), pointer;
}

.right-click-cursor,
.right-click-cursor * {
    cursor: url('../sag.cur'), auto !important;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: url('../bg.jpg') no-repeat center center;
    background-size: cover;
    filter: brightness(0.4) contrast(1.1) saturate(0.8);
    animation: kenBurns 40s linear infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.bg-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 6, 8, 0.4) 50%, rgba(2, 6, 8, 0.85) 100%);
    backdrop-filter: blur(8px);
    z-index: -1;
}

.bg-vignette {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
    z-index: -1;
    pointer-events: none;
}

.app-container {
    display: grid;
    grid-template-columns: 320px 1fr 330px;
    gap: 24px;
    max-width: 1550px;
    height: 100vh;
    margin: 0 auto;
    padding: 24px;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    animation: slideUp 0.6s ease-out both;
    max-height: calc(100vh - 48px);
    transition: border-color 0.4s, box-shadow 0.4s;
    position: relative;
}

.panel::before {
    display: none;
}

.panel:hover {
    border-color: rgba(0, 229, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

.panel-header {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.discord-scroller {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(43, 45, 49, 0.4);
    display: flex;
    flex-direction: column;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.dc-header-banner {
    width: 100%;
    height: 110px;
    position: relative;
    overflow: hidden;
    background: #2b2d31;
    border-bottom: 2px solid rgba(0, 229, 255, 0.1);
    flex-shrink: 0;
}

.dc-header-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    filter: brightness(0.8) contrast(1.1);
    transition: opacity 0.5s;
}

.dc-header-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 20%, rgba(30, 31, 34, 0.8) 70%, rgba(30, 31, 34, 1));
    z-index: 1;
}

.dc-info-row {
    padding: 0 16px 10px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-top: -65px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.dc-pfp {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #1e1f22;
    border: 4px solid var(--dc-sidebar);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.dc-pfp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dc-server-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dc-server-title p {
    font-size: 9px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin: 0;
}

.dc-stats-bar {
    display: flex;
    gap: 8px;
    padding: 10px 16px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), transparent);
    flex-shrink: 0;
}

.dc-stat-item {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    transition: 0.3s;
    box-shadow: inset 0 0 10px rgba(0, 229, 255, 0.05);
}

.dc-stat-item:hover {
    background: rgba(0, 229, 255, 0.05);
    border-color: var(--primary);
}

.dc-stat-val {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
}

.dc-stat-lbl {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.dot-cyan {
    background: var(--primary);
    box-shadow: 0 0 6px var(--primary);
}

.dot-green {
    background: var(--discord-green);
    box-shadow: 0 0 6px var(--discord-green);
}

.dc-active-text {
    color: var(--discord-green);
    font-weight: 700;
}

.dc-category {
    padding: 10px 16px 2px;
    font-size: 11px;
    font-weight: 700;
    color: #949ba4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    opacity: 0.8;
}

.dc-item {
    padding: 3px 10px;
    margin: 1px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #949ba4;
    cursor: url('../normal.cur'), pointer;
    transition: 0.2s;
}

.dc-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #dbdee1;
}

.dc-item.active {
    background: rgba(0, 229, 255, 0.1);
    color: #fff;
    border-left: 2px solid var(--primary);
}

.dc-item i {
    width: 18px;
    text-align: center;
    color: var(--text-muted);
}

.dc-item .emoji {
    font-size: 14px;
    margin-right: 4px;
}

.dc-voice-users {
    margin: 2px 8px 6px 42px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dc-user {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #dbdee1;
    padding: 2px 8px;
    border-radius: 6px;
    transition: 0.2s;
    cursor: url('../normal.cur'), pointer;
}

.dc-user:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #fff;
}

.dc-user-avatar {
    position: relative;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.dc-user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dc-status {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 2px solid #1e1f22;
}

.status-online {
    background: #23a55a;
}

.status-idle {
    background: #f0b232;
}

.status-dnd {
    background: #f23f43;
}

.badge-live {
    background: #f23f43;
    color: #fff;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 4px;
    font-weight: 800;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(242, 63, 67, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.dc-footer {
    padding: 16px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.dc-join-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--discord-blurple);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    transition: 0.3s;
    cursor: url('../normal.cur'), pointer;
    position: relative;
    z-index: 11;
}

.dc-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
    background: #4752c4;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.hero-glass-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 60px 40px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-height: calc(100vh - 48px);
    width: 100%;
    overflow: hidden;
}


.hero-glass-box::-webkit-scrollbar {
    display: none;
}

.hero-glass-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
    z-index: 0;
}



@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.main-logo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto;
    will-change: transform;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

.main-logo-ring {
    position: absolute;
    inset: -12px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-right-color: transparent;
    border-left-color: transparent;
    animation: rotate 8s linear infinite;
    opacity: 0.4;
    will-change: transform;
}

.main-logo-ring-outer {
    position: absolute;
    inset: -30px;
    border: 1px dashed var(--primary);
    border-radius: 50%;
    animation: rotate 25s linear infinite reverse;
    opacity: 0.2;
}

.main-logo-ring-third {
    position: absolute;
    inset: -35px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    border-top-color: transparent;
    border-bottom-color: transparent;
    animation: rotate 15s linear infinite;
    opacity: 0.1;
}

.main-logo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid var(--bg);
    outline: 2px solid var(--primary);
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: 0.5s;
}

.main-logo-wrap:hover .main-logo {
    transform: scale(1.05);
    outline-width: 6px;
}

.brand-title {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 800;
    letter-spacing: 8px;
    margin: 0;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, var(--primary), #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px auto;
    border-radius: 2px;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    display: none;
}

.social-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-tag {
    font-size: 11px;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    font-family: 'Outfit', sans-serif;
    position: relative;
}

.server-container,
.contact-container {
    border-top: 1px solid rgba(0, 229, 255, 0.1);
    padding-top: 35px;
    margin-top: 15px;
    width: 100%;
}

.partner-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.dot-cyan {
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.social-links {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-tile {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    overflow: hidden;
    position: relative;
}

.social-tile:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.12);
    box-shadow: 0 15px 35px rgba(0, 229, 255, 0.4), 0 0 20px rgba(0, 229, 255, 0.2);
    color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
    overflow: hidden;
}

.social-tile::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: rotate(45deg);
    transition: 0.6s;
    pointer-events: none;
}

.social-tile:hover::after {
    left: 100%;
}

.server-container {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.server-container::before {
    display: none;
}

.server-grid {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.server-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
    padding: 15px 25px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.server-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.8s;
}

.server-card:hover::before {
    transform: translateX(100%);
}

.server-card:hover {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 229, 255, 0.2);
}

.server-img {
    height: 40px;
    filter: brightness(0.9) grayscale(0.1);
    transition: 0.5s;
    object-fit: contain;
}

.server-card:hover .server-img {
    filter: brightness(1.2) grayscale(0) drop-shadow(0 0 15px var(--primary));
}

.contact-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-container::before {
    display: none;
}

.contact-pill {
    background: rgba(0, 229, 255, 0.03);
    border: 1px solid var(--border);
    padding: 12px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.contact-pill:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.2);
    transform: translateY(-3px);
}

.contact-pill i {
    color: var(--primary);
    font-size: 16px;
    animation: iconPulse 3s infinite;
}

.contact-pill span {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
}

.wa-container {
    background: transparent;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.wa-header {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.08), rgba(0, 229, 255, 0.01));
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.wa-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.1);
}

.wa-header-info h4 {
    font-size: 15px;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.wa-header-info h4 i {
    color: var(--primary);
    font-size: 14px;
}

.wa-header-info p {
    font-size: 12px;
    color: #8696a0;
    margin: 2px 0 0;
}

.wa-messages {
    flex: 1;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    background-color: #0b141a;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
    background-size: 380px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    opacity: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

.wa-bubble {
    background: #1e2a30;
    padding: 8px;
    border-radius: 12px;
    max-width: 95%;
    align-self: flex-start;
    position: relative;
    box-shadow: 0 1px 0.5px rgba(0, 0, 0, 0.13);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.wa-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin: 2px 4px 6px;
    display: block;
}

.wa-msg-img {
    width: 100%;
    border-radius: 8px;
    margin: 0 0 8px;
    display: block;
    object-fit: cover;
}

.wa-text {
    font-size: 14.5px;
    color: #e9edef;
    line-height: 1.5;
    margin: 0 4px 18px 4px;
}

.wa-text a {
    color: #53bdeb;
    text-decoration: none;
}

.wa-text a:hover {
    text-decoration: underline;
}

.wa-time {
    position: absolute;
    bottom: 6px;
    right: 10px;
    font-size: 11px;
    color: #8696a0;
}

.wa-reactions-row {
    position: absolute;
    bottom: -15px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-reaction-pill {
    background: #1e2a30;
    border: 1px solid #202c33;
    padding: 3px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.wa-reaction-pill .emoji-stack {
    display: flex;
    margin-right: 6px;
}

.wa-reaction-pill .emoji-stack span {
    font-size: 14px;
    margin-right: -4px;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.wa-reaction-pill .count {
    font-size: 11px;
    color: #8696a0;
    font-weight: 600;
    margin-left: 2px;
}

.wa-share-icon {
    width: 32px;
    height: 32px;
    background: rgba(30, 42, 48, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8696a0;
    font-size: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.wa-share-icon:hover {
    background: #374045;
    color: #fff;
}

.wa-text {
    font-size: 13.5px;
    color: #e9edef;
    line-height: 1.5;
    margin-bottom: 8px;
}

.wa-msg-img {
    width: 100%;
    border-radius: 10px;
    margin: 8px 0;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.3s;
    cursor: pointer;
}

.wa-msg-img:hover {
    filter: brightness(1.1);
    transform: scale(1.01);
}

.wa-text a {
    color: var(--primary);
    text-decoration: underline !important;
    text-underline-offset: 3px;
    opacity: 0.9;
    transition: 0.3s;
}

.wa-text a:hover {
    opacity: 1;
    text-shadow: 0 0 8px var(--primary);
}

.wa-reactions {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.wa-reaction-item {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wa-reaction-count {
    color: #8696a0;
    font-size: 9px;
    font-weight: 600;
}

.wa-time {
    font-size: 10px;
    color: #8696a0;
    text-align: right;
    margin-top: 6px;
}

.wa-loading-state {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.wa-loading-pulse {
    font-size: 13px;
    color: var(--primary);
    opacity: 0.6;
    font-weight: 700;
    letter-spacing: 1px;
    animation: waPulse 1.5s ease-in-out infinite;
}

@keyframes waPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(0.98);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.wa-footer {
    padding: 15px;
    background: #202c33;
    flex-shrink: 0;
}

.join-btn-wa {
    display: block;
    background: var(--whatsapp-green);
    color: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
}

.join-btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1000px) {
    body {
        height: auto;
        overflow: auto;
    }

    .app-container {
        grid-template-columns: 1fr;
        height: auto;
        padding: 12px;
    }

    .hero-glass-box {
        padding: 15px;
    }

    .panel {
        max-height: none;
    }

    .discord-scroller {
        max-height: none;
    }

    .discord-panel {
        min-height: 700px;

        .skeleton-icon,
        .skeleton-card,
        .skeleton-pill {
            background: linear-gradient(90deg, #1e2a30 25%, #2a3942 50%, #1e2a30 75%);
            background-size: 200% 100%;
            animation: skeleton-pulse 1.5s infinite linear;
            border-radius: 50%;
        }

        .skeleton-icon {
            width: 45px;
            height: 45px;
        }

        .skeleton-card {
            width: 100%;
            height: 60px;
            border-radius: 12px;
        }

        .skeleton-pill {
            width: 100%;
            height: 50px;
            border-radius: 25px;
            margin-top: 10px;
        }

        @keyframes skeleton-pulse {
            0% {
                background-position: 200% 0;
            }

            100% {
                background-position: -200% 0;
            }
        }

        order: 2;
    }

    .wa-panel {
        order: 3;
    }
}