/* ============================================
   GHOULAX STUDIO'S - ENHANCED MODERN EFFECTS
   Additional styling for premium look
   ============================================ */

/* Animated Gradient Border for Cards */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes gradient-rotate {
    0% {
        --gradient-angle: 0deg;
    }

    100% {
        --gradient-angle: 360deg;
    }
}

/* Glassmorphism Enhancement */
.glass-effect {
    background: rgba(20, 25, 45, 0.6) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

/* ============================================
   ENHANCED GAME CARDS - Animated Borders
   ============================================ */
.game-card {
    position: relative;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
        conic-gradient(from var(--gradient-angle), #6cb8e6, #4a90d9, #2962a8, #a855f7, #6cb8e6) border-box;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid transparent !important;
    animation: gradient-rotate 4s linear infinite;
}

.game-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: conic-gradient(from var(--gradient-angle), #6cb8e6, #4a90d9, #2962a8, #a855f7, #6cb8e6);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}

.game-card:hover::before {
    opacity: 0.6;
}

/* Removed transform to prevent conflict with JS tilt */
.game-card:hover {
    box-shadow: 0 25px 50px rgba(74, 144, 217, 0.4);
}

/* Featured Game Special Glow */
.game-card.featured {
    animation: gradient-rotate 3s linear infinite, featured-glow 2s ease-in-out infinite alternate;
}

@keyframes featured-glow {
    0% {
        box-shadow: 0 0 30px rgba(251, 191, 36, 0.3), 0 0 60px rgba(251, 191, 36, 0.1);
    }

    100% {
        box-shadow: 0 0 50px rgba(251, 191, 36, 0.5), 0 0 100px rgba(251, 191, 36, 0.2);
    }
}

/* ============================================
   ENHANCED TEAM CARDS - 3D Tilt Effect
   ============================================ */
.team-card {
    position: relative;
    background: linear-gradient(var(--glass-bg), var(--glass-bg)) padding-box,
        conic-gradient(from var(--gradient-angle), #6cb8e6, #4a90d9, #2962a8, #4a90d9, #6cb8e6) border-box;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid transparent !important;
    animation: gradient-rotate 6s linear infinite;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108, 184, 230, 0.15), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.team-card:hover::before {
    opacity: 1;
}

/* Removed transform to prevent conflict with JS tilt */
.team-card:hover {
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(74, 144, 217, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.team-avatar {
    position: relative;
    overflow: visible;
}

.team-avatar::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #6cb8e6, #4a90d9, #a855f7, #6cb8e6);
    animation: spin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.team-card:hover .team-avatar::before {
    opacity: 0.7;
    filter: blur(8px);
}

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

    100% {
        transform: rotate(360deg);
    }
}

/* ============================================
   ENHANCED ACHIEVEMENT CARDS
   ============================================ */
.achievement-card {
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(74, 144, 217, 0.1), transparent 30%);
    animation: rotate-bg 4s linear infinite;
}

.achievement-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: var(--bg-card);
    border-radius: calc(var(--radius-lg) - 2px);
    z-index: 0;
}

.achievement-card>* {
    position: relative;
    z-index: 1;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.achievement-icon {
    position: relative;
    animation: icon-float 3s ease-in-out infinite;
}

@keyframes icon-float {

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

    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

/* Number Glow Effect */
.achievement-number {
    text-shadow: 0 0 30px rgba(74, 144, 217, 0.5);
    animation: number-pulse 2s ease-in-out infinite;
}

@keyframes number-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(74, 144, 217, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(74, 144, 217, 0.6));
    }
}

/* ============================================
   ENHANCED HERO SECTION
   ============================================ */
.hero {
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background:
        radial-gradient(circle at 20% 80%, rgba(74, 144, 217, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(108, 184, 230, 0.1) 0%, transparent 30%);
    animation: aurora 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes aurora {

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

    25% {
        transform: translate(2%, 1%) rotate(1deg);
    }

    50% {
        transform: translate(-1%, 2%) rotate(-1deg);
    }

    75% {
        transform: translate(-2%, -1%) rotate(0.5deg);
    }
}

.hero-logo {
    animation: float 4s ease-in-out infinite, glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        filter: drop-shadow(0 10px 30px rgba(74, 144, 217, 0.5));
    }

    50% {
        filter: drop-shadow(0 15px 50px rgba(74, 144, 217, 0.8)) drop-shadow(0 0 30px rgba(168, 85, 247, 0.3));
    }
}

/* Stat Items Enhancement */
.stat-item {
    position: relative;
    padding: 20px;
    background: rgba(20, 25, 45, 0.5);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 144, 217, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(74, 144, 217, 0.3);
}

/* ============================================
   ENHANCED BUTTONS
   ============================================ */
.btn-primary {
    position: relative;
    overflow: hidden;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

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

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    filter: blur(15px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s;
}

.btn-primary:hover::after {
    opacity: 0.6;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 144, 217, 0.4);
}

.btn-secondary {
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(74, 144, 217, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.btn-secondary:hover::before {
    transform: translateX(100%);
}

/* ============================================
   ENHANCED ROADMAP CARDS
   ============================================ */
.roadmap-card.coming-soon .roadmap-mystery {
    animation: mystery-pulse 2s ease-in-out infinite;
}

@keyframes mystery-pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.6), 0 0 60px rgba(74, 144, 217, 0.3);
        transform: scale(1.05);
    }
}

.roadmap-mystery i {
    animation: question-bounce 1.5s ease-in-out infinite;
}

@keyframes question-bounce {

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

    25% {
        transform: translateY(-3px) rotate(-5deg);
    }

    75% {
        transform: translateY(-3px) rotate(5deg);
    }
}

/* Progress Bar Animation */
.progress-fill {
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer-progress 2s ease-in-out infinite;
}

@keyframes shimmer-progress {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* ============================================
   ENHANCED SECTION TITLES
   ============================================ */
.section-title {
    position: relative;
    animation: title-glow 3s ease-in-out infinite;
}

@keyframes title-glow {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(74, 144, 217, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(74, 144, 217, 0.6));
    }
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background: var(--metallic-gradient);
    margin: 20px auto 0;
    border-radius: 3px;
    animation: line-expand 0.8s ease-out forwards;
}

@keyframes line-expand {
    0% {
        width: 0;
        opacity: 0;
    }

    100% {
        width: 100px;
        opacity: 1;
    }
}

/* ============================================
   ENHANCED NAVBAR
   ============================================ */
.navbar {
    background: linear-gradient(180deg, rgba(10, 10, 26, 0.95) 0%, rgba(10, 10, 26, 0.8) 100%);
}

.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center bottom, rgba(74, 144, 217, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover::before {
    opacity: 1;
}

/* ============================================
   ENHANCED FEEDBACK FORM
   ============================================ */
.feedback-form {
    position: relative;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
        linear-gradient(135deg, rgba(74, 144, 217, 0.3), rgba(168, 85, 247, 0.3), rgba(74, 144, 217, 0.3)) border-box;
    border: 2px solid transparent !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow:
        0 0 20px rgba(74, 144, 217, 0.3),
        inset 0 0 20px rgba(74, 144, 217, 0.05);
    transform: scale(1.01);
}

/* ============================================
   ENHANCED FOOTER
   ============================================ */
.footer {
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    animation: line-glow 3s ease-in-out infinite;
}

@keyframes line-glow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.social-icons a {
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(74, 144, 217, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: scale(0);
}

.social-icons a:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

/* ============================================
   ENHANCED BACK TO TOP
   ============================================ */
.back-to-top {
    overflow: hidden;
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: conic-gradient(from 0deg, #6cb8e6, #4a90d9, #a855f7, #6cb8e6);
    border-radius: 50%;
    animation: spin 2s linear infinite;
    z-index: -1;
}

.back-to-top::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--metallic-gradient);
    border-radius: 50%;
    z-index: 0;
}

.back-to-top i {
    position: relative;
    z-index: 1;
}

/* ============================================
   CURSOR GLOW EFFECT - DISABLED (too distracting)
   ============================================ */
.cursor-glow {
    display: none;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Section visibility for animations */
.section-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ============================================
   TEAM SECTION - NEW TAG DESIGN
   ============================================ */

/* Team Avatar with Image Support */
.team-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: var(--metallic-gradient);
    border-radius: 50%;
}

.avatar-fallback i {
    font-size: 2.5rem;
    color: white;
}

/* Team Tags */
.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 12px;
    transform: translateZ(2px);
    position: relative;
    z-index: 5;
}

.team-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    background: rgba(74, 144, 217, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(74, 144, 217, 0.3);
    transition: all 0.3s ease;
}

.team-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 144, 217, 0.3);
}

/* Tag Color Variants */
.tag-founder {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(234, 179, 8, 0.2));
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}

