/* ============================================
   GAMING PREMIUM STYLES  
   Neon Red/Purple Theme | Glitch Effects
   ============================================ */

:root {
    --neon-red: #ff0055;
    --neon-purple: #aa00ff;
    --gaming-accent: var(--accent-gaming);
}

/* === GAMING HERO === */
.gaming-hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 85, 0.1) 0%, transparent 60%);
}

.neon-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 0, 85, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 85, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridSlide 20s linear infinite;
}

@keyframes gridSlide {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(40px, 40px);
    }
}

.hero-content-gaming {
    text-align: center;
    z-index: 1;
}

.gaming-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--neon-red);
    margin-bottom: 2rem;
    font-weight: 700;
    text-transform: uppercase;
}

.glitch-title {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    position: relative;
}

.neon-text {
    color: var(--neon-red);
    text-shadow:
        0 0 10px var(--neon-red),
        0 0 20px var(--neon-red),
        0 0 40px var(--neon-red);
    animation: neonPulse 2s ease-in-out infinite;
}

@keyframes neonPulse {

    0%,
    100% {
        text-shadow:
            0 0 10px var(--neon-red),
            0 0 20px var(--neon-red);
    }

    50% {
        text-shadow:
            0 0 20px var(--neon-red),
            0 0 40px var(--neon-red),
            0 0 60px var(--neon-red);
    }
}

/* Glitch Effect */
.glitchactive::before,
.glitch-active::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    opacity: 0.8;
}

.glitch-active::before {
    animation: glitch1 0.3s infinite;
    color: var(--neon-purple);
    z-index: -1;
}

.glitch-active::after {
    animation: glitch2 0.3s infinite;
    color: var(--neon-red);
    z-index: -2;
}

@keyframes glitch1 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch2 {

    0%,
    100% {
        transform: translate(0);
    }

    20% {
        transform: translate(2px, -2px);
    }

    40% {
        transform: translate(2px, 2px);
    }

    60% {
        transform: translate(-2px, -2px);
    }

    80% {
        transform: translate(-2px, 2px);
    }
}

.hero-desc-gaming {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
}

.gaming-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.game-stat {
    text-align: center;
}

.game-stat-num {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: var(--neon-red);
    font-family: 'Space Grotesk', monospace;
    line-height: 1;
}

.game-stat-symbol {
    font-size: 2.5rem;
    color: var(--neon-red);
}

.game-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--neon-red), transparent);
}

.status-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 30px;
    font-size: 0.9rem;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #0f0;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
    box-shadow: 0 0 10px #0f0;
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* === SERVERS SHOWCASE === */
.servers-showcase {
    padding: 8rem 5%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
}

.servers-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header-gaming {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-gaming {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.1rem;
    color: #999;
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.server-card-premium {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.server-card-premium:hover {
    transform: translateY(-15px);
    border-color: var(--neon-red);
    box-shadow:
        0 0 30px rgba(255, 0, 85, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.server-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    opacity: 0;
    transition: 0.5s;
    pointer-events: none;
}

.titan-glow {
    background: radial-gradient(circle, rgba(255, 0, 85, 0.3), transparent);
    top: -150px;
    right: -150px;
}

.atlas-glow {
    background: radial-gradient(circle, rgba(170, 0, 255, 0.3), transparent);
    top: -150px;
    right: -150px;
}

.server-card-premium:hover .server-glow {
    opacity: 1;
}

.server-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.server-icon-premium {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(170, 0, 255, 0.2));
    border: 2px solid var(--neon-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--neon-red);
}

.server-header h3 {
    font-size: 1.8rem;
    flex: 1;
    min-width: 150px;
}

.server-badge {
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.server-badge.secondary {
    background: linear-gradient(135deg, var(--neon-purple), #5500ff);
}

.specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.spec-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: 0.3s;
}

.spec-row:hover {
    background: rgba(255, 0, 85, 0.05);
    transform: translateX(5px);
}

.spec-row i {
    font-size: 1.3rem;
    color: var(--neon-red);
    width: 30px;
    text-align: center;
}

.spec-details {
    display: flex;
    flex-direction: column;
}

.spec-name {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spec-val {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 0, 85, 0.1);
}

.status-dot.online-pulse {
    width: 12px;
    height: 12px;
    background: #0f0;
    border-radius: 50%;
    animation: pulse-green 2s ease-in-out infinite;
}

.status-dot.medium-pulse {
    width: 12px;
    height: 12px;
    background: #ff0;
    border-radius: 50%;
    animation: pulse-yellow 2s ease-in-out infinite;
}

@keyframes pulse-yellow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 0, 0);
    }
}

/* === PRICING === */
.pricing-section-gaming {
    padding: 6rem 5%;
}

.pricing-container-gaming {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.price-card-gaming {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    transition: 0.4s;
}

.price-card-gaming:hover {
    border-color: var(--neon-red);
    transform: translateY(-10px);
}

.price-card-gaming.featured {
    border-color: var(--neon-red);
    box-shadow: 0 0 40px rgba(255, 0, 85, 0.2);
}

.best-value-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
    padding: 0.4rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--neon-red);
    margin: 1.5rem 0;
}

