/* ============================================
   CYBERPUNK LUXURY THEME — ID WALA
   ============================================ */

/* ============================================
   ID WALA ANIMATED LOGO
   ============================================ */
.id-wala-logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 6px;
    user-select: none;
}

/* Smaller version for footer */
.id-wala-logo.footer-logo {
    font-size: 1.4rem;
    letter-spacing: 4px;
}

.id-letter {
    display: inline-block;
    background: linear-gradient(180deg, #ff2255 0%, #ff00aa 40%, #cc00ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 1)) drop-shadow(0 0 22px rgba(180, 0, 255, 0.7));
    animation: letterWave 2.5s ease-in-out infinite;
    transition: filter 0.2s;
}

.id-letter:nth-child(1) {
    animation-delay: 0s;
}

.id-letter:nth-child(2) {
    animation-delay: 0.1s;
}

.id-letter:nth-child(4) {
    animation-delay: 0.25s;
}

.id-letter:nth-child(5) {
    animation-delay: 0.35s;
}

.id-letter:nth-child(6) {
    animation-delay: 0.45s;
}

.id-letter:nth-child(7) {
    animation-delay: 0.55s;
}

@keyframes letterWave {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scaleY(1);
    }

    30% {
        transform: translate3d(0, -6px, 0) scaleY(1.07);
    }

    60% {
        transform: translate3d(0, 2px, 0) scaleY(0.96);
    }
}

.id-wala-dot {
    display: inline-block;
    -webkit-text-fill-color: #ff003c;
    color: #ff003c;
    font-size: 2.6rem;
    line-height: 1;
    margin: 0 6px;
    animation: dotSpin 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(255, 0, 60, 1));
}

@keyframes dotSpin {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }

    25% {
        transform: scale(1.8) rotate(180deg);
        opacity: 0.6;
    }

    50% {
        transform: scale(0.7) rotate(360deg);
        opacity: 1;
    }

    75% {
        transform: scale(1.4) rotate(540deg);
        opacity: 0.7;
    }
}

.id-wala-logo:hover .id-letter {
    animation: glitchFlash 0.15s steps(2) infinite;
}

@keyframes glitchFlash {
    0% {
        transform: translate3d(2px, 0, 0);
        opacity: 0.8;
    }

    50% {
        transform: translate3d(-2px, 0, 0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.9;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Orbitron:wght@700;900&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---- Base Reset ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Rajdhani', sans-serif;
    background-color: #050508;
    background-image: url('/bg.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Dark cinematic overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(5, 0, 10, 0.82) 0%, rgba(10, 0, 5, 0.65) 50%, rgba(5, 0, 8, 0.80) 100%);
    z-index: 0;
    pointer-events: none;
}

/* Animated neon particles */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 400px 200px at 15% 40%, rgba(180, 0, 60, 0.18) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 85% 60%, rgba(120, 0, 180, 0.12) 0%, transparent 70%),
        radial-gradient(circle 100px at 50% 10%, rgba(220, 50, 80, 0.10) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
    animation: atmoPulse 8s ease-in-out infinite alternate;
    will-change: opacity;
    /* Hardware acceleration for particles */
}

@keyframes atmoPulse {
    0% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* All content sits above bg overlays */
body>* {
    position: relative;
    z-index: 1;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #0a000f;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#c8002a, #7b00c8);
    border-radius: 4px;
}

/* ============================================
   HEADER — Dark Minimal Cyberpunk Navbar
   ============================================ */
header {
    background: rgba(5, 0, 10, 0.95) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    border-bottom: 1px solid rgba(200, 0, 50, 0.35) !important;
    box-shadow: 0 0 15px rgba(200, 0, 50, 0.15) !important;
    transform: translateZ(0);
    /* force GPU layer */
    will-change: transform;
}

header h1 {
    background: linear-gradient(90deg, #ff003c, #cc00ff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-family: 'Orbitron', sans-serif !important;
    letter-spacing: 1.5px !important;
}

header nav a {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: color 0.2s, text-shadow 0.2s;
}

header nav a:hover,
header nav a.text-purple-600 {
    color: #ff003c !important;
    text-shadow: 0 0 10px rgba(255, 0, 60, 0.8);
}

/* ============================================
   MAIN SECTION BG GRADIENT
   ============================================ */
section.py-12,
section.py-16 {
    background: transparent !important;
}

/* ============================================
   MAIN CARD — Glassmorphism Cyberpunk
   ============================================ */
.card-animation {
    animation: cardReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Force Glassmorphism on all white cards */
.bg-white,
.card-animation.bg-white {
    background: rgba(12, 5, 22, 0.45) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid rgba(255, 0, 100, 0.3) !important;
    box-shadow:
        0 0 20px rgba(200, 0, 50, 0.15),
        0 0 40px rgba(120, 0, 200, 0.08) !important;
    transform: translateZ(0);
}

/* ============================================
   TEXT & LABELS
   ============================================ */
h2,
h3,
h4,
h5 {
    color: #fff;
}

/* ID Available text */
h2.text-3xl,
.text-3xl.font-bold {
    color: #fff !important;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
    -webkit-text-fill-color: initial !important;
    background: none !important;
}

#stock-display {
    color: #00ff88 !important;
    text-shadow: 0 0 12px rgba(0, 255, 136, 0.8);
}

/* Notice bar */
#notice-container {
    background: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid rgba(200, 0, 50, 0.6) !important;
    box-shadow: 0 0 20px rgba(200, 0, 50, 0.2), inset 0 0 20px rgba(120, 0, 200, 0.1) !important;
    color: #fff !important;
}

/* Labels & body text */
label.block,
p,
.text-gray-600,
.text-gray-500,
.text-gray-800,
.text-gray-700 {
    color: rgba(200, 180, 220, 0.85) !important;
}

/* ============================================
   QUANTITY GRID — Cyberpunk Buttons
   ============================================ */
.quantity-btn {
    background: rgba(20, 5, 35, 0.6) !important;
    border: 1px solid rgba(200, 0, 50, 0.4) !important;
    color: #fff !important;
    border-radius: 10px !important;
    transition: all 0.25s ease !important;
    position: relative;
    overflow: hidden;
}

.quantity-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200, 0, 50, 0) 0%, rgba(120, 0, 200, 0) 100%);
    transition: background 0.3s;
}

