/* ============================================
   GLITCH ZERO - LANDING PAGE STYLES
   ============================================ */

:root {
    --primary-neon: #00f2ff;
    --secondary-neon: #bc13fe;
    --danger-neon: #ff2a6d;
    --bg-dark: #050510;
    --text-main: #e0e0e0;
    --glass-bg: rgba(10, 10, 20, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Rajdhani', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(5, 5, 16, 0.9), transparent);
    backdrop-filter: blur(5px);
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 10px var(--primary-neon);
}

.nav-logo span {
    color: var(--primary-neon);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-neon);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--secondary-neon);
    text-shadow: 0 0 8px var(--secondary-neon);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login-nav {
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--primary-neon);
    border-radius: 4px;
    color: var(--primary-neon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-login-nav:hover {
    background: var(--primary-neon);
    color: #000;
    box-shadow: 0 0 20px var(--primary-neon);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    overflow: hidden;
    background: #050510 url('../img/locations/neon-slums.jpg') no-repeat center center/cover;
    transition: background 1s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(5, 5, 16, 0.3) 0%, rgba(5, 5, 16, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInSlideRight 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--primary-neon);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, var(--secondary-neon));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(188, 19, 254, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    color: #ccc;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-main {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
    clip-path: polygon(10% 0, 100% 0, 100% 70%, 90% 100%, 0 100%, 0 30%);
}

.btn-primary {
    background: var(--secondary-neon);
    color: #fff;
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.4);
}

.btn-primary:hover {
    background: #d44eff;
    box-shadow: 0 0 40px rgba(188, 19, 254, 0.8);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-neon);
    color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 242, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.4);
    transform: translateY(-3px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: 6rem 10%;
    background: #0a0a14;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.section-title span {
    color: var(--primary-neon);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-neon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-neon);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-text {
    color: #aaa;
    font-size: 1rem;
}

/* ============================================
   PROTOCOLS SECTION (NEW)
   ============================================ */
.protocols-section {
    padding: 6rem 10%;
    background: #050510;
    text-align: center;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.protocol-card {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.protocol-card:hover {
    border-color: var(--primary-neon);
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.15);
}

.protocol-tag {
    font-size: 0.7rem;
    color: var(--primary-neon);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.protocol-title {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 1rem;
}

.protocol-desc {
    font-size: 0.9rem;
    color: #888;
}

/* ============================================
   VISUAL SHOWCASE
   ============================================ */
.showcase-section {
    display: flex;
    flex-wrap: wrap;
    background: #000;
}

.showcase-item {
    flex: 1 1 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
    opacity: 0.7;
}

.showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    transform: translateY(100px);
    transition: transform 0.4s;
}

.showcase-item:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.showcase-item:hover .showcase-overlay {
    transform: translateY(0);
}

.showcase-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px #000;
}

.showcase-desc {
    color: var(--primary-neon);
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================
   GAMEPLAY INFO
   ============================================ */
.gameplay-section {
    padding: 6rem 10%;
    background: radial-gradient(circle at center, #1a1a2e 0%, #050510 100%);
    text-align: center;
}

.gameplay-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.gameplay-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    color: var(--secondary-neon);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   FOOTER
   ============================================ */
.landing-footer {
    padding: 4rem 10%;
    background: #020205;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-size: 2rem;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 2rem;
    display: inline-block;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-socials {
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    color: #888;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* ============================================
   CLASSES SECTION
   ============================================ */
.classes-section {
    padding: 6rem 10%;
    background: #050510;
    text-align: center;
}

.class-card {
    background: linear-gradient(145deg, rgba(20, 20, 30, 0.8), rgba(10, 10, 20, 0.9));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    position: relative;
    padding: 2rem;
    text-align: left;
}

.class-card:hover {
    border-color: var(--secondary-neon);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.2);
    transform: translateY(-5px);
}

.class-icon {
    font-size: 2.5rem;
    color: var(--secondary-neon);
    margin-bottom: 1rem;
}

.class-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.class-role {
    color: var(--primary-neon);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.class-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.class-stats {
    display: flex;
    gap: 1rem;
}

.stat-bar {
    width: 100%;
    height: 6px;
    background: #222;
    border-radius: 3px;
    position: relative;
    margin-top: 5px;
}

.stat-fill {
    height: 100%;
    background: var(--primary-neon);
    border-radius: 3px;
}

/* ============================================
   LEGENDARY LOOT SECTION (Replaces Roadmap)
   ============================================ */
.loot-section {
    padding: 6rem 10%;
    background: #0a0a14;
    position: relative;
    overflow: hidden;
}

/* Background Cyber Grid Effect */
.loot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
    pointer-events: none;
}

.loot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.loot-card {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    backdrop-filter: blur(5px);
}

/* Legendary Golden/Orange Glow */
.legendary-glow {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.05), inset 0 0 20px rgba(255, 165, 0, 0.05);
}

.legendary-glow:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #ffaa00;
    box-shadow: 0 0 40px rgba(255, 165, 0, 0.3), inset 0 0 30px rgba(255, 165, 0, 0.1);
    background: rgba(255, 165, 0, 0.05);
}

.loot-icon-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: radial-gradient(circle, rgba(255, 165, 0, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 165, 0, 0.3);
    position: relative;
}

.loot-card:hover .loot-icon-container {
    animation: pulseGlow 2s infinite;
    border-color: #ffaa00;
}

.loot-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 165, 0, 0.6));
}

.loot-title {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.loot-type {
    display: block;
    color: #ffaa00;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 10px rgba(255, 165, 0, 0.4);
}

.loot-stats {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.loot-stat {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    color: #ccc;
}

.loot-stat:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.loot-stat span:last-child {
    font-weight: 700;
    color: #fff;
}

.loot-stat.highlight {
    color: var(--primary-neon);
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 165, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 6rem 10%;
    background: #050510;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

.faq-answer {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    color: #ccc;
    display: none;
    /* JS ile açılacak (ya da :hover) */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-item:hover .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .landing-nav {
        padding: 1rem;
    }

    .nav-links {
        display: none;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .showcase-item {
        flex: 1 1 100%;
    }
}

/* Scroll Animation classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}