/* BEAST MODE CSS - SUPREME PINK/ORANGE IDENTITY */
.beast_donate_btn {
    background: linear-gradient(90deg, #ff9d00 0%, #ff00ff 100%) !important;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 14px;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background-clip: padding-box;
    margin-right: 10px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    letter-spacing: 1px;
}

.beast_donate_btn::before {
    content: '';
    position: absolute;
    top: -2.5px;
    bottom: -2.5px;
    left: -2.5px;
    right: -2.5px;
    background: linear-gradient(45deg, #00fff2, #ff00ea, #00fff2);
    background-size: 200% 200%;
    animation: neonFlowShowcase 3s linear infinite;
    z-index: -1;
    border-radius: 50px;
}

.beast_donate_btn:hover {
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.6);
}

/* BEAST MODAL */
.beast_modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 20000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.beast_modal_backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.beast_modal_content {
    background: #111;
    width: 95%;
    max-width: 600px;
    border-radius: 30px;
    border: 2px solid #ffcc00;
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 204, 0, 0.3);
    animation: beastPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes beastPop {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.beast_modal_title {
    font-size: 28px;
    font-weight: 900;
    color: #ffcc00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.beast_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.beast_tier {
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.beast_tier:hover {
    border-color: #ffcc00;
    background: #222;
    transform: translateY(-5px);
}

.beast_tier i {
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.beast_tier.tier_1000 {
    background: linear-gradient(135deg, #111, #333);
    border: 2px solid #ff00de;
    grid-column: span 3;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.beast_tier.tier_1000 i {
    font-size: 40px;
    margin: 0;
}

.beast_tier_price {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
}

.beast_tier_label {
    font-size: 11px;
    color: #777;
    text-transform: uppercase;
}

/* =============================================================================
   BEAST PRIVACY BADGES (The Pills)
   ============================================================================= */
.beast-badge-pill {
    position: absolute;
    top: 0;
    right: 0 !important;
    left: auto !important;
    padding: 6px 20px;
    font-family: 'Orbitron', 'Syncopate', sans-serif;
    font-size: 10px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    z-index: 150;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Diagonal cut towards the inside */
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    animation: badgeShine 4s infinite;
    border-radius: 0 10px 0 0; /* Matches card radius */
}

@keyframes badgeShine {
    0% { filter: brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0)); }
    50% { filter: brightness(1.4) drop-shadow(0 0 15px rgba(255,255,255,0.4)); }
    100% { filter: brightness(1) drop-shadow(0 0 5px rgba(255,255,255,0)); }
}

/* Tiers Colors */
.badge-free { 
    background: linear-gradient(135deg, rgba(20,20,20,0.95) 0%, rgba(50,50,50,0.95) 100%); 
    border-left: 3px solid #fff; 
    border-right: none;
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}
.badge-followers { background: linear-gradient(135deg, #00dbde 0%, #00b4d8 100%); color: #000; }
.badge-subscribers { background: linear-gradient(135deg, #fc00ff 0%, #a033ff 100%); }
.badge-premium { background: linear-gradient(135deg, #fca311 0%, #ff9000 100%); color: #000; box-shadow: 0 0 20px rgba(252, 163, 17, 0.4); }

/* =============================================================================
   BEAST CLIFFHANGER OVERLAY (The Glass Lock)
   ============================================================================= */
.beast-cliffhanger {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.beast-cliffhanger.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(25px);
}

.cliff-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 20px;
    animation: cliffPulse 2s infinite;
}

@keyframes cliffPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

.cliff-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(255,255,255,0.2);
}

.cliff-desc {
    font-size: 12px;
    color: #aaa;
    margin-bottom: 30px;
    text-align: center;
    max-width: 80%;
}

/* =============================================================================
   BEAST DOPAMINE BUTTONS (The CTAs)
   ============================================================================= */
.btn-cliff-action {
    padding: 14px 40px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-cliff-action:hover {
    transform: translateY(-5px) scale(1.05);
}

/* Follow CTA */
.btn-cliff-follow {
    background: linear-gradient(135deg, #00dbde, #00b4d8);
    color: #000;
    box-shadow: 0 10px 20px rgba(0, 219, 222, 0.3);
}

/* Subscribe CTA */
.btn-cliff-subscribe {
    background: linear-gradient(135deg, #fc00ff, #a033ff);
    color: #fff;
    box-shadow: 0 10px 20px rgba(252, 0, 255, 0.3);
}

/* Diamond CTA */
.btn-cliff-premium {
    background: linear-gradient(135deg, #fca311, #ff9000);
    color: #000;
    box-shadow: 0 10px 20px rgba(252, 163, 17, 0.4);
}

/* Shine effect for buttons */
.btn-cliff-action::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; transition-property: left; }
    30% { left: 100%; transition-property: left; }
    100% { left: 100%; transition-property: left; }
}