body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Tajawal', Arial, sans-serif;
    color: #f3f3f3;
    direction: rtl;
    /* Dark glossy red/black background inspired by CABOO logo */
    background:
        radial-gradient(circle at top, rgba(255, 0, 0, 0.16) 0%, transparent 55%),
        radial-gradient(circle at bottom, rgba(120, 0, 0, 0.6) 0%, #020003 70%);
    background-color: #020003;
    background-attachment: fixed;
    animation: fadeInBody 1.2s cubic-bezier(.39,.58,.57,1) 0.1s both, backgroundPulse 22s ease-in-out infinite;
    opacity: 0;
    box-shadow: none;
}

/* subtle breathing for background red glow */
@keyframes backgroundPulse {
    0% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.06);
    }
    100% {
        filter: brightness(1);
    }
}

@keyframes fadeInBody {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); }
    100% { opacity: 1; transform: none; }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    background: #23232a;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb {
    background: #35363c;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #44454a;
}

.container {
    max-width: 480px;
    width: 88%;
    margin: 40px auto 50px auto;
    background: radial-gradient(circle at top, rgba(255,0,0,0.14) 0%, rgba(8, 0, 0, 0.96) 45%, rgba(0, 0, 0, 0.98) 100%);
    border-radius: 32px;
    box-shadow: 0 12px 50px rgba(0, 0, 0, 0.95), 0 0 35px rgba(255, 0, 0, 0.35);
    padding: 56px 28px 40px 28px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(10px) saturate(140%);
    border: 1.5px solid rgba(255, 0, 0, 0.35);
    transition: box-shadow 0.3s, border-color 0.3s, transform 0.35s;
    animation: cardFloat 10s ease-in-out infinite;
}
.container:hover {
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.98), 0 0 55px rgba(255, 0, 0, 0.55);
    border-color: rgba(255, 0, 0, 0.8);
    transform: translateY(-4px) scale(1.01);
}

@keyframes cardFloat {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
    100% {
        transform: translateY(0);
    }
}

.avatar-frame {
    display: none;
}

.avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #23232a;
    object-fit: cover;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out, filter 0.3s ease-out;
    box-shadow: 0 0 0 rgba(255,0,0,0.0);
    border: none;
    outline: none;
}
.avatar:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 0 28px rgba(255,0,0,0.75);
    filter: brightness(1.06);
}

.discord-name {
    color: #ff1a1a;
    font-weight: bold;
    font-size: 1.18em;
    margin-bottom: 10px;
    letter-spacing: 0.7px;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.7);
}

h1 {
    margin-bottom: 6px;
    font-size: 1.9em;
    letter-spacing: 1.2px;
    font-family: 'Tajawal', Arial, sans-serif;
    text-shadow: 0 0 18px rgba(255, 0, 0, 0.9);
    color: #ff2a2a;
    filter: none;
    position: relative;
    animation: titleGlow 4.6s ease-in-out infinite;
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.7), 0 0 28px rgba(0, 0, 0, 0.9);
    }
    50% {
        text-shadow: 0 0 22px rgba(255, 0, 0, 0.95), 0 0 34px rgba(255, 0, 0, 0.7);
    }
    100% {
        text-shadow: 0 0 12px rgba(255, 0, 0, 0.7), 0 0 28px rgba(0, 0, 0, 0.9);
    }
}

.emoji {
    font-size: 1.1em;
    vertical-align: middle;
}

.subtitle {
    color: #ff6666;
    margin-bottom: 32px;
    font-size: 1.13em;
    text-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
    animation: subtitleFade 4.8s ease-in-out infinite;
}

@keyframes subtitleFade {
    0% {
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.85;
    }
}

.links {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 1.13em;
    font-weight: bold;
    text-decoration: none;
    color: #f3f3f3;
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.12) 0%, #050005 55%, #000 100%);
    border: 1.5px solid rgba(255, 0, 0, 0.5);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.9);
    letter-spacing: 0.7px;
    transition: background 0.18s, color 0.18s, box-shadow 0.14s, border 0.14s, transform 0.18s;
    position: relative;
    overflow: hidden;
    text-align: center;
    opacity: 0;
    transform: translateY(14px);
    animation: linkIn 0.7s cubic-bezier(.17,.67,.33,1.25) forwards;
}
.link:nth-child(1) { animation-delay: 0.2s; }
.link:nth-child(2) { animation-delay: 0.32s; }
.link:nth-child(3) { animation-delay: 0.44s; }
.link:nth-child(4) { animation-delay: 0.56s; }
.link:nth-child(5) { animation-delay: 0.68s; }
.link:nth-child(6) { animation-delay: 0.8s; }

