/* ==========================================================================
   Venom Store - Coming Soon Page Stylesheet
   Theme: Red & Black Cyber Venom Gaming Aesthetic
   ========================================================================== */

:root {
    /* Color Palette - Red & Black Theme */
    --bg-dark: #050508;
    --bg-card: rgba(18, 10, 14, 0.82);
    --border-color: rgba(255, 0, 51, 0.25);
    --border-glow: rgba(255, 26, 64, 0.5);
    
    /* Neons & Reds */
    --venom-red: #ff0033;
    --venom-red-bright: #ff1a40;
    --venom-red-glow: rgba(255, 0, 51, 0.6);
    --dark-crimson: #99001c;
    --crimson-glow: rgba(153, 0, 28, 0.6);
    --electric-fire: #ff4d00;
    --whatsapp-green: #25d366;
    --whatsapp-glow: rgba(37, 211, 102, 0.5);

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --text-dim: #71717a;

    /* Fonts */
    --font-arabic: 'Cairo', sans-serif;
    --font-tech: 'Orbitron', sans-serif;

    /* Transitions */
    --transition-fast: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset & Box Sizing */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-arabic);
    background-color: var(--bg-dark);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    direction: rtl;
    line-height: 1.6;
}

/* Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Ambient Glowing Background Orbs */
.glow-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(130px);
    z-index: 2;
    pointer-events: none;
    opacity: 0.45;
    animation: floatOrb 12s infinite alternate ease-in-out;
}

.orb-1 {
    top: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--venom-red), transparent 70%);
}

.orb-2 {
    bottom: -15%;
    left: -10%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--dark-crimson), transparent 70%);
    animation-delay: -6s;
}

.orb-3 {
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--electric-fire), transparent 75%);
    opacity: 0.15;
    animation: pulseOrb 8s infinite alternate ease-in-out;
}

@keyframes floatOrb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(40px) scale(1.1); }
}

@keyframes pulseOrb {
    0% { opacity: 0.1; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1.15); }
}

/* Main Container Layout */
.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 850px;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Logo Section */
.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.logo-wrapper {
    position: relative;
    width: 84px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    inset: -6px;
    background: linear-gradient(135deg, var(--venom-red), var(--dark-crimson));
    border-radius: 24px;
    filter: blur(16px);
    opacity: 0.85;
    animation: logoGlowPulse 3s infinite alternate ease-in-out;
}

.logo-icon {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #140508, #050204);
    border: 2px solid rgba(255, 0, 51, 0.7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.6rem;
    color: var(--venom-red-bright);
    box-shadow: inset 0 0 15px rgba(255, 0, 51, 0.25),
                0 10px 25px rgba(0, 0, 0, 0.8);
}

.brand-tag {
    margin-top: 0.75rem;
    font-family: var(--font-tech);
    font-weight: 900;
    font-size: 0.95rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
}

@keyframes logoGlowPulse {
    0% { opacity: 0.6; filter: blur(10px); transform: scale(0.98); }
    100% { opacity: 1; filter: blur(18px); transform: scale(1.04); }
}

/* Glassmorphism Main Card */
.glass-card {
    width: 100%;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85),
                inset 0 1px 1px rgba(255, 255, 255, 0.08),
                0 0 40px rgba(255, 0, 51, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--venom-red), var(--electric-fire), transparent);
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 0, 51, 0.08);
    border: 1px solid rgba(255, 0, 51, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--venom-red-bright);
    margin-bottom: 1.5rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--venom-red-bright);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--venom-red);
    animation: dotPulse 1.5s infinite;
}

@keyframes dotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(255, 0, 51, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 0, 51, 0); }
}

/* Main Title */
.main-title {
    font-family: var(--font-arabic);
    font-size: 3.2rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}

.venom-text {
    background: linear-gradient(135deg, var(--venom-red-bright) 0%, var(--electric-fire) 50%, var(--dark-crimson) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: var(--font-tech);
    position: relative;
    display: inline-block;
    padding: 0 4px;
}

/* Description Text */
.description-box {
    margin-bottom: 2.5rem;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.sub-text {
    font-size: 1.15rem;
    color: var(--text-muted);
    font-weight: 600;
}

.highlight-days {
    color: var(--venom-red-bright);
    font-weight: 800;
    padding: 2px 8px;
    background: rgba(255, 0, 51, 0.12);
    border-radius: 6px;
    border: 1px dashed rgba(255, 0, 51, 0.4);
}

/* Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    direction: ltr; /* Keeps D:H:M:S format clean */
}

.timer-card {
    background: rgba(10, 4, 7, 0.9);
    border: 1px solid rgba(255, 0, 51, 0.3);
    border-radius: 18px;
    padding: 1.2rem 1rem;
    min-width: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6),
                inset 0 0 15px rgba(255, 0, 51, 0.08);
    transition: var(--transition-fast);
}

