:root {
    --bg-dark: #0a0b1e;
    --primary-neon: #00f3ff;
    --secondary-neon: #bc13fe;
    --success: #0affae;
    --warning: #ffbf00;
    --danger: #ff0055;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #a0a0c0;
    --font-heading: 'Outfit', sans-serif;
    --font-mono: 'Space Mono', monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    font-family: var(--font-heading);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-image: radial-gradient(circle at 50% 100%, #1a1b4b 0%, #0a0b1e 100%);
}

/* Background Globes */
.background-globes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.globe {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.globe-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary-neon);
    top: -200px;
    left: -200px;
    animation: moveGlobe 20s infinite alternate;
}

.globe-2 {
    width: 500px;
    height: 500px;
    background: var(--primary-neon);
    bottom: -100px;
    right: -100px;
    animation: moveGlobe 25s infinite alternate-reverse;
}

@keyframes moveGlobe {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

/* Typography */
h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: 0 0 20px rgba(0, 243, 255, 0.5);
}

.mono-text {
    font-family: var(--font-mono);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo i {
    color: var(--primary-neon);
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 40px 0;
    position: relative;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #a0a0c0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating App Preview */
.pet-showcase {
    margin: 60px 0;
    position: relative;
    /* Height adjusts to content */
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
    gap: 30px;
    /* Space between images */
    flex-wrap: wrap;
    /* responsive wrapping */
}

.app-preview {
    width: 300px;
    height: 610px;
    /* Fixed height for consistency */
    object-fit: cover;
    /* Ensures filling the box */
    border-radius: 40px;
    /* More rounded for phone look */
    box-shadow:
        0 0 50px rgba(0, 243, 255, 0.2),
        0 20px 40px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
    border: 4px solid rgba(10, 11, 30, 0.8);
    /* Bezel effect */
    background: #000;
}

.wip-text {
    text-align: center;
    color: var(--text-muted);
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    width: 100%;
    /* Force it to take full width of container to be centered properly if wrapped */
}

/* Stagger animations */
.app-preview:first-child {
    animation-delay: 0s;
    transform: rotate(-2deg);
}

.app-preview:last-child {
    animation-delay: -3s;
    /* Start halfway through cycle */
    transform: rotate(2deg);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Buttons */
.main-btn {
    background: var(--text-main);
    color: #000;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.main-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.main-btn.outline {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    box-shadow: none;
}

.main-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Airdrop Section (Glassmorphism) */
.airdrop-section {
    padding: 80px 0;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.airdrop-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.step-list {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    transition: background 0.2s;
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.step-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-neon);
}

.step-content h3 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.step-check {
    margin-left: auto;
    color: var(--success);
    opacity: 0;
    transition: opacity 0.3s;
}

.step-item.done .step-check {
    opacity: 1;
}

/* Form */
.input-group {
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 1rem;
    transition: border 0.3s;
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

/* Footer */
footer {
    margin-top: auto;
    padding: 40px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}