/* YY5 Casino Online — Main Stylesheet */

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

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #141416;
    color: white;
    line-height: 1.6;
}

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

/* ===== HEADER ===== */
.header {
    background: rgba(20, 20, 22, 0.96);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #FF6BB2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-circle {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #FF4E8D, #c9196a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(255,78,141,0.5);
}

.logo-circle img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    color: #FF6BB2;
    font-size: 1.5em;
    font-weight: 900;
    letter-spacing: -0.5px;
}

/* Nav links */
.nav-links-extended {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: nowrap;
}

.nav-links-extended a {
    color: white;
    text-decoration: none;
    padding: 6px 11px;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 0.85em;
    white-space: nowrap;
}

.nav-links-extended a:hover,
.nav-links-extended a.current {
    color: #FF6BB2;
    background: rgba(255,107,178,0.1);
}

/* Buttons */
.btn {
    background: linear-gradient(135deg, #FF4E8D, #c9196a);
    color: white;
    padding: 11px 22px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    white-space: nowrap;
    font-size: 0.9em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,78,141,0.45);
}

.btn-green {
    background: #00d084;
}

.btn-green:hover {
    box-shadow: 0 8px 20px rgba(0,208,132,0.4);
}

.btn-large {
    font-size: 1.2em;
    padding: 18px 38px;
}

/* Mobile toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5em;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s;
}

.mobile-menu-toggle:hover {
    background: rgba(255,107,178,0.1);
    color: #FF6BB2;
}

/* ===== MAIN ===== */
.main {
    margin-top: 78px;
    padding: 40px 0;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 60px 0;
}

.hero h1 {
    font-size: clamp(1.8em, 5vw, 3em);
    font-weight: 900;
    margin-bottom: 20px;
    color: #FF6BB2;
    line-height: 1.2;
}

.hero > p {
    font-size: 1.1em;
    color: #abb8c3;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-logo-wrap {
    text-align: center;
    margin: 40px 0;
}

.hero-logo-wrap img {
    width: 160px;
    height: 160px;
    border-radius: 36px;
    box-shadow: 0 0 50px rgba(255,78,141,0.5), 0 20px 40px rgba(0,0,0,0.4);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { box-shadow: 0 0 50px rgba(255,78,141,0.5), 0 20px 40px rgba(0,0,0,0.4); }
    50%       { box-shadow: 0 0 90px rgba(255,78,141,0.8), 0 20px 50px rgba(0,0,0,0.5); }
}

/* Welcome box */
.welcome-box {
    background: rgba(255,107,178,0.08);
    border: 2px solid #FF6BB2;
    border-radius: 14px;
    padding: 30px;
    margin: 40px auto;
    max-width: 640px;
    text-align: left;
}

.welcome-box h3 {
    color: #FF6BB2;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.15em;
}

.welcome-box ul { list-style: none; }

.welcome-box li {
    margin-bottom: 12px;
    font-size: 1.05em;
    color: #ddd;
}

.welcome-box li strong { color: #f0c159; }

.urgency-inline {
    background: rgba(255,68,68,0.1);
    border: 1px solid rgba(255,68,68,0.3);
    padding: 14px;
    border-radius: 8px;
    margin-top: 18px;
    text-align: center;
    color: #ff6666;
    font-weight: bold;
}

/* ===== STATS ===== */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,107,178,0.3);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: #FF6BB2;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255,78,141,0.15);
}

.stat-number {
    font-size: 2.4em;
    font-weight: 900;
    color: #f0c159;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    color: #abb8c3;
    text-transform: uppercase;
    font-size: 0.82em;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

/* ===== SECTION ===== */
.section {
    margin: 80px 0;
}

.section-title {
    text-align: center;
    font-size: clamp(1.4em, 3.5vw, 2.5em);
    color: #FF6BB2;
    margin-bottom: 16px;
    font-weight: bold;
}

.section-subtitle {
    text-align: center;
    color: #abb8c3;
    font-size: 1.05em;
    margin-bottom: 46px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FEATURE CARDS ===== */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,107,178,0.25);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF6BB2;
    box-shadow: 0 10px 30px rgba(255,78,141,0.12);
}