.quantity-btn:hover {
    border-color: rgba(200, 0, 50, 0.9) !important;
    box-shadow: 0 0 18px rgba(200, 0, 50, 0.5), 0 0 35px rgba(120, 0, 200, 0.25) !important;
    transform: translateY(-2px);
}

.quantity-btn:hover::before {
    background: linear-gradient(135deg, rgba(200, 0, 50, 0.15) 0%, rgba(120, 0, 200, 0.10) 100%);
}

.quantity-btn.selected,
.quantity-btn.custom-btn.selected {
    background: linear-gradient(135deg, rgba(255, 0, 100, 0.6), rgba(120, 0, 255, 0.5)) !important;
    border-color: #ff0055 !important;
    box-shadow:
        0 0 20px rgba(255, 0, 100, 0.8),
        0 0 40px rgba(120, 0, 255, 0.5),
        inset 0 0 10px rgba(255, 0, 100, 0.3) !important;
}

.tick-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    background: #ff003c;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: #fff;
    box-shadow: 0 0 8px rgba(255, 0, 60, 0.8);
}

.quantity-btn.selected .tick-icon {
    display: flex;
}

.custom-btn {
    background: rgba(10, 3, 20, 0.5) !important;
    border: 1px dashed rgba(200, 0, 50, 0.5) !important;
    color: #fff !important;
}

/* ============================================
   BUY NOW BUTTON — Engine Ignition Style
   ============================================ */
#buy-now-btn {
    background: linear-gradient(90deg, #c8002a 0%, #8b00d4 100%) !important;
    border: none !important;
    box-shadow:
        0 0 25px rgba(200, 0, 50, 0.7),
        0 0 60px rgba(120, 0, 200, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    letter-spacing: 0.05em;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s ease !important;
    animation: btnPulse 3s ease-in-out infinite;
}

#buy-now-btn:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 0 40px rgba(200, 0, 50, 1), 0 0 80px rgba(120, 0, 200, 0.7) !important;
}

@keyframes btnPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ============================================
   "LIMITED STOCK!" BADGE
   ============================================ */
.bg-gradient-to-r.from-red-500.to-orange-500 {
    background: linear-gradient(90deg, #c8002a, #8b00d4) !important;
    box-shadow: 0 0 20px rgba(200, 0, 50, 0.6) !important;
}

/* ============================================
   IMPORTANT INSTRUCTIONS PANEL (Right Side)
   ============================================ */
#support>div {
    background: rgba(12, 5, 22, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(180, 0, 255, 0.3) !important;
    box-shadow: 0 0 20px rgba(120, 0, 200, 0.1) !important;
    transform: translateZ(0);
}

#support h3 {
    color: #fff !important;
}

#support ul li span.text-white {
    color: rgba(220, 200, 240, 0.9) !important;
}

/* ============================================
   BOTTOM TRUST ICONS (100% Secure, Instant)
   ============================================ */
.mt-8.pt-6.border-t {
    border-color: rgba(180, 0, 255, 0.2) !important;
}

