:root {
    --primary-color: #39ff14;
    /* Neon Green */
    --bg-color: #050505;
    /* Almost Black */
    --card-bg: #121212;
    /* Dark Grey */
    --text-color: #ffffff;
    --text-muted: #aaaaaa;
    --nav-height: 70px;
    --header-height: 60px;
    --font-main: 'Inter', sans-serif;
    --font-display: 'Rajdhani', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: calc(var(--nav-height) + 20px);
    /* Space for bottom nav */
    padding-top: var(--header-height);
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    z-index: 1000;
}

.app-header h1 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.highlight {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

/* NAVIGATION */
.app-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: #0a0a0a;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding-bottom: env(safe-area-inset-bottom);
}

.nav-item {
    background: none;
    border: none;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    height: 100%;
    padding: 5px 0;
}

.nav-item i {
    font-size: 1.2rem;
    margin-bottom: 4px;
    transition: transform 0.2s ease;
}

.nav-item.active {
    color: var(--primary-color);
}

.nav-item.active i {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* MAIN CONTENT */
main {
    padding: 20px;
    max-width: 800px;
    /* Limit width on desktop for app feel */
    margin: 0 auto;
    min-height: calc(100vh - var(--header-height) - var(--nav-height));
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

h2 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    padding-left: 10px;
    line-height: 1;
}

h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* CARDS */
.card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.emulator-option {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.emulator-option h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.emulator-option p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    margin-top: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    font-family: var(--font-display);
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn:hover {
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
}

.btn:active {
    transform: scale(0.98);
}

.btn.btn-large {
    font-size: 1.2rem;
    padding: 16px;
}

/* LISTS */
.step-list {
    margin-left: 20px;
    margin-top: 15px;
}

.step-list li {
    margin-bottom: 10px;
    padding-left: 10px;
}

.success-message {
    background-color: rgba(57, 255, 20, 0.1);
    color: var(--primary-color);
    padding: 15px;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid var(--primary-color);
}

/* SHOP STYLES */
.offer-card {
    text-align: center;
    border: 1px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: #000;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 4px;
    font-family: var(--font-display);
}

.coupon-box {
    background-color: #000;
    border: 2px dashed var(--primary-color);
    padding: 15px;
    margin: 20px 0;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coupon-code {
    font-size: 2rem;
    color: var(--primary-color);
    font-family: var(--font-display);
    letter-spacing: 2px;
}

/* PACK+ STYLES */
.pack-card {
    text-align: left;
}

.highlight-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-list,
.check-list,
.simple-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.feature-list li i {
    color: var(--primary-color);
    width: 25px;
    text-align: center;
}

.access-info {
    text-align: center;
    font-style: italic;
    color: #fff;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
}

/* FPS+ STYLES */
.compatibility-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.badge {
    background-color: #222;
    border: 1px solid #444;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
}

.info-box {
    background-color: #1a1a1a;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-box h4 {
    color: #fff;
    margin-bottom: 10px;
}

.info-box ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

.cta-section {
    text-align: center;
    margin-top: 25px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

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

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

/* DESKTOP TWEAKS */
@media (min-width: 768px) {
    .app-nav {
        top: var(--header-height);
        bottom: auto;
        height: 60px;
        border-top: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 0;
    }

    body {
        padding-top: calc(var(--header-height) + 70px);
        padding-bottom: 20px;
    }

    .nav-item {
        flex-direction: row;
        gap: 10px;
        font-size: 0.9rem;
    }

    .nav-item i {
        margin-bottom: 0;
        font-size: 1.1rem;
    }

    /* Layout specific for larger screens */
    .feature-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

/* NEW TUTORIAL STYLES */
.tutorial-step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.step-number {
    background-color: var(--primary-color);
    color: #000;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 15px;
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.tutorial-step p {
    margin: 0;
    font-size: 0.95rem;
    color: #eee;
    line-height: 1.4;
}

.download-section {
    margin-top: 35px;
    text-align: center;
    border-top: 1px dashed rgba(57, 255, 20, 0.3);
    padding-top: 25px;
}

.download-section p {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.pulse-green {
    background-color: var(--primary-color);
    color: #000;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
    }
}


/* === INTERACTIVITY & PARTICLES === */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: var(--bg-color);
    /* Fallback */
}

/* Header Glow Loop Effect */
.glow-loop {
    background: linear-gradient(90deg, #fff 0%, #39ff14 50%, #fff 100%);
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-loop 3s linear infinite;
}

@keyframes shimmer-loop {
    0% {
        background-position: 200% center;
    }

    100% {
        background-position: -200% center;
    }
}

/* === NEW ANIMATIONS === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    /* Setup for animation */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
    /* Ensuring logic handles the animation trigger */
}

/* Staggered delay helpers if needed, though simple observer is often enough */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Enhanced Interactive Hovers */
.emulator-option {
    transition: all 0.3s ease;
}

.emulator-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(57, 255, 20, 0.15);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.tutorial-step {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tutorial-step:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    border-left: 2px solid var(--primary-color);
}

/* Floating Animation for "Alive" feel */
@keyframes floatY {

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

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

.floating {
    animation: floatY 4s ease-in-out infinite;
}

/* Hover Interactions */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(57, 255, 20, 0.15);
}

.nav-item:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
}

.nav-item:hover i {
    transform: translateY(-4px) scale(1.1);
}

/* === LOJA TAB UPGRADE === */
.premium-offer {
    border: 2px solid var(--primary-color);
    background: radial-gradient(circle at top right, rgba(57, 255, 20, 0.1), #121212 60%);
    position: relative;
    overflow: hidden;
    padding-top: 40px;
}

.ribbon-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
}

.ribbon-badge span {
    position: absolute;
    display: block;
    width: 180px;
    padding: 10px 0;
    background-color: var(--primary-color);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #000;
    font-weight: bold;
    font-family: var(--font-display);
    text-align: center;
    top: 30px;
    right: -45px;
    transform: rotate(45deg);
    font-size: 1.1rem;
    z-index: 10;
}

.neon-text-flashing {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
    margin-bottom: 15px;
    animation: text-flash 2s infinite alternate;
}

@keyframes text-flash {
    0% {
        text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
        opacity: 0.9;
    }

    100% {
        text-shadow: 0 0 25px rgba(57, 255, 20, 1);
        opacity: 1;
    }
}

.offer-desc {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}

.games-showcase {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.list-title {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.game-tags span {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.coupon-area {
    text-align: center;
    margin: 25px 0;
}

.coupon-display {
    background: #000;
    border: 2px dashed var(--primary-color);
    color: var(--primary-color);
    padding: 15px;
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
    letter-spacing: 2px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.coupon-display:active {
    transform: scale(0.95);
    background: rgba(57, 255, 20, 0.1);
}

.coupon-display i {
    font-size: 1rem;
    margin-left: 10px;
    opacity: 0.7;
}

.alert-text {
    color: #ff3b3b;
    font-size: 0.85rem;
    font-weight: bold;
}

.mega-pulse {
    animation: mega-pulse-anim 2s infinite;
}

@keyframes mega-pulse-anim {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 0 25px rgba(57, 255, 20, 0.5);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}


/* === PROMO STRIP === */
.promo-strip {
    background-color: #ff0000;
    color: #fff;
    text-align: center;
    font-size: 0.85rem;
    font-weight: bold;
    padding: 8px 0;
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.5s ease-out;
}

body {
    padding-top: calc(var(--header-height) + 40px);
    /* Adjusted for banner */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* === PACK+ UPGRADES === */
.pack-highlight-box {
    background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.1), transparent);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 15px 0;
    text-align: center;
    margin-bottom: 20px;
}

.pack-highlight-box p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
}

.premium-list li {
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.premium-list li i {
    font-size: 1.5rem;
    margin-top: 5px;
}

.premium-list li div {
    display: flex;
    flex-direction: column;
}

.premium-list li div strong {
    color: var(--primary-color);
    margin-bottom: 3px;
}

.premium-list li div span {
    font-size: 0.85rem;
    color: #ccc;
}

.vitalicio-badge {
    background-color: #ffd700;
    color: #000;
    text-align: center;
    font-weight: bold;
    padding: 8px;
    border-radius: 4px;
    margin: 20px 0;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.guarantee-text {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 15px;
}


/* PACK+ Enhancements */
.deadline-banner {
    text-align: center;
    background: rgba(255, 0, 0, 0.15);
    color: #ff4d4d;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 0, 0, 0.3);
    font-weight: bold;
    font-size: 0.95rem;
    animation: flash-red 2s infinite;
}

@keyframes flash-red {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(255, 77, 77, 0.5);
    }

    100% {
        opacity: 0.8;
    }
}

.premium-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.benefit-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.benefit-box h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.copy-body {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.5;
}

.pulse-border {
    border: 1px solid var(--primary-color);
    color: #fff;
    background: rgba(57, 255, 20, 0.05);
}


/* SUPPORT FAB & MODAL */
.fab-btn {
    position: fixed;
    bottom: 80px;
    /* Above nav bar */
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
    z-index: 2000;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float-btn 3s ease-in-out infinite;
}

@keyframes float-btn {
    0% {
        transform: translateY(0);
    }

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

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

.fab-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.8);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #121212;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.2);
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    position: relative;
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-content h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: var(--font-display);
}

.modal-content p {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    line-height: 1;
}

.contact-btn {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    margin-bottom: 15px;
    text-align: left;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-decoration: none;
}

.contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.contact-btn i {
    font-size: 2rem;
    margin-right: 20px;
    width: 30px;
    display: flex;
    justify-content: center;
}

.contact-btn.insta i {
    color: #E1306C;
}

.contact-btn.whats i {
    color: #25D366;
}

.contact-btn span {
    font-size: 1.1rem;
    font-weight: 700;
    display: block;
}

.contact-btn small {
    display: block;
    font-weight: 400;
    opacity: 0.6;
    font-size: 0.85rem;
    margin-top: 4px;
}


/* VIDEO PLAYER */
.video-wrapper {
    position: relative;
    padding-bottom: 177.77%;
    /* 9:16 Aspect Ratio (Mobile) */
    height: 0;
    overflow: hidden;
    margin-bottom: 25px;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.15);
    background-color: #000;

    /* Center */
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* DESKTOP VIDEO OVERRIDE (16:9) */
@media (min-width: 768px) {
    .video-wrapper {
        padding-bottom: 56.25%;
        /* 16:9 Standard */
        max-width: 700px;
    }
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* HEADER PROFILE BADGE */
.header-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-profile-badge {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    overflow: hidden;
    background: #000;
}

.header-profile-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PACK+ Grid Layout */
.games-grid-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns (2x2 style) */
    gap: 10px;
    margin-bottom: 20px;
}

.g-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 8px;
    padding: 10px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #eee;
    font-weight: 600;
    transition: all 0.2s;
}

.g-item:hover {
    background: rgba(57, 255, 20, 0.1);
    transform: translateY(-2px);
}

.g-item i {
    color: var(--primary-color);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}


/* Scarcity Block */
.scarcity-block {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.scarcity-header {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 8px;
    font-family: var(--font-display);
}

.blink-red {
    color: #ff3b3b;
    animation: simple-flash 1s infinite alternate;
}

@keyframes simple-flash {
    from {
        opacity: 0.6;
    }

    to {
        opacity: 1;
    }
}

.p-bar-track {
    width: 100%;
    height: 10px;
    background: #222;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 8px;
}

.p-bar-fill {
    width: 92%;
    height: 100%;
    background: linear-gradient(90deg, #ff3b3b, #ff0000);
    border-radius: 5px;
    position: relative;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
    animation: fill-bar 2s ease-out forwards;
}

@keyframes fill-bar {
    0% {
        width: 0;
    }

    100% {
        width: 92%;
    }
}

.scarcity-sub {
    text-align: center;
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.scarcity-sub strong {
    color: #fff;
}

/* COPY BUTTON */
.copy-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 5px;
    display: inline-block;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: #000;
}

.copy-btn:active {
    transform: scale(0.95);
}