.feature-icon {
    font-size: 2.8em;
    margin-bottom: 16px;
    display: block;
}

.feature-card img.feature-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 10px rgba(255,78,141,0.3));
}

.feature-card h3 {
    color: #FF6BB2;
    margin-bottom: 12px;
    font-size: 1.1em;
}

.feature-card p {
    color: #abb8c3;
    font-size: 0.92em;
    line-height: 1.65;
}

.feature-card .feature-detail {
    margin-top: 12px;
    font-size: 0.85em;
    color: #888;
}

/* ===== PROMO / BONUS CARDS ===== */
.bonus-box {
    background: rgba(255,107,178,0.06);
    border: 1px solid rgba(255,107,178,0.3);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s;
}

.bonus-box:hover {
    border-color: #FF6BB2;
    background: rgba(255,107,178,0.1);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 3px 8px rgba(255,78,141,0.25));
}

.bonus-info h3 { color: #FF6BB2; margin-bottom: 4px; font-size: 1.05em; }
.bonus-amount { font-size: 1.8em; font-weight: 900; color: #f0c159; line-height: 1.2; }
.bonus-desc { color: #abb8c3; font-size: 0.88em; margin-top: 8px; line-height: 1.6; }
.bonus-rules { list-style: none; margin-top: 10px; }
.bonus-rules li { color: #aaa; font-size: 0.83em; padding: 3px 0; }
.bonus-rules li::before { content: '✓ '; color: #FF6BB2; font-weight: bold; }

/* ===== AFFILIATE TABLE ===== */
.ag-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    max-width: 740px;
    margin: 0 auto;
}

.ag-table thead tr { background: rgba(255,107,178,0.12); }
.ag-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 0.88em;
    font-weight: 700;
    color: #FF6BB2;
    letter-spacing: 0.3px;
}
.ag-table td {
    padding: 13px 20px;
    font-size: 0.92em;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: #ccc;
}
.ag-table tbody tr:hover td { background: rgba(255,107,178,0.05); }
.ag-table tbody tr:last-child td { border-bottom: none; }
.rate-val { color: #f0c159; font-weight: 800; font-size: 1.1em; }

/* ===== VIP CARDS ===== */
.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.vip-card {
    border: 2px solid;
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}

.vip-card:hover { transform: translateY(-5px); }

.vip-card.bronze {
    background: linear-gradient(135deg, rgba(255,107,178,0.08), rgba(255,78,141,0.04));
    border-color: #FF6BB2;
}
.vip-card.silver {
    background: linear-gradient(135deg, rgba(240,193,89,0.08), rgba(240,193,89,0.04));
    border-color: #f0c159;
}
.vip-card.diamond {
    background: linear-gradient(135deg, rgba(185,242,255,0.08), rgba(185,242,255,0.04));
    border-color: #B9F2FF;
}

.vip-card h3 {
    font-size: 1.4em;
    margin: 12px 0 8px;
}
.vip-card.bronze h3 { color: #FF6BB2; }
.vip-card.silver h3 { color: #f0c159; }
.vip-card.diamond h3 { color: #B9F2FF; }

.vip-card .vip-min { color: #abb8c3; margin-bottom: 18px; font-size: 0.9em; }
.vip-card ul { list-style: none; text-align: left; }
.vip-card li { color: #abb8c3; margin-bottom: 10px; font-size: 0.92em; }
.vip-card li strong { color: #fff; }

/* ===== TESTIMONIALS ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 10px;
    transition: border-color 0.3s;
}

.review-card:hover { border-color: rgba(255,107,178,0.3); }

.review-text {
    color: #abb8c3;
    font-style: italic;
    margin-bottom: 12px;
    line-height: 1.65;
    font-size: 0.92em;
}

.review-author {
    color: #FF6BB2;
    font-weight: bold;
    font-size: 0.88em;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: rgba(255,107,178,0.05);
    border: 1px solid rgba(255,107,178,0.2);
    border-radius: 20px;
    text-align: center;
    padding: 60px 30px;
    margin: 80px 0;
}

.cta-section h2 {
    font-size: clamp(1.5em, 4vw, 2.4em);
    color: #FF6BB2;
    margin-bottom: 16px;
    font-weight: 900;
}

.cta-section > p {
    color: #abb8c3;
    max-width: 680px;
    margin: 0 auto 30px;
    font-size: 1.05em;
    line-height: 1.7;
}

.urgent-box {
    background: rgba(255,68,68,0.08);
    border: 1px solid rgba(255,68,68,0.3);
    border-radius: 10px;
    padding: 18px;
    margin: 24px auto;
    max-width: 600px;
    color: #ff7777;
    font-weight: 600;
    line-height: 1.7;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.trust-badge { text-align: center; }
.trust-badge .tb-icon { font-size: 2em; margin-bottom: 6px; }
.trust-badge p { color: #abb8c3; font-size: 0.82em; }

/* ===== GAMES GRID ===== */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
}

.game-card {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}

.game-card:hover {
    border-color: rgba(255,107,178,0.4);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255,78,141,0.1);
}

.game-card-icon { font-size: 2em; margin-bottom: 10px; }
.game-card h4 { color: #FF6BB2; margin-bottom: 6px; font-size: 0.95em; }
.game-card p { color: #abb8c3; font-size: 0.82em; line-height: 1.5; }

/* ===== ACTIVITY ICON CARDS ===== */
.act-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 14px;
}

.act-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 20px 12px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: default;
}

.act-card:hover {
    background: rgba(255,107,178,0.08);
    border-color: rgba(255,107,178,0.35);
    transform: translateY(-3px);
}

.act-card img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.act-card:hover img { transform: scale(1.08); }

.act-card h4 {
    font-size: 0.8em;
    font-weight: 600;
    color: #ccc;
    line-height: 1.4;
}

/* ===== APP ===== */
.app-download {
    text-align: center;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,107,178,0.15);
    border-radius: 20px;
    padding: 52px 30px;
    margin: 80px 0;
}

.app-logo {
    width: 100px;
    height: 100px;
    border-radius: 24px;
    margin-bottom: 22px;
    box-shadow: 0 8px 36px rgba(255,78,141,0.4);
    animation: logoPulse 4s ease-in-out infinite;
}

.app-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 14px 26px;
    border-radius: 14px;
    color: #fff;
    transition: all 0.3s;
}

.app-btn:hover {
    background: rgba(255,107,178,0.12);
    border-color: #FF6BB2;
    transform: translateY(-3px);
}

.app-btn .app-ic { font-size: 2.2em; line-height: 1; }
.app-btn small { display: block; font-size: 0.68em; opacity: 0.6; margin-bottom: 2px; }
.app-btn strong { font-size: 0.98em; }

/* ===== HERO BANNER (with bg image + mascot) ===== */
.hero-banner {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    margin: -40px -20px 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.45) saturate(1.15);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(20,20,22,0.92) 35%, rgba(233,30,140,0.18) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 56px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: center;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-logo-main {
    width: 110px;
    height: 110px;
    border-radius: 26px;
    margin-bottom: 20px;
    box-shadow: 0 0 40px rgba(255,78,141,0.55);
    animation: logoPulse 3s ease-in-out infinite;
}

.hero-banner h1 {
    font-size: clamp(2em, 5vw, 3.2em);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 16px;
    color: #fff;
    text-align: left;
}

.hero-banner h1 span {
    background: linear-gradient(135deg, #FF4E8D, #f0c159);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-banner p {
    font-size: 1.08em;
    color: #cfd6e0;
    max-width: 520px;
    margin-bottom: 28px;
    text-align: left;
}

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mascot {
    width: 320px;
    height: 320px;
    object-fit: contain;
    filter: drop-shadow(0 12px 40px rgba(255,78,141,0.5));
    animation: mascotFloat 4s ease-in-out infinite;
}

/* Big logo showcase in hero (45x.com.br style — rounded + shadow + glow) */
.hero-logo-showcase {
    width: 300px;
    height: 300px;
    object-fit: contain;
    border-radius: 48px;
    box-shadow:
        0 20px 50px rgba(0,0,0,0.45),
        0 0 60px rgba(255,78,141,0.5),
        0 0 120px rgba(255,78,141,0.2);
    animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 20px 50px rgba(0,0,0,0.45), 0 0 60px rgba(255,78,141,0.5), 0 0 120px rgba(255,78,141,0.2);
    }
    50% {
        transform: translateY(-14px);
        box-shadow: 0 28px 60px rgba(0,0,0,0.5), 0 0 90px rgba(255,78,141,0.75), 0 0 150px rgba(255,78,141,0.3);
    }
}

@keyframes mascotFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

.hero-mascot-badge {
    position: absolute;
    top: 10px;
    right: 0;
    background: linear-gradient(135deg, #f0c159, #d4a017);
    color: #141416;
    font-size: 1.7em;
    font-weight: 900;
    padding: 12px 20px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(240,193,89,0.4);
    transform: rotate(8deg);
    line-height: 1;
    text-align: center;
    animation: badgePulse 2s ease-in-out infinite;
}

.hero-mascot-badge small {
    display: block;
    font-size: 0.32em;
    font-weight: 700;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes badgePulse {
    0%, 100% { transform: rotate(8deg) scale(1); }
    50% { transform: rotate(8deg) scale(1.06); }
}

/* ===== POPULAR GAME CARDS ===== */
.game-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.game-card-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: block;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.06);
}

.game-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.game-card-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(255,78,141,0.25);
    border-color: rgba(255,107,178,0.4);
}

.game-card-img:hover img { transform: scale(1.08); }

.game-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.66em;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
}

.game-tag.hot { background: #FF4E8D; color: #fff; }
.game-tag.new { background: #f0c159; color: #141416; }
.game-tag.live { background: #e11d48; color: #fff; }

.game-card-label {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(10,10,12,0.95) 20%, transparent);
    padding: 32px 12px 12px;
    z-index: 2;
}

.game-card-label strong {
    display: block;
    font-size: 0.92em;
    color: #fff;
    font-weight: 700;
}

.game-card-label span {
    font-size: 0.72em;
    color: #f0c159;
}

/* ===== PROMO BANNER GRID ===== */
.promo-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.promo-banner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    aspect-ratio: 600/340;
    border: 1px solid rgba(255,107,178,0.18);
    transition: all 0.3s;
}

.promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.promo-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(255,78,141,0.22);
    border-color: rgba(255,107,178,0.45);
}

.promo-banner:hover img { transform: scale(1.06); }

.promo-banner-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(20,20,22,0.85);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.82em;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255,107,178,0.3);
}

/* ===== VIP BANNER ===== */
.vip-banner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 32px;
    max-height: 240px;
}

.vip-banner img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    filter: brightness(0.55) saturate(1.1);
}