.text-xs.text-gray-500 {
    color: rgba(180, 160, 210, 0.7) !important;
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
#checkout-modal>div {
    background: rgba(8, 3, 18, 0.45) !important;
    border: 1px solid rgba(255, 0, 100, 0.5) !important;
    box-shadow: 0 0 30px rgba(255, 0, 100, 0.3), 0 0 80px rgba(120, 0, 255, 0.25) !important;
    backdrop-filter: blur(24px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(200%) !important;
    transform: translateZ(0);
}

.modal-enter {
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-backdrop {
    animation: fadeIn 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Modal title */
#checkout-modal h3 {
    color: #fff !important;
}

/* Modal amount display */
.text-3xl.font-black {
    background: linear-gradient(90deg, #ff003c, #cc00ff) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    font-family: 'Orbitron', sans-serif;
}

/* QR Card */
.bg-white.p-3.rounded-2xl {
    background: rgba(20, 10, 35, 0.8) !important;
    border: 1px solid rgba(200, 0, 50, 0.4) !important;
    box-shadow: 0 0 20px rgba(200, 0, 50, 0.2) !important;
}

/* Countdown */
.bg-red-50 {
    background: rgba(200, 0, 50, 0.1) !important;
    border-color: rgba(200, 0, 50, 0.3) !important;
}

.text-red-600 {
    color: #ff4466 !important;
}

/* Done / Action Buttons in Modal */
.bg-gradient-to-r.from-purple-500.to-blue-500 {
    background: linear-gradient(90deg, #c8002a, #8b00d4) !important;
    box-shadow: 0 0 20px rgba(200, 0, 50, 0.5) !important;
    border: none !important;
}

/* Credential cards */
#credentials-list .bg-white,
#find-id-credentials-container .bg-white {
    background: rgba(20, 8, 38, 0.9) !important;
    border-color: rgba(180, 0, 255, 0.25) !important;
    color: #e0d0f0 !important;
}

#credentials-list .text-purple-500,
#find-id-credentials-container .text-purple-500 {
    color: #ff003c !important;
}

/* Success checkbox */
.bg-green-100 {
    background: rgba(0, 200, 80, 0.1) !important;
}

.text-green-500 {
    color: #00e868 !important;
}

/* ============================================
   FIND ID VIEW
   ============================================ */
.bg-white.rounded-3xl {
    background: rgba(10, 4, 22, 0.45) !important;
    border-color: rgba(180, 0, 255, 0.45) !important;
    box-shadow: 0 0 30px rgba(120, 0, 255, 0.25) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    transform: translateZ(0);
}

input[type="text"],
input[type="number"],
textarea,
select,
.swal2-input,
.swal2-textarea {
    background: rgba(15, 5, 30, 0.4) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 0, 100, 0.4) !important;
    color: #fff !important;
    transition: all 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    border-color: #ff0055 !important;
    box-shadow: 0 0 20px rgba(255, 0, 100, 0.6) !important;
    outline: none !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

input:focus,
textarea:focus {
    border-color: #ff003c !important;
    box-shadow: 0 0 15px rgba(200, 0, 50, 0.4) !important;
    outline: none !important;
}

/* Fetch button */
.bg-gradient-to-r.from-green-500.to-blue-500 {
    background: linear-gradient(90deg, #c8002a, #8b00d4) !important;
    box-shadow: 0 0 20px rgba(200, 0, 50, 0.5) !important;
}

/* ============================================
   SUPPORT / TICKET VIEW
   ============================================ */
#view-support .bg-white.rounded-3xl {
    background: rgba(8, 3, 18, 0.85) !important;
}

button[type="submit"] {
    background: linear-gradient(90deg, #c8002a, #8b00d4) !important;
}

/* ============================================
   WHATSAPP FAB BUTTON
   ============================================ */
a[href*="wa.me"]>div,
a[href*="whatsapp"]>div {
    box-shadow: 0 0 20px rgba(0, 200, 80, 0.6), 0 0 40px rgba(0, 200, 80, 0.3) !important;
}

/* ============================================
   GLASS UTIL
   ============================================ */
.glass {
    background: rgba(12, 5, 22, 0.85) !important;
    backdrop-filter: blur(6px) !important;
    -webkit-backdrop-filter: blur(6px) !important;
    border: 1px solid rgba(200, 0, 50, 0.3) !important;
    transform: translateZ(0);
}

/* Why Choose section */
.text-white.rounded-2xl,
.bg-white\/10 {
    background: rgba(15, 5, 30, 0.6) !important;
    border: 1px solid rgba(180, 0, 255, 0.2) !important;
    backdrop-filter: blur(12px) !important;
}

/* ============================================
   MOBILE MENU
   ============================================ */
#mobile-menu {
    background: rgba(5, 0, 12, 0.98) !important;
    border-bottom: 1px solid rgba(200, 0, 50, 0.3) !important;
    backdrop-filter: blur(8px) !important;
    transform: translateZ(0);
}

#mobile-menu a {
    color: rgba(220, 200, 240, 0.85) !important;
}

#mobile-menu a:hover {
    background: rgba(200, 0, 50, 0.1) !important;
    color: #fff !important;
}

/* Section background override */
[class*="from-purple"][class*="via-"][class*="to-"] {
    background: linear-gradient(135deg, #0d0020 0%, #1a0010 50%, #0d0020 100%) !important;
}

/* Why Choose cards */
.bg-white\/10.backdrop-blur {
    background: rgba(20, 5, 40, 0.5) !important;
    border: 1px solid rgba(180, 0, 255, 0.2) !important;
}

/* Neon scan line effect on card */
.card-animation::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200, 0, 50, 0.6), transparent);
    animation: scanLine 3s linear infinite;
    pointer-events: none;
    will-change: transform;
}

@keyframes scanLine {
    0% {
        transform: translate3d(0, -50px, 0);
    }

    100% {
        transform: translate3d(0, 1000px, 0);
    }
}