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

:root {
    --bg: #0a0a0f;
    --bg2: #111118;
    --bg3: #16161f;
    --border: rgba(255,255,255,0.08);
    --border-hover: rgba(255,255,255,0.15);
    --text: #e8e8f0;
    --text-muted: #8888a8;
    --accent: #7c6df0;
    --accent2: #9d8ff5;
    --discord: #5865F2;
    --green: #34d399;
    --radius: 14px;
    --radius-lg: 22px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

/* ===== HEADER ===== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 999;
    padding: 0;
    transition: background 0.3s, border-bottom 0.3s;
}

#header.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 24px;
}

.logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
    background: var(--discord) !important;
    color: white !important;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: opacity 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    color: white !important;
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.6rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--accent2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 109, 240, 0.35);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    color: var(--text);
    border-color: var(--border-hover);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--green);
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.btn-outline:hover {
    background: rgba(52, 211, 153, 0.08);
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124,109,240,0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent2);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Code Card */
.hero-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    font-family: 'Fira Code', 'Courier New', monospace;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.hcard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg2);
    border-bottom: 1px solid var(--border);
}

.hcard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.hcard-dot.red { background: #ff5f57; }
.hcard-dot.yellow { background: #febc2e; }
.hcard-dot.green { background: #28c840; }

.hcard-title {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.hcard-body {
    padding: 1.5rem;
}

.hcard-line {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text);
}

.hcard-line.indent { padding-left: 1.5rem; }

.hcard-cursor {
    display: inline-block;
    color: var(--accent);
    animation: blink 1s step-end infinite;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.c-purple { color: #c084fc; }
.c-blue { color: #7dd3fc; }
.c-green { color: #86efac; }
.c-gray { color: var(--text-muted); font-style: italic; }

/* ===== SHINOBI SECTION ===== */
.section-shinobi {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.shinobi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.tag {
    display: inline-block;
    background: rgba(124,109,240,0.12);
    color: var(--accent2);
    border: 1px solid rgba(124,109,240,0.25);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.tag-dark {
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border-color: var(--border);
}

.section-shinobi h2,
.section-custom h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: #fff;
}

.shinobi-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.shinobi-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.shinobi-features li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feat-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.shinobi-features li strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.shinobi-features li p {
    color: var(--text-muted);
    font-size: 0.87rem;
}

.shinobi-actions { margin-top: 1rem; }

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.03em;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.shinobi-buttons {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.trial-note {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Phone Mockup */
.shinobi-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===== PHONE MOCKUP NETTOYÉ ===== */
.phone-frame {
    width: 240px;
    background: #000;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.phone-screen {
    background: #000;
    height: 460px; /* Taille fixe du téléphone */
    width: 100%;
    overflow: hidden;
    position: relative;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* Remplit le cadre sans déformer */
    object-position: top;  /* Affiche le haut de ton image */
    display: block;
}

/* Garde ceci pour la barre du bas */
.android-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: #888;
    font-size: 0.7rem;
}

.phone-screen {
    background: #0d0d14;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.app-manga-list {
    flex: 1;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.manga-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background 0.2s;
    cursor: pointer;
}

.manga-item.active {
    background: rgba(124,109,240,0.12);
    border: 1px solid rgba(124,109,240,0.2);
}

.manga-cover {
    width: 36px;
    height: 36px;
    background: var(--bg2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.manga-info {
    display: flex;
    flex-direction: column;
}

.manga-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text);
}

.manga-ch {
    font-size: 0.63rem;
    color: var(--text-muted);
    margin-top: 1px;
}

.app-nav {
    display: flex;
    justify-content: space-around;
    padding: 12px;
    border-top: 1px solid var(--border);
    font-size: 1.1rem;
}

.nav-active {
    filter: drop-shadow(0 0 6px var(--accent));
}

/* ===== CUSTOM SECTION ===== */
.section-custom {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--bg2);
}

.custom-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.custom-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.lang-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.lang-item {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: border-color 0.2s, transform 0.2s;
}

.lang-item:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.custom-examples {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.example-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s, transform 0.2s;
}

.example-card:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
}

.example-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.example-card strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 0.3rem;
}

.example-card p {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ===== FAQ ===== */
.section-faq {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.faq-item {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item:hover { border-color: var(--border-hover); }
.faq-item.open { border-color: rgba(124,109,240,0.3); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    gap: 1rem;
}

.faq-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.75;
    padding: 0 1.5rem;
}

.faq-a a {
    color: var(--accent2);
    text-decoration: none;
}

.faq-a a:hover { text-decoration: underline; }

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

/* ===== FOOTER ===== */
footer {
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
    background: var(--bg2);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 260px;
}

.footer-left .logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text);
}

.footer-left p {
    font-size: 0.87rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    padding: 0.4rem 0.9rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: color 0.2s, border-color 0.2s;
}

.social-link:hover {
    color: var(--text);
    border-color: var(--border-hover);
}

.footer-right {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    margin-bottom: 0.7rem;
    transition: color 0.2s;
}

.footer-col a:hover { color: var(--text); }

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active { display: flex; }

.modal-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 460px;
    position: relative;
    animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.92) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text-muted);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: color 0.2s, border-color 0.2s;
}

.modal-close:hover { color: var(--text); border-color: var(--border-hover); }

.modal-box h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.modal-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.payment-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.pay-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    text-align: center;
    transition: border-color 0.2s;
}

.pay-card:hover { border-color: var(--accent); }

.pay-icon { font-size: 1.8rem; display: block; margin-bottom: 0.5rem; }

.pay-card strong {
    display: block;
    font-size: 0.88rem;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.pay-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.pay-other {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    background: rgba(124,109,240,0.06);
    border: 1px solid rgba(124,109,240,0.15);
    border-radius: var(--radius);
    padding: 0.9rem 1.1rem;
    margin-bottom: 1.8rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.pay-other a {
    color: var(--accent2);
    text-decoration: none;
    font-weight: 600;
}

.pay-other a:hover { text-decoration: underline; }

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-inner,
    .shinobi-inner,
    .custom-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-card { display: none; }
    .shinobi-mockup { order: -1; }

    .hero h1 { font-size: 2.6rem; }
    .section-shinobi h2,
    .section-custom h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 64px;
        left: 0; right: 0;
        background: var(--bg2);
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.2rem;
    }

    .nav-links.open { display: flex; }
    .burger { display: flex; }

    .hero h1 { font-size: 2.2rem; }
    .lang-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-right { gap: 2rem; }
    .payment-cards { grid-template-columns: 1fr; }
}

/* ===== STATUS BAR ===== */
.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 14px 4px;
    background: #000;
    font-size: 0.65rem;
    font-weight: 700;
    color: white;
}

.status-icons {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== APP TOP BAR ===== */
.app-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.app-logo-icon {
    width: 32px;
    height: 32px;
    background: #1a0000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    border: 1px solid #330000;
}

.app-search {
    flex: 1;
    background: #1e1e1e;
    border-radius: 8px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #555;
    font-size: 0.7rem;
}

.app-settings {
    color: #aaa;
    flex-shrink: 0;
}

/* ===== MANGA GRID ===== */
.manga-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: #000;
    flex: 1;
    overflow: hidden;
}

.manga-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background: #111;
}