.tag-scripter {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.2));
    color: #60a5fa;
    border-color: rgba(59, 130, 246, 0.4);
}

.tag-builder {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.4);
}

.tag-designer {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(139, 92, 246, 0.2));
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.4);
}

.tag-manager {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(219, 39, 119, 0.2));
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.4);
}

.tag-support {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(2, 132, 199, 0.2));
    color: #38bdf8;
    border-color: rgba(14, 165, 233, 0.4);
}

.tag-hiring {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(74, 144, 217, 0.2));
    color: #4ade80;
    border-color: rgba(34, 197, 94, 0.4);
    animation: pulse-tag 2s ease-in-out infinite;
}

.tag-dev {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.2), rgba(234, 88, 12, 0.2));
    color: #fb923c;
    border-color: rgba(251, 146, 60, 0.4);
}

.tag-planner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(79, 70, 229, 0.2));
    color: #818cf8;
    border-color: rgba(99, 102, 241, 0.4);
}

.tag-artist {
    background: linear-gradient(135deg, rgba(244, 114, 182, 0.2), rgba(236, 72, 153, 0.2));
    color: #f472b6;
    border-color: rgba(244, 114, 182, 0.4);
}

.tag-animator {
    background: linear-gradient(135deg, rgba(192, 132, 252, 0.2), rgba(168, 85, 247, 0.2));
    color: #c084fc;
    border-color: rgba(192, 132, 252, 0.4);
}

