/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    cursor: none; /* Hide default system cursor */
}

body {
    background: #0a0a0b;
    color: white;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Prevent scrolling */
}

/* --- Custom Cursor Styles --- */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: #d4af37;
    position: fixed;
    border-radius: 50%;
    z-index: 1000;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    position: fixed;
    border-radius: 50%;
    z-index: 999;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* --- Background Glow Effect --- */
.bg-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

/* --- Glassmorphic Container --- */
.container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 50px;
    padding: 60px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    z-index: 10;
}

/* --- Logo Styling --- */
.main-logo {
    width: 130px;
    border-radius: 25px;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
}

/* --- Text Styling --- */
h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #d4af37, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 5s linear infinite;
}

p {
    color: #999;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1rem;
}

strong {
    color: #d4af37; /* Highlight keywords */
}

/* --- Download Button --- */
.playstore-link img {
    width: 190px;
    transition: 0.3s ease;
}

.playstore-link:hover img {
    transform: scale(1.08);
    filter: brightness(1.2);
}

/* --- Animations --- */
@keyframes shine { to { background-position: 200% center; } }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.animate-slide-up { animation: slideUp 1s ease-out forwards; }
.animate-fade-in { opacity: 0; animation: slideUp 1s ease-out 0.4s forwards; }
.animate-pop { animation: pop 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

/* --- Footer --- */
footer {
    position: absolute;
    bottom: 30px;
    color: #444;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* --- Particles Fixed Styling --- */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    bottom: -10px;
    animation: fly infinite linear;
}

/* Particle randomization for 30 elements */
.particle:nth-child(1) { left: 5%; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 15%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(3) { left: 25%; animation-duration: 14s; animation-delay: 4s; }
.particle:nth-child(4) { left: 35%; animation-duration: 20s; animation-delay: 1s; }
.particle:nth-child(5) { left: 45%; animation-duration: 15s; animation-delay: 3s; }
.particle:nth-child(6) { left: 55%; animation-duration: 22s; animation-delay: 5s; }
.particle:nth-child(7) { left: 65%; animation-duration: 13s; animation-delay: 0s; }
.particle:nth-child(8) { left: 75%; animation-duration: 17s; animation-delay: 2s; }
.particle:nth-child(9) { left: 85%; animation-duration: 19s; animation-delay: 4s; }
.particle:nth-child(10) { left: 95%; animation-duration: 16s; animation-delay: 1s; }
.particle:nth-child(11) { left: 12%; animation-duration: 25s; animation-delay: 6s; }
.particle:nth-child(12) { left: 22%; animation-duration: 21s; animation-delay: 8s; }
.particle:nth-child(13) { left: 32%; animation-duration: 15s; animation-delay: 2s; }
.particle:nth-child(14) { left: 42%; animation-duration: 18s; animation-delay: 5s; }
.particle:nth-child(15) { left: 52%; animation-duration: 20s; animation-delay: 3s; }
.particle:nth-child(16) { left: 62%; animation-duration: 14s; animation-delay: 7s; }
.particle:nth-child(17) { left: 72%; animation-duration: 19s; animation-delay: 0s; }
.particle:nth-child(18) { left: 82%; animation-duration: 23s; animation-delay: 4s; }
.particle:nth-child(19) { left: 92%; animation-duration: 17s; animation-delay: 1s; }
.particle:nth-child(20) { left: 8%; animation-duration: 13s; animation-delay: 9s; }
.particle:nth-child(21) { left: 18%; animation-duration: 20s; animation-delay: 2s; }
.particle:nth-child(22) { left: 28%; animation-duration: 16s; animation-delay: 5s; }
.particle:nth-child(23) { left: 38%; animation-duration: 24s; animation-delay: 1s; }
.particle:nth-child(24) { left: 48%; animation-duration: 19s; animation-delay: 7s; }
.particle:nth-child(25) { left: 58%; animation-duration: 15s; animation-delay: 3s; }
.particle:nth-child(26) { left: 68%; animation-duration: 21s; animation-delay: 6s; }
.particle:nth-child(27) { left: 78%; animation-duration: 18s; animation-delay: 2s; }
.particle:nth-child(28) { left: 88%; animation-duration: 14s; animation-delay: 4s; }
.particle:nth-child(29) { left: 98%; animation-duration: 22s; animation-delay: 0s; }
.particle:nth-child(30) { left: 50%; animation-duration: 17s; animation-delay: 8s; }

/* Movement for the particles */
@keyframes fly {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-110vh); opacity: 0; }
}

/* Mobile Responsive Adjustments */
@media (max-width: 600px) {
    .container { padding: 40px 20px; border-radius: 30px; margin: 15px; }
    h1 { font-size: 1.8rem; }
    p { font-size: 0.9rem; }
    .cursor-dot, .cursor-outline { display: none; }
    body { cursor: default; }
}