.manga-cover-img {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.manga-cover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 8px;
}

/* Death Note */
.death-note .dn-title {
    font-size: 0.6rem;
    font-weight: 900;
    color: #cc0000;
    letter-spacing: -1px;
    font-style: italic;
    text-shadow: 1px 1px 3px #000;
    margin-bottom: 4px;
    font-family: serif;
}

.death-note .dn-ryuk {
    font-size: 2rem;
    margin-bottom: -4px;
}

.death-note .dn-light {
    font-size: 1.3rem;
}

/* Demon Slayer */
.demon-slayer .ds-chars {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.demon-slayer .ds-title {
    font-size: 0.65rem;
    color: #a78bfa;
    font-weight: 700;
}

/* Dr Stone */
.dr-stone .dst-title {
    font-size: 0.7rem;
    font-weight: 900;
    color: #f97316;
    text-shadow: 0 0 8px #f97316;
    margin-bottom: 6px;
    font-style: italic;
}

.dr-stone .dst-char {
    font-size: 1.8rem;
}

/* Food Wars */
.food-wars .fw-chars {
    font-size: 1.8rem;
    margin-bottom: 4px;
}

.food-wars .fw-title {
    font-size: 0.55rem;
    color: #93c5fd;
    font-weight: 600;
}

.manga-label {
    background: #111;
    color: white;
    font-size: 0.6rem;
    font-weight: 800;
    text-align: center;
    padding: 6px 4px;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ===== ANDROID NAV ===== */
.android-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 20px;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: 0.7rem;
    color: #888;
}

/* Phone frame override pour nouveau mockup */
.phone-frame {
    width: 220px;
    background: #000;
    border-radius: 36px;
    border: 2px solid rgba(255,255,255,0.1);
    overflow: hidden;
    box-shadow:
        0 0 0 6px #0d0d14,
        0 0 0 7px rgba(255,255,255,0.05),
        0 40px 80px rgba(0,0,0,0.6);
}

.phone-screen {
    background: #000;
    display: flex;
    flex-direction: column;
    min-height: 460px;
}

/* ===== MINECRAFT CARD ===== */
.minecraft-card {
    border-color: rgba(34, 197, 94, 0.2) !important;
}

.minecraft-card:hover {
    border-color: rgba(34, 197, 94, 0.5) !important;
}

.minecraft-card strong {
    color: #4ade80 !important;
}

/* ===== YOUTUBE LINK ===== */
.youtube-link:hover {
    color: #ff0000 !important;
    border-color: rgba(255, 0, 0, 0.3) !important;
}