@keyframes linkIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.link .icon {
    width: 28px;
    height: 28px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    margin-right: 0;
}
.link.tiktok {
    background: radial-gradient(circle at top, rgba(255, 0, 80, 0.2) 0%, #050005 55%, #000 100%);
    border-color: #ff0040;
}
.link.kick {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.15) 0%, #050005 55%, #000 100%);
    border-color: #ff1a1a;
    color: #f3f3f3;
}
.link.youtube {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.25) 0%, #050005 55%, #000 100%);
    border-color: #ff3333;
    color: #ffe5e5;
}
.link.facebook {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.15) 0%, #050005 55%, #000 100%);
    border-color: #ff1a1a;
    color: #f3f3f3;
}
.link.twitch {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.15) 0%, #050005 55%, #000 100%);
    border-color: #ff1a1a;
    color: #f3f3f3;
}
.link.discord {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.18) 0%, #050005 55%, #000 100%);
    border-color: #ff1a1a;
    color: #f3f3f3;
}
.link:hover {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.4) 0%, #150000 55%, #000 100%);
    color: #ffffff;
    border-color: #ff3333;
    transform: scale(1.07) translateY(-2px) rotate(-1deg);
    box-shadow: 0 12px 45px 0 rgba(255, 0, 0, 0.9), 0 0 25px rgba(255, 0, 0, 0.7);
    filter: brightness(1.08);
    z-index: 2;
}

@media (max-width: 700px) {
    .container {
        padding: 18px 8px 22px 8px;
        margin: 24px 8px 40px 8px;
        border-radius: 22px;
    }
    .avatar {
        width: 120px;
        height: 120px;
    }
    h1 {
        font-size: 1.1em;
    }
    .link {
        font-size: 0.98em;
        padding: 10px 0;
    }
    .link .icon {
        width: 20px;
        height: 20px;
    }
}

.action-btn {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.24) 0%, #050005 55%, #000 100%);
    color: #ffffff;
    border: 1.5px solid rgba(255, 0, 0, 0.7);
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 1.08em;
    font-weight: bold;
    cursor: pointer;
    margin: 0 2px;
    transition: background 0.18s, color 0.18s, border 0.18s, transform 0.18s, box-shadow 0.18s;
    box-shadow: 0 4px 14px rgba(0,0,0,0.7);
    letter-spacing: 0.5px;
    outline: none;
}
.action-btn:hover {
    background: radial-gradient(circle at top, rgba(255, 40, 40, 0.6) 0%, #200000 55%, #000 100%);
    color: #ffffff;
    border-color: #ff3333;
    transform: scale(1.07) translateY(-2px) rotate(-1deg);
    box-shadow: 0 10px 34px 0 rgba(255, 0, 0, 0.9), 0 0 22px rgba(255, 0, 0, 0.7);
    filter: brightness(1.05);
}
.donate-btn {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.7) 0%, #3b0000 55%, #000 100%);
    color: #ffffff;
    border-color: #ff3333;
}
.donate-btn:hover {
    background: radial-gradient(circle at top, rgba(255, 0, 0, 0.4) 0%, #150000 55%, #000 100%);
    color: #ffffff;
    border-color: #ff5555;
}

/* Popup Modal Styles */
.popup-modal-bg {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(24,24,27,0.85);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInBody 0.5s;
}
.popup-modal {
    background: #23232a;
    border-radius: 18px;
    box-shadow: 0 8px 40px #18181b, 0 2px 8px #53fc1855;
    padding: 36px 28px 28px 28px;
    max-width: 95vw;
    width: 370px;
    color: #f3f3f3;
    text-align: center;
    position: relative;
    animation: fadeInBody 0.7s;
}
.popup-modal h3 {
    color: #53fc18;
    margin-bottom: 18px;
    font-size: 1.3em;
    letter-spacing: 0.5px;
}
.popup-modal .close-btn {
    position: absolute;
    top: 12px;
    left: 12px;
    background: none;
    border: none;
    color: #888;
    font-size: 1.5em;
    cursor: pointer;
    transition: color 0.18s;
}
.popup-modal .close-btn:hover {
    color: #53fc18;
}
.popup-modal .awards-list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.popup-modal .awards-list li {
    margin: 10px 0;
    font-size: 1.08em;
    color: #b6ffcb;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.popup-modal .awards-list li .award-emoji {
    font-size: 1.3em;
} 