/* ==========================================================================
   NFG DESIGN SYSTEM & STYLESHEET
   Theme: Raw Punk, Cyberpunk, Neon, Distressed
   ========================================================================== */

:root {
    --bg-dark: #08090c;
    --bg-card: #111319;
    --bg-console: #050608;
    --neon-cyan: #00f0ff;
    --neon-pink: #ff007f;
    --neon-green: #39ff14;
    --neon-red: #ff3b30;
    --text-primary: #f0f3f6;
    --text-muted: #8b9bb0;
    --font-sans: 'Space Grotesk', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-marker: 'Permanent Marker', cursive;
    --shadow-cyan: 0 0 10px rgba(0, 240, 255, 0.4), 0 0 30px rgba(0, 240, 255, 0.2);
    --shadow-pink: 0 0 10px rgba(ff, 0, 127, 0.4), 0 0 30px rgba(ff, 0, 127, 0.2);
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

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

/* Scanline Effect (Cyberpunk Overlay) */
.cyber-scanline::before {
    content: " ";
    display: block;
    position: fixed;
    top: 0; left: 0; bottom: 0; right: 0;
    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));
    z-index: 9999;
    background-size: 100% 4px, 6px 100%;
    pointer-events: none;
}

/* HUD Grid Overlay background */
.hud-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center;
    pointer-events: none;
    z-index: 1;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
    border-left: 1px solid rgba(0, 240, 255, 0.1);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 5px;
    box-shadow: 0 0 5px var(--neon-cyan);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
}

/* Typography Utility */
.glitch-text {
    position: relative;
}
.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
}
.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 var(--neon-cyan);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}
.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 var(--neon-pink), 0 1px var(--neon-pink);
    clip: rect(85px, 450px, 140px, 0);
    animation: glitch-anim2 5s infinite linear alternate-reverse;
}

.text-pink { color: var(--neon-pink); }
.text-cyan { color: var(--neon-cyan); }
.text-green { color: var(--neon-green); }
.font-marker { font-family: var(--font-marker); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--neon-pink);
    color: white;
    box-shadow: var(--shadow-pink);
}

.btn-primary:hover {
    background: white;
    color: var(--neon-pink);
    box-shadow: 0 0 20px white;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--shadow-cyan);
}

.btn-secondary:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 20px white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 20px white;
    transform: translateY(-2px);
}

.glow-pink:hover {
    box-shadow: 0 0 25px var(--neon-pink);
}

/* Header Navigation */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    background: rgba(8, 9, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
}

.logo-text {
    font-family: var(--font-marker);
    font-size: 2.2rem;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.5);
}

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

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

/* Raven Mascot Graphics */
.raven-wrapper {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto 30px auto;
}

.raven-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 0 15px rgba(0, 240, 255, 0.4));
    transition: all 0.3s ease;
    animation: float 4s ease-in-out infinite;
}

.raven-wrapper:hover .raven-img {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(0, 240, 255, 0.7));
}

.neon-glow-behind {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.4) 0%, rgba(255, 0, 127, 0.15) 50%, rgba(0, 0, 0, 0) 70%);
    filter: blur(15px);
    z-index: 2;
}

.hero-title {
    font-family: var(--font-marker);
    font-size: 5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 3px 3px 0px var(--neon-pink), -3px -3px 0px var(--neon-cyan);
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--neon-cyan);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: var(--shadow-cyan);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Glitch Ticker */
.ticker-wrapper {
    background: #000;
    border-top: 2px solid var(--neon-cyan);
    border-bottom: 2px solid var(--neon-pink);
    padding: 12px 0;
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
    position: relative;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.ticker-scroll {
    display: inline-block;
    animation: ticker-anim 25s linear infinite;
    padding-left: 100%;
}

.ticker-scroll span {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 50px;
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.ticker-scroll span:nth-child(even) {
    color: var(--neon-cyan);
}

.ticker-scroll span:nth-child(3n) {
    color: var(--neon-pink);
}

/* Section Common Styles */
section {
    padding: 100px 20px;
    position: relative;
    z-index: 2;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-marker);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-subtitle {
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    font-size: 1.1rem;
}

/* Manifesto Section */
.gritty-card {
    background-color: var(--bg-card);
    border: 2px solid rgba(255, 0, 127, 0.3);
    border-radius: 8px;
    padding: 50px;
    box-shadow: var(--shadow-pink);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 0, 127, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 240, 255, 0.05) 0%, transparent 40%);
    position: relative;
}

.manifesto-body {
    font-size: 1.25rem;
    line-height: 1.8;
}

.manifesto-body p {
    margin-bottom: 25px;
}

.lead-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    border-left: 4px solid var(--neon-pink);
    padding-left: 20px;
}

.stamp-text {
    font-family: var(--font-marker);
    font-size: 2.2rem;
    color: var(--neon-cyan);
    transform: rotate(-2deg);
    display: inline-block;
    margin-top: 20px;
    text-shadow: var(--shadow-cyan);
}

/* Give a Fuq Game Section */
.game-console {
    background-color: var(--bg-console);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    box-shadow: var(--shadow-cyan);
    max-width: 650px;
    margin: 0 auto;
    overflow: hidden;
}

