/* ==========================================================================
   GAGGED DRAG - NEON EFFECTS
   Additional animations, glows, and visual effects
   ========================================================================== */

/* Neon text glow animation */
@keyframes neonPulse {
    0%, 100% { text-shadow: 0 0 10px currentColor, 0 0 20px currentColor, 0 0 40px currentColor; }
    50% { text-shadow: 0 0 5px currentColor, 0 0 10px currentColor, 0 0 20px currentColor; }
}

.neon-glow {
    animation: neonPulse 3s ease-in-out infinite;
}

/* Hero shimmer effect */
@keyframes heroShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.hero-title-main {
    background: linear-gradient(
        90deg,
        var(--gd-magenta) 0%,
        var(--gd-cyan) 25%,
        var(--gd-gold) 50%,
        var(--gd-cyan) 75%,
        var(--gd-magenta) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroShimmer 6s linear infinite;
}

/* Card hover neon border */
@keyframes borderGlow {
    0%, 100% { border-color: var(--gd-magenta); box-shadow: 0 0 5px rgba(255, 0, 255, 0.3); }
    33% { border-color: var(--gd-cyan); box-shadow: 0 0 5px rgba(0, 255, 255, 0.3); }
    66% { border-color: var(--gd-gold); box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
}

.queen-card:hover {
    animation: borderGlow 3s ease-in-out infinite;
}

/* Crown badge float */
@keyframes crownFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(3deg); }
    75% { transform: translateY(-4px) rotate(-3deg); }
}

.hero-crown {
    display: inline-block;
    font-size: 4rem;
    animation: crownFloat 4s ease-in-out infinite;
    margin-bottom: 16px;
}

/* Stats number counter effect */
.stat-number {
    background: linear-gradient(135deg, var(--gd-gold), var(--gd-mustard));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category card hover effect */
.category-card {
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 0, 255, 0.2);
}

.category-card:hover .category-icon {
    transform: scale(1.2);
    transition: transform 0.3s ease;
}

/* State card hover */
.state-card {
    transition: all 0.3s ease;
}

.state-card:hover {
    transform: translateY(-2px);
    border-color: var(--gd-cyan);
    box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

/* Tier explainer cards */
.tier-explainer {
    transition: all 0.3s ease;
}

.tier-explainer:hover {
    transform: translateY(-4px);
}

.tier-crown:hover { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3); }
.tier-spotlight:hover { box-shadow: 0 8px 30px rgba(255, 0, 255, 0.3); }
.tier-working:hover { box-shadow: 0 8px 30px rgba(0, 255, 255, 0.2); }
.tier-fresh:hover { box-shadow: 0 8px 30px rgba(57, 255, 20, 0.2); }

/* RPDR badge glow */
.rpdr-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF00FF, #FF69B4);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.rpdr-badge-lg {
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 6px;
}

/* Queen of the Day special styling */
.qotd-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 0, 255, 0.05));
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.qotd-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, rgba(255, 215, 0, 0.05), transparent, rgba(255, 0, 255, 0.05), transparent
    );
    animation: spin 10s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.qotd-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gd-gold), var(--gd-champagne));
    color: var(--gd-black);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    position: relative;
}

/* Scroll reveal (add .gd-reveal class to sections) */
.gd-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Search input focus glow */
.queen-finder-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 0, 255, 0.3), 0 0 20px rgba(255, 0, 255, 0.1);
}

/* Claim Your Crown button glow */
.btn-claim-crown,
.btn-claim-crown-lg {
    position: relative;
    overflow: hidden;
}

.btn-claim-crown::after,
.btn-claim-crown-lg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%
    );
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
