/* Truuze Futuristic Styles */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;500;700&display=swap');

:root {
    --bg-deep: #051a20;
    --bg-teal: #103038;
    --accent-cyan: #00f2ff;
    --accent-pink: #ff0055;
    --text-glow: 0 0 10px rgba(0, 242, 255, 0.7);
    --glass-bg: rgba(16, 48, 56, 0.4);
    --glass-border: rgba(0, 242, 255, 0.2);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-deep);
    background-image: radial-gradient(circle at 50% 50%, var(--bg-teal) 0%, var(--bg-deep) 80%);
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    /* Lock scroll for full-screen feel */
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

/* Background Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Main Container - 3D Tilt Effect */
.container-3d {
    position: relative;
    z-index: 10;
    text-align: center;
    transform-style: preserve-3d;
}

/* Glassmorphism Hero Panel */
.hero-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow:
        0 0 30px rgba(0, 242, 255, 0.1),
        inset 0 0 20px rgba(0, 242, 255, 0.05);
    max-width: 800px;
    width: 90vw;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /* Initial state for GSAP */
    opacity: 0;
    transform: translateY(50px);
}

/* Glowing Border Effect */
.hero-panel::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-cyan), transparent, var(--accent-pink), transparent);
    z-index: -1;
    border-radius: 32px;
    background-size: 400%;
    animation: borderFlow 10s linear infinite;
    opacity: 0.5;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.logo-container {
    margin-bottom: 2rem;
    perspective: 500px;
}

.logo {
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 0 15px var(--accent-cyan));
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 242, 255, 0.5);
    background: linear-gradient(to right, #fff, var(--accent-cyan));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.5;
    margin-bottom: 3rem;
    color: #a0e0e0;
}

/* Futuristic Buttons */
.store-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    /* Increased to prevent overlap */
    perspective: 1000px;
}

.store-btn {
    position: relative;
    display: block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.store-btn img {
    height: 60px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    filter: brightness(0.9) grayscale(20%);
    transition: all 0.3s;
}

.store-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.store-btn:hover img {
    filter: brightness(1.2) sepia(0%) hue-rotate(0deg);
    box-shadow: 0 0 20px var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.coming-soon {
    font-family: 'Orbitron', sans-serif;
    color: var(--accent-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px var(--accent-pink);
    }

    100% {
        opacity: 0.5;
    }
}

/* Cyber Button */
.btn-blockchain {
    position: relative;
    display: inline-block;
    padding: 1rem 3rem;
    color: var(--accent-cyan);
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Orbitron', sans-serif;
    border: 1px solid var(--accent-cyan);
    overflow: hidden;
    transition: 0.5s;
    background: transparent;
    z-index: 1;
}

.btn-blockchain:hover {
    background: var(--accent-cyan);
    color: #000;
    box-shadow: 0 0 5px var(--accent-cyan), 0 0 25px var(--accent-cyan), 0 0 50px var(--accent-cyan), 0 0 200px var(--accent-cyan);
}

/* Footer */
footer {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    z-index: 5;
}

footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #fff;
    text-shadow: 0 0 5px var(--accent-cyan);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .hero-panel {
        padding: 2rem 1rem;
        width: 95vw;
    }

    .store-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}