.console-header {
    background: #111;
    border-bottom: 2px solid var(--neon-cyan);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.red-dot { background: var(--neon-red); }
.yellow-dot { background: #ffcc00; }
.green-dot { background: var(--neon-green); }

.console-title {
    font-family: monospace;
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 10px;
}

.console-body {
    padding: 30px;
    text-align: center;
}

.counter-display {
    margin-bottom: 30px;
    background: rgba(0,0,0,0.5);
    border: 1px dashed rgba(0, 240, 255, 0.3);
    padding: 20px;
    border-radius: 4px;
}

.counter-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.counter-digits {
    font-family: monospace;
    font-size: 4rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    letter-spacing: 5px;
}

/* Glitch Button for Fuq Clicker */
.btn-give-fuq {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    font-family: var(--font-marker);
    font-size: 2rem;
    padding: 15px 40px;
    border: none;
    cursor: pointer;
    position: relative;
    outline: none;
    box-shadow: var(--shadow-cyan);
    letter-spacing: 2px;
    width: 100%;
    max-width: 350px;
    transition: transform 0.1s ease;
}

.btn-give-fuq:active {
    transform: scale(0.97);
}

.console-terminal {
    margin-top: 30px;
    background: rgba(0,0,0,0.8);
    border-radius: 4px;
    padding: 20px;
    text-align: left;
    font-family: monospace;
    font-size: 0.9rem;
    min-height: 120px;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-line {
    margin-bottom: 8px;
    color: var(--text-muted);
}

.prompt {
    color: var(--neon-pink);
    font-weight: bold;
}

/* BLINKING CURSOR */
.terminal-line::after {
    content: '_';
    animation: blink 1s step-end infinite;
    color: var(--neon-green);
}

/* Roaster Section */
.roaster-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 240, 255, 0.2);
    border-radius: 8px;
    padding: 40px;
    max-width: 750px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.roaster-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.neon-input {
    flex-grow: 1;
    background: var(--bg-dark);
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 4px;
    color: white;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.neon-input:focus {
    border-color: var(--neon-pink);
    box-shadow: var(--shadow-pink);
}

.roast-output-box {
    background: var(--bg-console);
    border-radius: 6px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-left: 4px solid var(--neon-pink);
}

.avatar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    flex-shrink: 0;
}

.roast-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--neon-pink);
    object-fit: cover;
}

.avatar-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-pink);
    margin-top: 5px;
}

.roast-bubble {
    position: relative;
    flex-grow: 1;
}

.roast-text {
    font-family: monospace;
    font-size: 1.1rem;
    color: #e0e0e0;
    line-height: 1.5;
}

