body {
    background-color: #0a0a0a;
    color: white;
    font-family: 'Inter', sans-serif;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    overflow-x: hidden;
}

.top-banner {
    background-color: #ff4d4d;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 5px;
}

.container {
    max-width: 700px;
    width: 92%;
    text-align: center;
    margin-top: 30px;
}

h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    background: #000;
    margin-bottom: 15px;
}

video {
    width: 100%;
    display: block;
}

.watching-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #888;
    font-size: 13px;
    margin-bottom: 20px;
}

.vip-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 15px;
    padding: 30px 15px;
    margin-bottom: 30px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 15px 0;
}

.btn-main {
    background: #333; /* Default disabled look */
    color: #888;
    border: none;
    padding: 14px 25px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: not-allowed;
    width: 100%;
    max-width: 350px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.btn-main.active {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(168, 85, 247, 0.3);
}

.btn-main.active:hover {
    transform: scale(1.02);
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.payment-btn {
    background: #1a1a1a;
    border: 1px solid #333;
    color: white;
    padding: 12px 5px;
    border-radius: 8px;
    font-size: 11px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.payment-btn:hover {
    background: #222;
}

.payment-btn.selected {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}

.telegram-btn {
    background: #a855f7;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 14px;
}

footer {
    margin-top: auto;
    padding: 30px 0;
    color: #555;
    font-size: 11px;
}

/* Social Proof Toast */
#social-proof {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid #333;
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

#social-proof.show {
    transform: translateY(0);
}

.proof-icon {
    background: #22c55e;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Hidden Admin Button */
.admin-access {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
    background: transparent;
    cursor: default;
    z-index: 9999;
}

/* Unavailable Toast */
#toast-msg {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #ff4d4d;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    display: none;
    z-index: 10001;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
