/* ===== ROOT & VARIÁVEIS ===== */
:root {
    --primary: #ffffff;
    --primary-dark: #f0f0f0;
    --secondary: #ff6b35;
    --bg-dark: #0a0a0a;
    --bg-darker: #000000;
    --bg-card: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-green: #10b981;
    --accent-orange: #ff6b35;
    --border-color: #2a2a2a;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== HEADER ===== */
header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    object-fit: cover;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 0.4rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent-orange);
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('../assets/capa.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo-wrapper {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2.5rem;
    background: #0f0f0f;
    border-radius: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 100px 30px rgba(132, 204, 22, 0.25), 0 0 40px 10px rgba(132, 204, 22, 0.15);
    animation: floatUp 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@keyframes floatUp {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.hero .subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 4rem;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== BUTTONS ===== */
.btn-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-ios {
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-weight: 700;
}

.btn-ios:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.btn-android {
    background: var(--accent-orange);
    color: white;
    border: 1px solid var(--accent-orange);
}

.btn-android:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.3);
}

.btn-icon {
    font-size: 1.5rem;
}

/* ===== BUTTON IMAGES ===== */
.btn-group-images {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: center;
}

.btn-group-images a {
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: inline-block;
}

.btn-group-images a:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.btn-group-images img {
    display: block;
    max-width: 100%;
    height: auto;
    min-width: 280px;
}

/* ===== FEATURES ===== */
.features {
    padding: 5rem 2rem;
    background: #0a0a0a;
    border-top: 1px solid var(--border-color);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.features-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: #1a1a1a;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    border-color: var(--accent-orange);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
    padding: 4rem 2rem;
    background: #000000;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 5rem 2rem;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* ===== FOOTER ===== */
footer {
    background: #000000;
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

/* ===== RECARGA PAGE ===== */
.recarga-page {
    background: #f8f9fa;
}

.recarga-white {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.recarga-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.recarga-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-top: 1.5rem;
}

.recarga-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
}

.recarga-header .subtitle {
    font-size: 1rem;
    color: #666666;
    font-weight: 400;
}

.recarga-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.recarga-card {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.recarga-card:hover {
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.15);
}

.recarga-card.popular,
.recarga-card.best-offer,
.recarga-card.premium {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.badge {
    position: absolute;
    top: -8px;
    right: 8px;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.coin-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.recarga-card h3 {
    font-size: 1.1rem;
    color: #000000;
    margin: 0.2rem 0;
}

.recarga-card .coin-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0.3rem 0;
}

.recarga-card .price {
    font-size: 1.3rem;
    color: #dc2626;
    font-weight: 700;
    margin: 0.4rem 0;
}

.recarga-card .discount {
    display: inline-block;
    background: #fef3c7;
    color: #b45309;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.btn-recarga {
    width: 100%;
    padding: 0.7rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

.btn-recarga:hover {
    background: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.4);
}

.btn-recarga:active {
    transform: scale(0.98);
}

.btn-comprar-container {
    width: 100%;
    max-width: 400px;
    margin: 1.5rem auto 0;
    padding: 1rem 2rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: none;
    letter-spacing: 0;
    display: block;
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}

.btn-comprar-container:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-comprar-container:hover:not(:disabled) {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.btn-comprar-container:active:not(:disabled) {
    transform: scale(0.98);
}

.recarga-card.selected {
    border-color: #dc2626;
    border-width: 3px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.recarga-card.selected::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    background: #dc2626;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
}

.custom-input {
    width: 100%;
    padding: 0.5rem 0.8rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    outline: none;
    background: #f9f9f9;
}

.custom-input:focus {
    border-color: #dc2626;
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1);
}

.custom-input::placeholder {
    color: #999999;
    font-weight: 400;
    font-size: 0.9rem;
}

.recarga-card-custom.selected .custom-input {
    border-color: #dc2626;
}

/* ===== PIX MODAL ===== */
.pix-modal {
    position: fixed;
    z-index: 9999;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}
.pix-modal-content {
    background: #fff;
    border-radius: 18px;
    padding: 2rem 1.5rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 350px;
    width: 100%;
    text-align: center;
    position: relative;
}
.pix-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #dc2626;
    cursor: pointer;
    font-weight: bold;
}
.btn-copiar-pix {
    margin: 1rem auto 0.5rem;
    padding: 0.7rem 1.5rem;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.btn-copiar-pix:hover {
    background: #b91c1c;
}
.pix-copy-paste {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 0.7rem 0.5rem;
    font-size: 0.95rem;
    word-break: break-all;
    margin-bottom: 0.5rem;
    color: #222;
}
.pix-status {
    margin-top: 1rem;
    font-weight: 600;
    color: #10b981;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        padding: 1.5rem 2rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 1px solid var(--border-color);
        display: none;
    }

    .nav-menu.active {
        display: flex;
        max-height: 300px;
    }

    .nav-menu li {
        padding: 0.5rem 0;
    }

    nav {
        position: relative;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 100px;
        height: 100px;
    }

    .btn-group {
        grid-template-columns: 1fr;
    }

    .btn-group-images {
        flex-direction: column;
        gap: 0.3rem;
    }

    .btn-group-images img {
        min-width: auto;
        max-width: 200px;
    }

    .features-header h2 {
        font-size: 2rem;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recarga-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 0.8rem;
    }

    .recarga-section {
        padding: 0 1rem;
    }

    .recarga-header h1 {
        font-size: 1.6rem;
    }

    .recarga-header .subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 2rem 1rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .recarga-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .recarga-card {
        padding: 1rem 0.8rem;
    }

    .recarga-card h3 {
        font-size: 1rem;
    }

    .recarga-card .coin-amount {
        font-size: 1.3rem;
    }

    .recarga-card .price {
        font-size: 1.1rem;
    }

    .coin-icon {
        width: 40px;
        height: 40px;
    }

    .badge {
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }
}

/* ===== SIMPLE FOOTER ===== */
.footer-simple {
    background: #fff;
    border-top: 1px solid #ececec;
    padding: 1.5rem 0;
    text-align: center;
    color: #888;
    font-size: 1rem;
    margin-top: 2rem;
}

.footer-content-simple {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== USER CARD ===== */
.user-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 400px;
    margin: 60px auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.avatar-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 10px 0;
}

.btn-entrar {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa500 100%);
    color: #ffffff;
    border: none;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    margin-top: 10px;
}