/* Tokenomics Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.spec-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 240, 255, 0.1);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: var(--neon-cyan);
    box-shadow: var(--shadow-cyan);
    transform: translateY(-5px);
}

.spec-value {
    font-family: var(--font-marker);
    font-size: 4rem;
    color: var(--neon-cyan);
    text-shadow: var(--shadow-cyan);
    margin-bottom: 10px;
}

.spec-label {
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: white;
}

.spec-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contract block */
.contract-copy-block {
    background: var(--bg-console);
    border: 2px dashed rgba(255, 0, 127, 0.3);
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contract-header {
    font-size: 0.85rem;
    color: var(--neon-pink);
    font-weight: bold;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.copy-input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-dark);
    padding: 10px 10px 10px 20px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.contract-address {
    font-family: monospace;
    font-size: 1rem;
    color: var(--text-primary);
    word-break: break-all;
    text-align: left;
    margin-right: 15px;
}

.btn-copy {
    background: var(--neon-pink);
    color: white;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.btn-copy:hover {
    background: white;
    color: var(--bg-dark);
    box-shadow: 0 0 15px white;
}

.copy-feedback-msg {
    font-size: 0.9rem;
    font-weight: bold;
    height: 20px;
}

/* Footer styling */
.main-footer {
    background: #040507;
    padding: 60px 20px 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 600px;
}

.footer-brand span {
    font-size: 2rem;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-disclaimer {
    color: #5b6878;
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 150px;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-link:hover {
    color: var(--neon-pink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 25px;
    text-align: center;
    color: #4b5868;
    font-size: 0.8rem;
}

/* Floating decor chains */
.chain-decor {
    position: absolute;
    width: 80px;
    height: 100%;
    top: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image: radial-gradient(circle, #fff 10%, transparent 11%);
    background-size: 20px 20px;
}

.left-chain { left: 5%; }
.right-chain { right: 5%; }

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .main-header {
        padding: 15px 25px;
    }
    .nav-links {
        display: none; /* Mobile menu hidden for simplicity */
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 3px;
    }
    .raven-wrapper {
        width: 250px;
        height: 250px;
    }
    .wing {
        width: 180px;
        height: 250px;
    }
    .wing-left { left: -90px; }
    .wing-right { right: -90px; }
    .section-title {
        font-size: 2.8rem;
    }
    .gritty-card {
        padding: 30px 20px;
    }
    .roaster-form {
        flex-direction: column;
    }
    .copy-input-group {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .contract-address {
        margin-right: 0;
        text-align: center;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */

/* Glitch Animations */
@keyframes glitch-anim {
    0% { clip: rect(12px, 9999px, 86px, 0); }
    5% { clip: rect(44px, 9999px, 120px, 0); }
    10% { clip: rect(85px, 9999px, 5px, 0); }
    15% { clip: rect(9px, 9999px, 73px, 0); }
    20% { clip: rect(110px, 9999px, 45px, 0); }
    25% { clip: rect(25px, 9999px, 99px, 0); }
    30% { clip: rect(62px, 9999px, 12px, 0); }
    35% { clip: rect(88px, 9999px, 133px, 0); }
    40% { clip: rect(4px, 9999px, 30px, 0); }
    45% { clip: rect(74px, 9999px, 92px, 0); }
    50% { clip: rect(120px, 9999px, 55px, 0); }
    55% { clip: rect(15px, 9999px, 110px, 0); }
    60% { clip: rect(50px, 9999px, 8px, 0); }
    65% { clip: rect(98px, 9999px, 70px, 0); }
    70% { clip: rect(3px, 9999px, 115px, 0); }
    75% { clip: rect(80px, 9999px, 20px, 0); }
    80% { clip: rect(105px, 9999px, 60px, 0); }
    85% { clip: rect(32px, 9999px, 102px, 0); }
    90% { clip: rect(58px, 9999px, 140px, 0); }
    95% { clip: rect(13px, 9999px, 48px, 0); }
    100% { clip: rect(90px, 9999px, 95px, 0); }
}

@keyframes glitch-anim2 {
    0% { clip: rect(95px, 9999px, 15px, 0); }
    5% { clip: rect(13px, 9999px, 85px, 0); }
    10% { clip: rect(58px, 9999px, 105px, 0); }
    15% { clip: rect(32px, 9999px, 60px, 0); }
    20% { clip: rect(105px, 9999px, 20px, 0); }
    25% { clip: rect(80px, 9999px, 115px, 0); }
    30% { clip: rect(3px, 9999px, 70px, 0); }
    35% { clip: rect(98px, 9999px, 8px, 0); }
    40% { clip: rect(50px, 9999px, 110px, 0); }
    45% { clip: rect(15px, 9999px, 55px, 0); }
    50% { clip: rect(120px, 9999px, 92px, 0); }
    55% { clip: rect(74px, 9999px, 30px, 0); }
    60% { clip: rect(4px, 9999px, 133px, 0); }
    65% { clip: rect(88px, 9999px, 12px, 0); }
    70% { clip: rect(62px, 9999px, 99px, 0); }
    75% { clip: rect(25px, 9999px, 45px, 0); }
    80% { clip: rect(110px, 9999px, 73px, 0); }
    85% { clip: rect(9px, 9999px, 5px, 0); }
    90% { clip: rect(85px, 9999px, 120px, 0); }
    95% { clip: rect(44px, 9999px, 86px, 0); }
    100% { clip: rect(12px, 9999px, 90px, 0); }
}

/* Floating & Breathing Animation for Mascot */
@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}

/* Waking Up Entrance Animation */
@keyframes raven-wake {
    0% {
        transform: scale(0.5) translateY(40px);
        filter: brightness(0.2) contrast(1.2) drop-shadow(0 0 0px rgba(0, 240, 255, 0));
        opacity: 0;
    }
    60% {
        filter: brightness(1.2) contrast(1.1) drop-shadow(0 0 25px rgba(0, 240, 255, 0.8));
    }
    100% {
        transform: scale(1) translateY(0);
        filter: brightness(1) contrast(1) drop-shadow(0 0 15px rgba(0, 240, 255, 0.4));
        opacity: 1;
    }
}

/* Ticker Animation */
@keyframes ticker-anim {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Terminal Cursor Blink */
@keyframes blink {
    from, to { opacity: 0 }
    50% { opacity: 1 }
}

/* Screen Jitter (triggered on click) */
.shake-anim {
    animation: shake-screen 0.4s ease;
}

@keyframes shake-screen {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-4px, 3px); }
    30% { transform: translate(3px, -2px); }
    50% { transform: translate(-3px, -3px); }
    70% { transform: translate(4px, 2px); }
    90% { transform: translate(-1px, 1px); }
}

/* NFT Section */
.nft-section {
    padding: 100px 20px;
    background-color: var(--bg-body);
    border-top: 1px solid rgba(255, 0, 127, 0.15);
    position: relative;
}

.nft-showcase {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.nft-card {
    background-color: var(--bg-console);
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    padding: 30px;
    max-width: 800px;
    width: 100%;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.15);
    transition: all 0.3s ease;
}

.nft-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-pink);
}

.nft-image-wrapper {
    flex: 0 0 240px;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.nft-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nft-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nft-card-title {
    font-family: var(--font-marker);
    font-size: 2.2rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.nft-card-desc {
    color: #a0a5b5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: left;
}

@media (max-width: 768px) {
    .nft-card {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .nft-image-wrapper {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
    }
    .nft-details {
        align-items: center;
    }
    .nft-card-desc {
        text-align: center;
    }
}


