:root {
    --accent-gold: #c9933a;
    --gold-glow: rgba(201, 147, 58, 0.35);
    --gold-dim: rgba(201, 147, 58, 0.12);
    --bg-dark: #080b10;
    --bg-card: rgba(12, 16, 24, 0.7);
    --primary: #00c851;
    --primary-glow: rgba(0, 200, 81, 0.4);
    --primary-dim: rgba(0, 200, 81, 0.15);
    --secondary: #1a1e2a;
    --danger: #e63946;
    --accent-blue: #3498db;
    --text-main: #f0f4f8;
    --text-muted: #8892a4;
    --border-light: rgba(255, 255, 255, 0.07);
    --glass-bg: rgba(12, 16, 26, 0.55);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 200, 81, 0.06), transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(201, 147, 58, 0.05), transparent 30%);
}

.app-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 18px;
}

/* ── Ticker ── */
.ticker-wrap {
    background: var(--primary);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    height: 36px;
}

.ticker-label {
    background: rgba(0,0,0,0.35);
    padding: 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.2);
}

.ticker-content {
    overflow: hidden;
    flex: 1;
    white-space: nowrap;
    position: relative;
}

.ticker-text {
    display: inline-block;
    animation: ticker-scroll 28s linear infinite;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding-left: 20px;
}

@keyframes ticker-scroll {
    0%   { transform: translateX(100vw); }
    100% { transform: translateX(-100%); }
}

/* ── Header ── */
.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.glass-header::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.top-banner {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 20px;
    object-fit: contain;
    max-height: 240px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 1px solid var(--glass-border);
}

.svg-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

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

.logo-icon {
    width: 30px;
    height: 30px;
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 10px;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.logo h1 {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 40%, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 81, 0.15);
    border: 1px solid rgba(0, 200, 81, 0.35);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.live-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.2s ease-in-out infinite;
}

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

/* ── Telegram Kanal Linki ── */
.telegram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-decoration: none;
    color: var(--text-main);
    border-color: rgba(0, 200, 81, 0.2);
    transition: all 0.3s;
}

.telegram-link:active {
    transform: scale(0.98);
    background: rgba(0, 200, 81, 0.08);
}

.tg-icon {
    font-size: 18px;
    color: var(--primary);
}

.tg-text {
    font-size: 13px;
    font-weight: 500;
}

.tg-text strong {
    color: var(--primary);
    font-weight: 700;
}

.tg-arrow {
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

/* ── Warning Banner ── */
.warning-banner {
    padding: 14px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-color: rgba(201, 147, 58, 0.25);
    background: rgba(201, 147, 58, 0.06);
}

.warning-icon {
    font-size: 22px;
    flex-shrink: 0;
    color: var(--accent-gold);
}

.warning-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.warning-text strong {
    color: var(--accent-gold);
}

/* ── Status Card ── */
.status-card {
    padding: 18px 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.status-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.status-header h2 {
    font-size: 16px;
    font-weight: 700;
}

.status-badge {
    background: rgba(0, 200, 81, 0.18);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(0, 200, 81, 0.3);
}

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

@keyframes pulse-anim {
    0%   { box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.4); }
    70%  { box-shadow: 0 0 0 6px rgba(0, 200, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 200, 81, 0); }
}

.status-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.stats {
    display: flex;
    gap: 12px;
}

.stat-item {
    flex: 1;
    background: rgba(0,0,0,0.3);
    padding: 10px 12px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 3px;
    border: 1px solid var(--border-light);
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
}

.stat-value.highlight {
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
}

.upgrade-btn {
    width: 100%;
    margin-top: 14px;
    padding: 11px;
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.18), rgba(0, 200, 81, 0.06));
    border: 1px solid rgba(0, 200, 81, 0.3);
    border-radius: 11px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s;
}

.upgrade-btn:active {
    transform: scale(0.97);
    background: linear-gradient(135deg, rgba(0, 200, 81, 0.28), rgba(0, 200, 81, 0.12));
}

/* ── Category Grid ── */
.section-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.cat-btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.cat-btn::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.cat-btn:active {
    transform: scale(0.96);
}

.cat-btn:active::after {
    opacity: 1;
}