.tag-balancer {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.2));
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.4);
}

.tag-vfx {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
    color: #f472b6;
    border-color: rgba(236, 72, 153, 0.4);
}

@keyframes pulse-tag {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.6);
    }
}

/* Team Joined Date */
.team-joined {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

/* Team Leader Special Style */
.team-card.team-leader {
    border: 2px solid rgba(251, 191, 36, 0.4);
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.15);
}

/* Online Status Indicator */
.team-avatar {
    position: relative;
}

.status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 3px solid var(--bg-card);
    z-index: 10;
    transition: all 0.3s ease;
}

/* Discord Status Colors */
.status-indicator.online {
    background: #22c55e;
    /* Green */
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.status-indicator.idle {
    background: #f59e0b;
    /* Yellow (Moon) */
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

.status-indicator.dnd {
    background: #ef4444;
    /* Red */
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.status-indicator.offline {
    background: #747f8d;
    /* Discord Gray */
    box-shadow: none;
    border-color: rgba(255, 255, 255, 0.3);
}

@keyframes status-pulse {

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

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 15px currentColor;
    }
}

/* Status Tooltip */
.status-indicator::after {
    content: attr(data-status);
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.status-indicator:hover::after {
    opacity: 1;
}

/* Special hover effects for core team members */
.team-card.team-leader:hover {
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.4),
        0 0 80px rgba(251, 191, 36, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(251, 191, 36, 0.6);
}

.team-card.team-leader:hover .team-avatar img {
    box-shadow: 0 0 35px rgba(251, 191, 36, 0.6);
    transform: scale(1.05);
}

/* Second-in-command (Zyfley) - Cool red glow & Website Creator Badge */
.team-card.team-manager {
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    /* Removed margin-top to fix sizing issue */
}

/* Website Creator Badge Styling */
.website-creator-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 20;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    overflow: hidden;
    /* Fixes "white part" overflow */
    transition: all 0.3s ease;
}



/* Add shimmer effect to badge */
.website-creator-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: badge-shimmer 4s infinite;
}

@keyframes badge-shimmer {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}



.team-card.team-manager:hover {
    box-shadow: 0 0 45px rgba(239, 68, 68, 0.35),
        0 0 70px rgba(255, 100, 100, 0.2),
        0 20px 50px rgba(0, 0, 0, 0.45),
        inset 0 0 20px rgba(239, 68, 68, 0.05);
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(239, 68, 68, 0.5);
}

.team-card.team-manager:hover .website-creator-badge {
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.6);
    transform: translateX(-50%) translateY(-2px) scale(1.05);
    /* Smooth lift instead of jump */
}

.team-card.team-manager:hover .team-avatar img {
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.5),
        0 0 55px rgba(255, 100, 100, 0.3);
    transform: scale(1.05);
}

/* Main Developer (Tehleat) - Purple glow */
.team-card.team-maindev {
    border: 2px solid rgba(168, 85, 247, 0.25);
}

.team-card.team-maindev:hover {
    box-shadow: 0 0 50px rgba(168, 85, 247, 0.35),
        0 0 80px rgba(168, 85, 247, 0.2),
        0 20px 45px rgba(0, 0, 0, 0.45);
    transform: translateY(-10px) scale(1.01);
    border-color: rgba(168, 85, 247, 0.5);
}

.team-card.team-maindev:hover .team-avatar img {
    box-shadow: 0 0 35px rgba(168, 85, 247, 0.5),
        0 0 55px rgba(168, 85, 247, 0.3);
    transform: scale(1.05);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================
   GAME CARD SHINE EFFECT
   ============================================ */
.game-card .game-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0) 40%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0) 60%,
            rgba(255, 255, 255, 0) 100%);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
    pointer-events: none;
}

.game-card:hover .game-image::after {
    transform: rotate(45deg) translateX(100%);
}

/* ============================================
   LOADING SKELETON
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-card) 25%, rgba(74, 144, 217, 0.1) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

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

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

/* ============================================
   FLOATING PARTICLES (CSS Only)
   ============================================ */
.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(74, 144, 217, 0.5);
    border-radius: 50%;
    animation: float-particle 10s ease-in-out infinite;
}

.floating-particles::after {
    width: 6px;
    height: 6px;
    background: rgba(168, 85, 247, 0.5);
    animation-delay: -5s;
    animation-duration: 15s;
}

@keyframes float-particle {

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

    25% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 0.8;
    }

    50% {
        transform: translate(50px, -100px) scale(0.8);
        opacity: 0.3;
    }

    75% {
        transform: translate(-50px, -50px) scale(1.1);
        opacity: 0.6;
    }
}