:root {
    --neon-primary: #ff00ff;
    /* Magenta/Pink */
    --neon-secondary: #00ffff;
    /* Cyan */
    --neon-accent: #ff9900;
    /* Tiger Orange */
    --bg-dark: #050510;
    --bg-panel: rgba(10, 10, 25, 0.85);
    --text-main: #e0e0e0;
    --font-heading: 'Russo One', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

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

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

/* Background Effects */
.cyber-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%),
        linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 100;
}

.scanline {
    width: 100%;
    height: 100px;
    z-index: 101;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.1;
    position: absolute;
    bottom: 100%;
    animation: scanline 10s linear infinite;
    pointer-events: none;
}

@keyframes scanline {
    0% {
        bottom: 100%;
    }

    100% {
        bottom: -100px;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
.nav-item,
.cyber-btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.cyber-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.cyber-logo {
    font-size: 1.8rem;
    color: var(--text-main);
    text-shadow: 0 0 10px var(--neon-secondary);
}

.blink {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

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

.nav-item {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    transition: 0.3s;
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--neon-secondary);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 49;
    transform: translateY(-100%);
    transition: 0.4s ease-in-out;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
}

.mobile-link {
    font-family: var(--font-heading);
    color: white;
    font-size: 2rem;
    margin: 1rem 0;
    text-decoration: none;
    text-shadow: 0 0 10px var(--neon-primary);
}

/* Buttons */
.cyber-btn {
    background: transparent;
    border: 1px solid var(--neon-secondary);
    color: var(--neon-secondary);
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.cyber-btn:hover {
    background: var(--neon-secondary);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    transform: skewX(-10deg);
}

.primary-btn {
    border-color: var(--neon-primary);
    color: var(--neon-primary);
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.primary-btn:hover {
    background: var(--neon-primary);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

.secondary-btn {
    border-color: var(--text-main);
    color: var(--text-main);
}

.secondary-btn:hover {
    background: var(--text-main);
    color: var(--bg-dark);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 100px 5% 50px;
    overflow: hidden;
}

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.4;
    filter: contrast(1.2) brightness(0.6) hue-rotate(-10deg);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    gap: 2rem;
}

.hero-text {
    flex: 1;
    z-index: 2;
}

.glitch-title {
    font-size: 4.5rem;
    color: white;
    position: relative;
    text-shadow: 3px 3px 0px var(--neon-primary), -3px -3px 0px var(--neon-secondary);
    margin-bottom: 0.5rem;
}

.neon-subtitle {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 2px var(--neon-accent);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 153, 0, 0.4);
}

.cyber-desc {
    font-size: 1.3rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    border-left: 4px solid var(--neon-secondary);
    padding-left: 1.5rem;
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.08), transparent);
    padding: 1rem 0 1rem 1.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Mascot */
.hero-mascot {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.mascot-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.circle-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.floating-tiger {
    max-width: 550px;
    width: 100%;
    filter: drop-shadow(0 0 30px rgba(255, 153, 0, 0.4));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

/* Exchange Widget */
.exchange-widget-section {
    padding: 5rem 5%;
    position: relative;
    z-index: 2;
}

.cyber-container {
    max-width: 1000px;
    margin: 0 auto;
}

.cyber-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.cyber-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, var(--neon-primary), transparent, var(--neon-secondary));
    z-index: -1;
    border-radius: 14px;
    opacity: 0.6;
    animation: borderGlow 5s linear infinite;
}

@keyframes borderGlow {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

.card-header h3 {
    color: var(--neon-secondary);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exchange-inputs {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: var(--neon-accent);
    font-size: 0.9rem;
    font-weight: 700;
}

.crypto-select {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 6px;
    transition: 0.3s;
}

.crypto-select:focus-within {
    border-color: var(--neon-secondary);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.cyber-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    width: 100%;
    outline: none;
}

.coin-selector {
    padding: 0.5rem 1rem;
    background: var(--neon-secondary);
    color: black;
    font-weight: bold;
    font-family: var(--font-heading);
    border-radius: 4px;
    cursor: pointer;
}

.exchange-arrow {
    color: var(--neon-primary);
    font-size: 2rem;
}

/* Reserves Section */
.reserves-section {
    padding: 5rem 5%;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    color: var(--text-main);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.reserves-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.reserve-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: 0.4s;
    border-radius: 8px;
}

.reserve-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-secondary);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.coin-icon {
    font-size: 2.5rem;
    color: var(--neon-accent);
}

.coin-info {
    text-align: left;
}

.coin-info h4 {
    color: var(--text-main);
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.coin-info .amount {
    font-size: 1.2rem;
    color: var(--neon-secondary);
    font-family: var(--font-heading);
    font-weight: bold;
}

/* Footer */
.cyber-footer {
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #020205;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-col h5 {
    color: var(--neon-secondary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.social-links a {
    color: var(--text-main);
    font-size: 1.8rem;
    margin-left: 1.5rem;
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--neon-primary);
    text-shadow: 0 0 15px var(--neon-primary);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 900px) {
    .glitch-title {
        font-size: 3.5rem;
    }

    .neon-subtitle {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {

    .cyber-nav,
    .connect-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 2rem;
    }

    .hero-text {
        width: 100%;
        padding-right: 0;
    }

    .cyber-desc {
        margin: 2rem auto;
        border-left: none;
        border-top: 3px solid var(--neon-secondary);
        padding: 1rem 0;
    }

    .cta-group {
        justify-content: center;
    }

    .exchange-inputs {
        flex-direction: column;
        gap: 1.5rem;
    }

    .exchange-arrow {
        transform: rotate(90deg);
    }

    .floating-tiger {
        max-width: 80%;
    }

    .footer-grid {
        flex-direction: column;
        text-align: center;
    }

    .social-links a {
        margin: 0 1rem;
    }
}

@media (max-width: 480px) {
    .glitch-title {
        font-size: 2.5rem;
    }

    .neon-subtitle {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
