/* --- Supporter Hero & Rank --- */
.hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0px 70px;
}

.hero-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    backdrop-filter: blur(12px);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.hero-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.1) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.hero-card h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 10px 0;
    background: linear-gradient(to bottom, #fff 40%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -2px;
}

.hero-label {
    color: #a855f7;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.hero-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a1a1aa;
    max-width: 600px;
    margin: 0 auto;
}

.rank-highlight {
    color: #a855f7;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

.patreon-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #67236d;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(230, 66, 66, 0.3);
    text-decoration: none;
}

.patreon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 66, 66, 0.5);
    background: #aa39aa;
}

.particle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; 
    border-radius: 24px;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #a855f7;
    border-radius: 50%;
    filter: blur(2px);
    opacity: 0.3;
    animation: float 20s infinite linear;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-duration: 15s; }
.particle:nth-child(2) { top: 60%; left: 80%; width: 6px; height: 6px; animation-duration: 25s; opacity: 0.2; }
.particle:nth-child(3) { top: 40%; left: 40%; animation-duration: 20s; }
.particle:nth-child(4) { top: 80%; left: 20%; width: 3px; height: 3px; animation-duration: 18s; }
.particle:nth-child(5) { top: 10%; left: 70%; animation-duration: 22s; }

@keyframes float {
    0% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-100px) translateX(50px); }
    100% { transform: translateY(0) translateX(0); }
}

/* --- Perk Grid --- */
.perk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.perk-card {
    background: linear-gradient(145deg, rgba(25, 25, 25, 0.8), rgba(15, 15, 15, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.perk-card:hover {
    transform: translateY(-8px);
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.03);
}

.card-header {
    background: rgba(168, 85, 247, 0.1);
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #a855f7;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
}

.perk-list {
    list-style: none;
    padding: 30px;
    margin: 0;
}

.perk-list li {
    padding: 12px 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 12px;
}

.perk-list li::before {
    content: "✓";
    color: #a855f7;
    font-weight: 900;
}

/* --- Timeline Guide --- */
.guide-timeline {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step {
    display: flex;
    gap: 25px;
    margin-bottom: 0;
}

.step-side {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 40px;
    height: 40px;
    background: #a855f7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    z-index: 2;
}

.step-line {
    width: 2px;
    background: rgba(168, 85, 247, 0.2);
    flex-grow: 1;
    margin: 10px 0;
}

.step-content {
    padding-bottom: 40px;
}

.step-content h3 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 1.3rem;
}

/* --- Improved Flashbang Badge --- */
.warning-badge {
    display: inline-block;
    background: #fa1818;
    color: white;
    font-size: 0.65rem;
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 800;
    opacity: 0;
    transition: 0.3s;
    margin-left: 10px;
}

.flashbang-link {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid rgba(192, 132, 252, 0.3); 
    transition: all 0.3s ease;
}

.flashbang-link:hover {
    color: #d8b4fe;
    border-bottom-color: #d8b4fe;
    text-shadow: 0 0 8px rgba(168, 85, 247, 0.4);
}

.flashbang-link:hover + .warning-badge {
    opacity: 1;
}

/* --- Notes & Titles --- */
.important-note {
    background: rgba(168, 85, 247, 0.05);
    border-left: 4px solid #a855f7;
    padding: 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    color: #888;
    font-size: 0.95rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0px 0 40px;
    letter-spacing: -1px;
}