.cat-btn.sahaci   { border-top: 2px solid var(--primary); }
.cat-btn.bahis    { border-top: 2px solid #e63946; }
.cat-btn.drugs    { border-top: 2px solid #9b59b6; }
.cat-btn.hat      { border-top: 2px solid var(--accent-blue); }
.cat-btn.genel    { border-top: 2px solid var(--accent-gold); }
.cat-btn.banka    { border-top: 2px solid #1abc9c; }

.cat-btn:active .icon-wrapper {
    box-shadow: 0 0 14px var(--primary-glow);
}

.cat-price {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
}

.icon-wrapper {
    width: 46px;
    height: 46px;
    background: rgba(0,0,0,0.35);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid var(--border-light);
    transition: all 0.3s;
}

.label {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* ── Amount Grid ── */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 24px;
}

.amount-btn {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 14px 8px;
    cursor: pointer;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
}

.amount-btn:active {
    transform: scale(0.96);
}

.amount-btn.featured {
    border-color: var(--primary);
    box-shadow: 0 0 16px rgba(0, 200, 81, 0.15);
}

/* ── How To Section ── */
.howto-section {
    padding: 18px 20px;
    margin-bottom: 24px;
}

.howto-section .section-title {
    color: var(--accent-gold);
}

.howto-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.howto-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #007a31);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    border: 2px solid rgba(0, 200, 81, 0.4);
}

.step-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.step-info strong {
    font-size: 13px;
    color: var(--text-main);
}

.step-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Modal Overlay ── */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
    padding: 20px;
}

.modal {
    width: 100%;
    max-width: 420px;
    padding: 24px;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* ── Panel shared ── */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.panel-header h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
}

.close-btn {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.close-btn:active {
    background: rgba(255,255,255,0.2);
}

/* ── Pricing ── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: var(--text-main);
    position: relative;
    overflow: hidden;
}

.pricing-card:active { transform: scale(0.96); }

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 200, 81, 0.15);
}

.featured-badge {
    position: absolute;
    top: 8px; right: -24px;
    background: linear-gradient(135deg, var(--primary), #007a31);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 30px;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
}

.plan-icon {
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan-icon .svg-icon {
    width: 26px; height: 26px;
}

.plan-name  { font-size: 15px; font-weight: 700; }
.plan-price { font-size: 19px; font-weight: 800; color: var(--primary); }
.plan-desc  { font-size: 11px; color: var(--text-muted); }

/* ── Wallet / Payment ── */
.selected-plan-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.3);
    padding: 13px 16px;
    border-radius: 11px;
    border: 1px solid var(--border-light);
    font-size: 15px;
    font-weight: 600;
}

.crypto-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 9px;
}

.crypto-options {
    display: flex;
    gap: 10px;
}

.crypto-btn {
    flex: 1;
    padding: 10px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.crypto-btn.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-dim);
}

.wallet-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.wallet-address-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.4);
    padding: 12px 14px;
    border-radius: 11px;
    border: 1px solid var(--border-light);
    margin-bottom: 6px;
}

.wallet-address-box code {
    flex: 1;
    font-size: 12px;
    word-break: break-all;
    color: var(--primary);
    font-family: monospace;
}

.wallet-hint {
    font-size: 10px;
    color: var(--danger);
    margin-bottom: 8px;
    font-weight: 600;
}

.copy-btn {
    background: var(--primary-dim);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.copy-btn:active { transform: scale(0.95); }

.payment-notice {
    background: rgba(0, 200, 81, 0.07);
    border: 1px solid rgba(0, 200, 81, 0.2);
    border-radius: 11px;
    padding: 13px;
}

.payment-notice p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

.payment-notice strong {
    color: var(--primary);
}

.action-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary), #007a31);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 200, 81, 0.3);
    transition: all 0.3s;
}

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

.payment-success {
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    width: 50px; height: 50px;
    margin: 0 auto 12px;
    background: rgba(0, 200, 81, 0.2);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
}

.payment-success p { color: var(--primary); font-size: 14px; font-weight: 600; }

/* ── Footer ── */
.glass-footer {
    margin-top: auto;
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 11px;
}

/* ── Utilities ── */
.hidden { display: none !important; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