.vip-banner-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    background: linear-gradient(90deg, rgba(20,20,22,0.85) 30%, transparent);
}

.vip-banner-text h3 {
    font-size: clamp(1.3em, 3vw, 2em);
    font-weight: 900;
    color: #f0c159;
    margin-bottom: 8px;
}

.vip-banner-text p {
    color: #cfd6e0;
    max-width: 420px;
    font-size: 1em;
}

.vip-banner-text strong { color: #FF6BB2; }

/* ===== MINA MISTERIOSA FEATURE ===== */
.mina-feature {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(233,30,140,0.08), rgba(240,193,89,0.05));
    border: 1px solid rgba(233,30,140,0.25);
    border-radius: 24px;
    padding: 36px;
}

.mina-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 50px rgba(0,0,0,0.5);
}

.mina-img img { width: 100%; height: auto; display: block; }

.mina-copy { display: flex; flex-direction: column; align-items: flex-start; }

.mina-badge {
    background: rgba(240,193,89,0.15);
    border: 1px solid var(--border-g, rgba(240,193,89,0.25));
    color: #f0c159;
    font-size: 0.74em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 5px 14px;
    border-radius: 25px;
    margin-bottom: 14px;
}

.mina-copy h2 {
    font-size: clamp(1.6em, 3.5vw, 2.2em);
    font-weight: 900;
    color: #FF6BB2;
    margin-bottom: 4px;
}