.price-period {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

.features-list {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.8rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.features-list i {
    color: var(--neon-red);
}

.btn-gaming {
    padding: 1rem 2.5rem;
    background: rgba(255, 0, 85, 0.1);
    border: 2px solid var(--neon-red);
    color: var(--neon-red);
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-gaming:hover {
    background: var(--neon-red);
    color: #000;
    box-shadow: 0 0 20px var(--neon-red);
}

.btn-gaming.primary {
    background: var(--neon-red);
    color: #000;
}

.btn-gaming.primary:hover {
    box-shadow: 0 0 30px var(--neon-red);
    transform: scale(1.05);
}

/* === HOW IT WORKS === */
.how-it-works-gaming {
    padding: 6rem 5%;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.03) 0%, transparent 100%);
}

.hiw-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.steps-grid-gaming {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.step-card-gaming {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: 0.4s;
}

.step-card-gaming:hover {
    border-color: var(--neon-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 0, 85, 0.2);
}

.step-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--neon-red);
    font-family: 'Space Grotesk', monospace;
    margin-bottom: 1rem;
}

.step-card-gaming h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.step-card-gaming p {
    color: #999;
    line-height: 1.6;
}

.link-neon {
    color: var(--neon-red);
    text-decoration: underline;
}

.link-neon:hover {
    text-shadow: 0 0 10px var(--neon-red);
}

.network-req {
    margin-top: 3rem;
    padding: 1rem 2rem;
    background: rgba(255, 0, 85, 0.05);
    border: 1px solid rgba(255, 0, 85, 0.2);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: #999;
}

.network-req i {
    color: var(--neon-red);
}

/* === TOURNAMENTS === */
.tournaments-section {
    padding: 6rem 5%;
}

.tournaments-container {
    max-width: 900px;
    margin: 0 auto;
}

.tournament-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.3);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    overflow: hidden;
}

.tournament-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.1), rgba(170, 0, 255, 0.1));
    opacity: 0;
    transition: 0.5s;
}

.tournament-card:hover .tournament-bg {
    opacity: 1;
}

.tournament-game {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--neon-red);
    color: #000;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tournament-content {
    position: relative;
    z-index: 1;
}

.tournament-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tournament-meta {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 85, 0.2);
}

.tournament-date,
.tournament-slots {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
}

.tournament-date i,
.tournament-slots i {
    color: var(--neon-red);
}

/* === APPROVED GEAR === */
.approved-gear-section {
    padding: 6rem 5%;
    background: #0a0a0a;
}

.gear-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.gear-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gear-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 0, 85, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: 0.4s;
}

.gear-card:hover {
    border-color: var(--neon-red);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 85, 0.2);
}

.gear-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 0, 85, 0.2), rgba(170, 0, 255, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--neon-red);
    margin: 0 auto 1.5rem;
}

.gear-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.gear-tag {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--neon-red);
    background: rgba(255, 0, 85, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.gear-card p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.approved-stamp {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0f0;
    font-size: 0.85rem;
    font-weight: 700;
}

.approved-stamp i {
    font-size: 1.2rem;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .glitch-title {
        font-size: 4rem;
    }

    .servers-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid-gaming {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .glitch-title {
        font-size: 3rem;
    }

    .section-title-gaming {
        font-size: 2.5rem;
    }

    .gaming-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .neon-divider {
        display: none;
    }

    .steps-grid-gaming,
    .gear-grid {
        grid-template-columns: 1fr;
    }
}