@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
    --bg-dark: #060b14;
    --bg-card: #0f1724;
    --accent-gold: #FFD700;
    --accent-gold-gradient: linear-gradient(135deg, #FFD700, #FDB931);
    --accent-blue: #00B4D8;
    --accent-emerald: #00FF9D;
    --text-main: #E0E6ED;
    --text-muted: #94A3B8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(15, 23, 36, 0.7);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.header {
    text-align: center;
    padding: 60px 20px 40px;
    background: radial-gradient(circle at top, rgba(255, 215, 0, 0.05), transparent 70%);
    border-bottom: 1px solid var(--glass-border);
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.header p {
    color: var(--text-muted);
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Pricing Summary */
.pricing-summary {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    margin: 40px auto;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.price-tag {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: 'Oswald', sans-serif;
    line-height: 1;
    margin: 10px 0;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 1.2rem;
}

.savings-badge {
    background: rgba(255, 215, 0, 0.1);
    color: var(--accent-gold);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

/* Timer */
.timer-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #ef4444;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.method-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 25px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.method-card:hover {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 0, 0.05);
    transform: translateY(-2px);
}

.method-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.method-icon {
    font-size: 2rem;
}

.method-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-main);
}

.method-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.arrow-icon {
    color: var(--text-muted);
}

/* Trust Section */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.trust-item span {
    color: var(--accent-emerald);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: #111827;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-close:hover {
    color: #fff;
}

.qr-code {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    margin: 20px auto;
    width: 200px;
    height: 200px;
}

.qr-code img {
    width: 100%;
    height: 100%;
}

.address-box {
    background: #000;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    margin: 20px 0;
    font-family: monospace;
    color: var(--accent-gold);
    word-break: break-all;
    position: relative;
}

.copy-btn {
    background: var(--accent-gold);
    color: #000;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.copy-btn:hover {
    background: #fff;
}

.step-list {
    text-align: left;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    list-style: none;
}

.step-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.step-list li::before {
    content: '•';
    color: var(--accent-gold);
    position: absolute;
    left: 0;
}

/* Telegram Float (Existing) */
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0088cc;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.telegram-float:hover {
    transform: translateY(-5px);
}

.telegram-float svg {
    width: 30px;
    height: 30px;
    fill: #fff;
}

/* Live Support Floater (New) */
.support-floater {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(15, 23, 36, 0.95);
    border: 1px solid var(--accent-emerald);
    padding: 15px 20px;
    border-radius: 50px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 15px;
    backdrop-filter: blur(10px);
    animation: float 4s ease-in-out infinite;
    max-width: 300px;
}

.support-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: relative;
}

.support-avatar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #22c55e;
    border: 2px solid #fff;
    border-radius: 50%;
}

.support-text strong {
    color: var(--accent-emerald);
    display: block;
    font-size: 0.9rem;
    line-height: 1.2;
}

.support-text span {
    color: var(--text-muted);
    font-size: 0.75rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .header {
        padding: 40px 20px 20px;
    }

    .header h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .pricing-summary {
        padding: 20px;
        margin: 20px auto;
    }

    .price-tag {
        font-size: 3rem;
    }

    .timer-container {
        font-size: 1.2rem;
    }

    .method-card {
        padding: 15px;
    }

    .method-icon {
        font-size: 1.5rem;
    }

    .method-title {
        font-size: 1rem;
    }

    .support-floater {
        bottom: 20px;
        left: 20px;
        right: auto;
        padding: 10px 15px;
        max-width: 200px;
    }

    .support-text {
        font-size: 0.8rem;
    }

    .telegram-float {
        bottom: 100px;
        /* Move up slightly on mobile to avoid overlap */
        right: 20px;
    }

    .modal-content {
        padding: 25px;
        width: 95%;
    }

    .address-box {
        font-size: 0.8rem;
    }
}