.mina-amount {
    font-size: clamp(2.6em, 6vw, 3.6em);
    font-weight: 900;
    background: linear-gradient(135deg, #f0c159, #d4a017);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.mina-sub { color: #abb8c3; margin-bottom: 16px; font-size: 1.05em; }
.mina-sub strong { color: #fff; }

.mina-copy > p {
    color: #abb8c3;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.95em;
}

.mina-copy > p strong { color: #f0c159; }

@media (max-width: 820px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-left { align-items: center; }
    .hero-banner h1, .hero-banner p { text-align: center; }
    .hero-cta-row { justify-content: center; }
    .hero-right { order: -1; }
    .hero-mascot { width: 220px; height: 220px; }
    .hero-logo-showcase { width: 200px; height: 200px; border-radius: 36px; }
    .hero-mascot-badge { font-size: 1.3em; right: 10%; }
    .mina-feature { grid-template-columns: 1fr; gap: 28px; padding: 24px; text-align: center; }
    .mina-copy { align-items: center; }
}

/* ===== APP SHOWCASE ===== */
.app-showcase {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-logo-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.app-logo-sm {
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(255,78,141,0.4);
    flex-shrink: 0;
}

.app-brand {
    font-size: 1.4em;
    font-weight: 900;
    color: #FF6BB2;
    line-height: 1.2;
}

.app-sub {
    font-size: 0.85em;
    color: #abb8c3;
    margin-top: 2px;
}

.app-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.app-features li {
    font-size: 0.95em;
    color: #ccc;
    line-height: 1.5;
}

.app-features li strong { color: #fff; }

.app-btns-v {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-btn-big {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    padding: 14px 22px;
    border-radius: 14px;
    color: #fff;
    transition: all 0.3s;
    max-width: 240px;
}

.app-btn-big:hover {
    background: rgba(255,107,178,0.14);
    border-color: #FF6BB2;
    transform: translateX(4px);
}

.app-btn-big span { font-size: 2em; line-height: 1; }
.app-btn-big small { display: block; font-size: 0.68em; opacity: 0.6; margin-bottom: 2px; }
.app-btn-big strong { font-size: 0.98em; }

.app-rating {
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

/* Phone mockup */
.phone-mockup-wrap {
    position: relative;
    flex-shrink: 0;
}

.phone-mockup {
    width: 280px;
    background: #1a1a1e;
    border-radius: 40px;
    border: 3px solid rgba(255,107,178,0.35);
    box-shadow:
        0 0 0 6px rgba(255,107,178,0.08),
        0 30px 80px rgba(0,0,0,0.6),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    padding: 16px 10px 20px;
    position: relative;
    z-index: 1;
}

.phone-notch {
    width: 80px;
    height: 8px;
    background: #0d0d0f;
    border-radius: 4px;
    margin: 0 auto 12px;
}

.phone-screen {
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
}

.phone-home-btn {
    width: 40px;
    height: 5px;
    background: rgba(255,255,255,0.15);
    border-radius: 3px;
    margin: 12px auto 0;
}

.phone-glow {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(255,78,141,0.4) 0%, transparent 70%);
    filter: blur(20px);
    z-index: 0;
}

@media (max-width: 820px) {
    .app-showcase {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .app-logo-row { justify-content: center; }
    .app-features { align-items: flex-start; display: inline-flex; text-align: left; }
    .app-btns-v { align-items: center; }
    .app-btn-big { max-width: 280px; width: 100%; }
    .app-rating { justify-content: center; }
    .phone-mockup-wrap { margin: 0 auto; }
    .phone-mockup { width: 240px; }
}

/* ===== 404 PAGE ===== */
.error-404 {
    text-align: center;
    padding: 60px 20px 80px;
    max-width: 720px;
    margin: 0 auto;
}

.error-mascot {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 12px 36px rgba(255,78,141,0.5));
    animation: mascotFloat 4s ease-in-out infinite;
}

.error-code {
    font-size: clamp(4.5em, 14vw, 8em);
    font-weight: 900;
    line-height: 1;
    margin: 10px 0;
    background: linear-gradient(135deg, #FF4E8D, #f0c159);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 20px rgba(255,78,141,0.35));
}

.error-404 h1 {
    font-size: clamp(1.4em, 4vw, 2em);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
}

.error-404 > p {
    color: #abb8c3;
    font-size: 1.05em;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 32px;
}

.error-404 > p strong { color: #f0c159; }

.error-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.error-links {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,107,178,0.15);
    border-radius: 16px;
    padding: 28px 24px;
}

.error-links h4 {
    color: #FF6BB2;
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 16px;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
}

.error-links-grid a {
    color: #abb8c3;
    font-size: 0.88em;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    transition: all 0.2s;
}

.error-links-grid a:hover {
    color: #fff;
    background: rgba(255,107,178,0.12);
}

/* ===== FOOTER ===== */
.footer {
    background: #0d0d0f;
    border-top: 1px solid rgba(255,107,178,0.15);
    padding: 40px 0 28px;
    margin-top: 80px;
}

.footer-inner {
    text-align: center;
}

/* Multi-column footer with internal links */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(4, 1fr);
    gap: 32px;
    padding-bottom: 32px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-about {
    color: #8892a4;
    font-size: 0.85em;
    line-height: 1.6;
    margin: 14px 0 16px;
    max-width: 280px;
}

.footer-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fbadge {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,107,178,0.2);
    color: #abb8c3;
    font-size: 0.72em;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.92em;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    color: #8892a4;
    font-size: 0.84em;
    padding: 5px 0;
    transition: color 0.2s;
}

.footer-col a:hover { color: #FF6BB2; }

.footer-logo-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.footer-logo-row img {
    width: 46px;
    height: 46px;
    border-radius: 10px;
}

.footer-logo-row span {
    font-size: 1.6em;
    font-weight: 900;
    color: #FF6BB2;
}

.footer-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.footer-nav a {
    color: #abb8c3;
    font-size: 0.88em;
    transition: color 0.2s;
}

.footer-nav a:hover { color: #FF6BB2; }

.footer-disc {
    color: rgba(255,255,255,0.28);
    font-size: 0.78em;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }

    .nav-links-extended {
        display: flex;
        flex-direction: column;
        gap: 0;
        background: rgba(20,20,22,0.98);
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 16px;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.4);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .nav-links-extended.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links-extended a {
        padding: 12px 16px;
        font-size: 0.95em;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        text-align: center;
    }

    .nav { position: relative; flex-wrap: wrap; }
    .nav-btns { gap: 8px; }
    .btn-large { font-size: 1em; padding: 14px 24px; }
    .welcome-box { padding: 22px 16px; }
    .vip-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; text-align: left; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-about { max-width: none; }
}

@media (max-width: 480px) {
    .nav-btns .btn:first-child { display: none; }
    .stats { grid-template-columns: repeat(2, 1fr); }
}