.timer-card:hover {
    transform: translateY(-4px);
    border-color: var(--venom-red-bright);
    box-shadow: 0 12px 25px rgba(255, 0, 51, 0.3),
                inset 0 0 20px rgba(255, 0, 51, 0.15);
}

.number-wrapper {
    overflow: hidden;
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-number {
    font-family: var(--font-tech);
    font-size: 2.7rem;
    font-weight: 900;
    color: #ffffff;
    background: linear-gradient(180deg, #ffffff 30%, var(--text-muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.timer-label {
    font-family: var(--font-arabic);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--venom-red-bright);
    margin-top: 0.4rem;
    text-transform: uppercase;
}

.timer-separator {
    font-family: var(--font-tech);
    font-size: 2rem;
    font-weight: 800;
    color: var(--venom-red);
    animation: blinkSeparator 1s infinite;
}

@keyframes blinkSeparator {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Call to Action Wrapper */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

/* WhatsApp Main Button */
.btn-whatsapp {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 520px;
    padding: 1.1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 18px;
    font-weight: 800;
    font-size: 1.15rem;
    overflow: hidden;
    box-shadow: 0 12px 30px var(--whatsapp-glow),
                0 0 0 0 rgba(37, 211, 102, 0.4);
    transition: var(--transition-bounce);
    animation: whatsappPulse 3s infinite;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.35) 50%,
        transparent 70%
    );
    transform: rotate(45deg) translateY(-100%);
    transition: transform 0.8s ease;
}

.btn-whatsapp:hover .btn-glow {
    transform: rotate(45deg) translateY(100%);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6),
                0 0 30px rgba(255, 0, 51, 0.4);
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(0.99);
}

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

.whatsapp-icon {
    font-size: 1.7rem;
    animation: iconShake 4s infinite ease-in-out;
}

.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.btn-whatsapp:hover .btn-arrow {
    transform: translateX(-6px);
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 10px 25px var(--whatsapp-glow); }
    50% { box-shadow: 0 15px 35px rgba(37, 211, 102, 0.7), 0 0 20px rgba(255, 0, 51, 0.4); }
    100% { box-shadow: 0 10px 25px var(--whatsapp-glow); }
}

@keyframes iconShake {
    0%, 90%, 100% { transform: rotate(0deg); }
    92% { transform: rotate(-15deg); }
    94% { transform: rotate(15deg); }
    96% { transform: rotate(-10deg); }
    98% { transform: rotate(10deg); }
}

/* Phone Display & Copy Pill */
.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 0, 51, 0.2);
    border-radius: 50px;
    font-family: var(--font-tech);
    font-size: 1rem;
    color: var(--text-muted);
    direction: ltr;
}

.phone-display i {
    color: var(--venom-red-bright);
    font-size: 0.9rem;
}

.copy-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.copy-btn:hover {
    color: var(--venom-red-bright);
    transform: scale(1.15);
}

/* Supported Platforms Bar */
.platforms-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.platforms-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dim);
}

.platform-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.platform-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.platform-tag:hover {
    background: rgba(255, 0, 51, 0.15);
    border-color: var(--venom-red);
    color: #ffffff;
    transform: translateY(-2px);
}

.platform-tag i {
    font-size: 1.1rem;
    color: var(--venom-red-bright);
}

/* Footer Styling */
.footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.88rem;
    color: var(--text-dim);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer strong {
    color: var(--text-muted);
}

.system-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.status-indicator {
    width: 6px;
    height: 6px;
    background-color: var(--venom-red-bright);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--venom-red);
}

/* Notification Toast */
.toast {
    position: fixed;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    background: #99001c;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
}

.toast.show {
    bottom: 30px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .glass-card {
        padding: 2.2rem 1.2rem;
        border-radius: 22px;
    }

    .main-title {
        font-size: 2.4rem;
    }

    .lead-text {
        font-size: 1.2rem;
    }

    .sub-text {
        font-size: 1rem;
    }

    .countdown-container {
        gap: 0.5rem;
    }

    .timer-card {
        min-width: 72px;
        padding: 0.9rem 0.6rem;
        border-radius: 14px;
    }

    .timer-number {
        font-size: 2rem;
    }

    .timer-label {
        font-size: 0.75rem;
    }

    .timer-separator {
        font-size: 1.5rem;
    }

    .btn-whatsapp {
        padding: 1rem 1.2rem;
        font-size: 0.98rem;
    }

    .whatsapp-icon {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .timer-card {
        min-width: 65px;
        padding: 0.7rem 0.4rem;
    }

    .timer-number {
        font-size: 1.7rem;
    }

    .btn-whatsapp {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .btn-arrow {
        display: none;
    }
}
