/* --- GLOBAL TYPOGRAPHY (PURE ORANGE NEON) --- */
body {
    background-color: #050505;
    color: #ff8c00;
    /* Pure Orange */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Orange Neon Holographic Text (NO WHITE, NO YELLOW) */
h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.holo-text-global {
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 50%, #ff8c00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonPulse 3s ease-in-out infinite alternate;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.6);
}

a {
    color: #ff8c00;
    transition: color 0.3s ease;
}

a:hover {
    color: #ff4500;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.8);
}

/* --- ANIMATIONS --- */
@keyframes neonPulse {
    0% {
        filter: brightness(100%);
        text-shadow: 0 0 15px rgba(255, 69, 0, 0.5);
    }

    100% {
        filter: brightness(120%);
        text-shadow: 0 0 25px rgba(255, 69, 0, 0.8);
    }
}

@keyframes fireLine {

    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

/* --- NAVBAR STYLES (CENTERED CLUSTERED BUTTONS) --- */
nav {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

/* Fire Line at Bottom */
nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #ff4500 30%, #ff8c00 50%, #ff4500 70%, transparent 100%);
    animation: fireLine 2s infinite ease-in-out;
    z-index: 1001;
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    /* CENTERED LAYOUT */
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 0 25px;
}

/* --- LOGO STYLES (ORANGE NEON) --- */
.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.text-holo-logo-custom {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: -0.5px;

    /* PURE ORANGE NEON GRADIENT (NO WHITE, NO YELLOW) */
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 50%, #ff8c00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonPulse 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.7));
    white-space: nowrap;
}

/* Hammer Icon */
.hammer-x-icon {
    display: inline-block;
    position: relative;
    width: 1em;
    height: 1em;
    vertical-align: middle;
    margin: 0 -2px;
}

.hammer-x-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 0.75em;
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 5px rgba(255, 69, 0, 0.8));
}

.hx-1 {
    transform: translate(-50%, -50%) rotate(45deg);
}

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

/* --- BUTTONS (CLUSTERED, CENTERED, 3D REALISTIC) --- */
.nav-links {
    display: flex;
    gap: 1px;
    /* CLUSTERED - ~1mm */
    align-items: center;
}

/* 3D REALISTIC BUTTON */
.btn-holo-forge {
    position: relative;
    /* Dark Glass with Orange Tint */
    background: linear-gradient(180deg, rgba(30, 15, 5, 0.9) 0%, rgba(10, 5, 0, 0.95) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-top: 1px solid rgba(255, 140, 0, 0.5);
    /* Top Highlight for 3D */
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    /* Bottom Shadow for 3D */
    padding: 10px 18px;
    border-radius: 4px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;

    /* 3D Depth */
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 140, 0, 0.1);
}

/* ORANGE NEON TEXT (NO WHITE, NO YELLOW) */
.btn-holo-forge span {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;

    /* Pure Orange Gradient */
    background: linear-gradient(135deg, #ff8c00 0%, #ff4500 50%, #ff8c00 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonPulse 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 3px rgba(255, 69, 0, 0.5));
}

/* Hover: Press Down Effect */
.btn-holo-forge:hover,
.btn-holo-forge.nav-active {
    background: linear-gradient(180deg, rgba(50, 20, 5, 0.95) 0%, rgba(20, 10, 0, 1) 100%);
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(255, 69, 0, 0.3),
        inset 0 1px 0 rgba(255, 140, 0, 0.2);
    transform: translateY(1px);
    /* Pressed in */
}

.btn-holo-forge:hover span,
.btn-holo-forge.nav-active span {
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.9));
}

/* Active Click */
.btn-holo-forge:active {
    transform: translateY(2px);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.9);
}

/* --- DISCORD BUTTON (SAME STYLE AS OTHERS, PURPLE NEON TEXT) --- */
.btn-holo-discord {
    position: relative;
    /* Same dark glass background as other buttons */
    background: linear-gradient(180deg, rgba(30, 15, 5, 0.9) 0%, rgba(10, 5, 0, 0.95) 100%);
    /* Orange border like other buttons */
    border: 1px solid rgba(255, 69, 0, 0.3);
    border-top: 1px solid rgba(255, 140, 0, 0.5);
    border-bottom: 2px solid rgba(0, 0, 0, 0.8);
    padding: 10px 18px;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
    /* Same 3D depth as other buttons */
    box-shadow:
        0 4px 8px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 140, 0, 0.1);
}

/* Dark Holographic Purple Text */
.btn-holo-discord span,
.btn-holo-discord i {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 50%, #7d3c98 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonPulse 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 3px rgba(155, 89, 182, 0.5));
}

.btn-holo-discord:hover {
    background: linear-gradient(180deg, rgba(50, 20, 5, 0.95) 0%, rgba(20, 10, 0, 1) 100%);
    border-color: rgba(255, 69, 0, 0.6);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(155, 89, 182, 0.3),
        inset 0 1px 0 rgba(255, 140, 0, 0.2);
    transform: translateY(1px);
}

.btn-holo-discord:hover span,
.btn-holo-discord:hover i {
    filter: drop-shadow(0 0 8px rgba(155, 89, 182, 0.9));
}

/* --- MOBILE MENU --- */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ff4500);
    border-radius: 2px;
    box-shadow: 0 0 5px rgba(255, 69, 0, 0.5);
}

/* Responsive */
@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
}