.btn-entrar:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-entrar:active {
    transform: translateY(0);
}

/* ===== SMALL CARD LEFT ===== */
.small-card-left {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    width: 200px;
    margin: 20px 0 0 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-content {
    color: #000000;
}

/* Desktop */
@media (min-width: 1024px) {
    .small-card-left {
        width: 200px;
        padding: 20px;
        margin: 20px 0 0 20px;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .small-card-left {
        width: 180px;
        padding: 18px;
        margin: 15px 0 0 15px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .small-card-left {
        width: 160px;
        padding: 15px;
        margin: 10px 0 0 10px;
    }
    
    .card-content {
        font-size: 0.9rem;
    }
}

/* ===== MODERN TOP-UP UI (TikTok Style) ===== */
.topup-container {
    background: #ffffff;
    color: #111111; /* Garantir que o texto padrão seja escuro */
    min-height: calc(100vh - 70px);
    padding: 2rem 1rem 8rem; /* Padding bottom for sticky footer */
    display: flex;
    justify-content: center;
}

.topup-inner {
    width: 100%;
    max-width: 900px;
}

.topup-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.topup-header-row h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #000;
}

.history-link {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

.history-link:hover {
    text-decoration: underline;
}

/* Profile Section */
.profile-section {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.avatar-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
}

.avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #111111;
}

.balance-info {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.mini-coin {
    width: 18px;
    height: 18px;
}

.balance-count {
    font-weight: 600;
    color: #ff9d00;
}

.action-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mini-card {
    background: #fafafa;
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s;
}

.mini-card:hover {
    background: #f0f0f0;
}

.mini-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.mini-card-text strong {
    font-size: 0.95rem;
    color: #111111;
}

.mini-card-text span {
    font-size: 0.8rem;
    color: #888;
}

.arrow-right, .copy-icon {
    font-size: 1.2rem;
    color: #ccc;
}

/* Promo Text */
.promo-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.promo-text .highlight {
    color: #fe2c55;
    font-weight: 600;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.package-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 1.2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    text-align: center;
}

.package-card:hover {
    border-color: #fe2c55;
    background: #fff;
}

.package-card.selected {
    border-color: #fe2c55;
    background: #fff;
}

.package-card.selected::after {
    content: "✓";
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fe2c55;
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.package-info img {
    width: 24px;
    height: 24px;
}

.coin-quant {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111111;
}

.price-val {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.custom-card .coin-quant {
    font-size: 1rem;
}

/* Special Offer */
.special-offer {
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2.5rem;
}

.offer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.offer-icon {
    font-size: 2rem;
}

.offer-details h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #111111;
}

.offer-details p {
    font-size: 0.85rem;
    color: #666;
}

.offer-status {
    margin-left: auto;
}

.status-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
}

/* Payment Info */
.payment-info {
    font-size: 0.9rem;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
}

.payment-icons img {
    height: 20px;
    object-fit: contain;
    filter: grayscale(0.5);
    opacity: 0.7;
}

/* Sticky Footer */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    padding: 1.2rem 1rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.05);
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.footer-inner {
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-display {
    display: flex;
    flex-direction: column;
}

.total-label {
    font-size: 0.85rem;
    color: #888;
}

.total-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
}

.btn-primary-topup {
    background: #fe2c55;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-primary-topup:hover {
    filter: brightness(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .action-cards {
        grid-template-columns: 1fr;
    }
    
    .topup-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

.btn-auth-nav {
    background: #fe2c55;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-auth-nav:hover {
    filter: brightness(1.1);
}

/* Responsive adjustments for auth btn */
@media (max-width: 768px) {
    .btn-auth-nav {
        width: 100%;
        margin-top: 0.5rem;
    }
}
