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

:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --bg-dark: #0f0f23;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --surface: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-darker);
    color: var(--text-primary);
    overflow: hidden;
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
}

.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #eee, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #ddd, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: starsMove 20s linear infinite;
    opacity: 0.3;
}

@keyframes starsMove {
    from { transform: translateY(0); }
    to { transform: translateY(-100px); }
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    from { transform: translate(0, 0); }
    to { transform: translate(50px, 50px); }
}

/* Main Container */
.container {
    position: relative;
    z-index: 10;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
}

.hero-section {
    text-align: center;
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
    position: relative;
    flex-shrink: 0;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    position: relative;
}

.logo-accent {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.7rem, 1.5vw, 1rem);
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--text-secondary);
    margin-top: 0.25rem;
    text-transform: uppercase;
}

/* Globe */
.globe-container {
    position: relative;
    width: min(50vh, 50vw, 350px);
    height: min(50vh, 50vw, 350px);
    margin: 1rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#globe-canvas {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    max-width: 100%;
    max-height: 100%;
}

.globe-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    animation: globeGlow 4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes globeGlow {
    from {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    to {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.05);
    }
}



/* Content */
.content {
    margin-top: 1rem;
    flex-shrink: 0;
}

.tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Contact Button */
.contact-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.25rem 1.75rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.contact-btn:hover::before {
    left: 100%;
}

.contact-btn span:first-child {
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.email {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(0.9rem, 1.8vw, 1rem);
    color: var(--primary);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0.75rem;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }

    .globe-container {
        width: min(45vh, 45vw, 280px);
        height: min(45vh, 45vw, 280px);
        margin: 1rem auto;
    }

    .content {
        margin-top: 1rem;
    }

    .contact-btn {
        padding: 1rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .logo-container {
        margin-bottom: 1rem;
    }

    .globe-container {
        width: min(40vh, 40vw, 220px);
        height: min(40vh, 40vw, 220px);
        margin: 0.75rem auto;
    }

    .content {
        margin-top: 0.75rem;
    }

    .status {
        margin-bottom: 1.5rem;
    }

    .contact-btn {
        padding: 0.875rem 1rem;
    }
}

@media (max-height: 600px) {
    .logo-container {
        margin-bottom: 0.5rem;
    }

    .globe-container {
        width: min(35vh, 35vw, 200px);
        height: min(35vh, 35vw, 200px);
        margin: 0.5rem auto;
    }

    .content {
        margin-top: 0.5rem;
    }

    .status {
        margin-bottom: 1rem;
    }
}

.ocean-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(100, 180, 255, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(120, 200, 255, 0.3) 0%, transparent 25%),
        radial-gradient(circle at 60% 60%, rgba(80, 160, 255, 0.35) 0%, transparent 35%),
        radial-gradient(circle at 40% 30%, rgba(150, 220, 255, 0.2) 0%, transparent 40%),
        linear-gradient(45deg, transparent 40%, rgba(200, 240, 255, 0.1) 50%, transparent 60%);
    border-radius: 50%;
    animation: oceanShimmer 12s ease-in-out infinite;
    filter: blur(0.5px);
}

@keyframes oceanShimmer {
    0%, 100% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
        filter: blur(0.5px) brightness(1);
    }
    33% {
        opacity: 0.9;
        transform: scale(1.01) rotate(1deg);
        filter: blur(0.3px) brightness(1.1);
    }
    66% {
        opacity: 0.8;
        transform: scale(0.99) rotate(-0.5deg);
        filter: blur(0.7px) brightness(0.95);
    }
}

/* Cloud layer */
.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    animation: cloudDrift 40s linear infinite;
}

@keyframes cloudDrift {
    from { transform: translateX(0); }
    to { transform: translateX(-100px); }
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    filter: blur(2px);
}

.cloud-1 {
    width: 60px;
    height: 20px;
    top: 30%;
    left: 10%;
    animation: cloudFloat1 15s ease-in-out infinite;
}

.cloud-2 {
    width: 80px;
    height: 25px;
    top: 60%;
    left: 70%;
    animation: cloudFloat2 18s ease-in-out infinite;
}

.cloud-3 {
    width: 45px;
    height: 15px;
    top: 80%;
    left: 30%;
    animation: cloudFloat3 12s ease-in-out infinite;
}

.cloud-4 {
    width: 70px;
    height: 22px;
    top: 15%;
    left: 60%;
    animation: cloudFloat4 20s ease-in-out infinite;
}

@keyframes cloudFloat1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(20px) translateY(-5px); }
}

@keyframes cloudFloat2 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-15px) translateY(8px); }
}

@keyframes cloudFloat3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(25px) translateY(-3px); }
}

@keyframes cloudFloat4 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-10px) translateY(6px); }
}

/* Character layer */
.character-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.floating-char {
    position: absolute;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    animation: charFloat 8s ease-in-out infinite;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    z-index: 5;
}

@keyframes charFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.9; 
    }
    25% { 
        transform: translateY(-15px) rotate(90deg) scale(1.1); 
        opacity: 1; 
    }
    50% { 
        transform: translateY(-8px) rotate(180deg) scale(0.9); 
        opacity: 0.8; 
    }
    75% { 
        transform: translateY(-20px) rotate(270deg) scale(1.05); 
        opacity: 1; 
    }
}

/* Planet lighting and shadow */
.planet-lighting {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 25% 25%, 
        rgba(255, 255, 255, 0.3) 0%,
        rgba(255, 255, 255, 0.1) 30%,
        transparent 60%);
    pointer-events: none;
}

.planet-shadow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 75% 75%, 
        transparent 0%,
        transparent 40%,
        rgba(0, 0, 0, 0.4) 70%,
        rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

/* Orbital rings */
.orbital-ring {
    position: absolute;
    border: 2px solid rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 450px;
    height: 450px;
    top: -25px;
    left: -25px;
    animation: ringRotate1 45s linear infinite;
    border-style: dashed;
}

.ring-2 {
    width: 500px;
    height: 500px;
    top: -50px;
    left: -50px;
    animation: ringRotate2 60s linear infinite reverse;
    border-color: rgba(100, 200, 255, 0.2);
}

@keyframes ringRotate1 {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

@keyframes ringRotate2 {
    from { transform: rotateZ(0deg); }
    to { transform: rotateZ(360deg); }
}

/* Typography */
.title-container {
    position: relative;
    margin-bottom: 20px;
}

.title {
    font-family: 'Orbitron', monospace;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4a90e2 0%, #63b3ed 25%, #90cdf4 50%, #b8e6ff 75%, #4a90e2 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite alternate, titleShift 8s ease-in-out infinite;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.6));
}

.title-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: titleGlowPulse 4s ease-in-out infinite;
    z-index: 1;
}

.title::before {
    content: 'CINDI STUDIOS';
    position: absolute;
    top: 2px;
    left: 2px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.4), rgba(99, 179, 237, 0.4));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(3px);
    z-index: -1;
    animation: titleGlow 3s ease-in-out infinite alternate-reverse;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 20px rgba(74, 144, 226, 0.6)) brightness(1);
        transform: scale(1);
    }
    to {
        filter: drop-shadow(0 0 40px rgba(74, 144, 226, 1)) brightness(1.3);
        transform: scale(1.02);
    }
}

@keyframes titleShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes titleGlowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.9;
    letter-spacing: 2px;
}

.coming-soon {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
    color: #63b3ed;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.email {
    font-size: 1.2rem;
    font-weight: 500;
    color: #90cdf4;
    text-decoration: none;
    border: 2px solid #4a90e2;
    padding: 18px 35px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background:
        linear-gradient(135deg, rgba(74, 144, 226, 0.15) 0%, rgba(99, 179, 237, 0.1) 100%);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(74, 144, 226, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.email:hover {
    background:
        linear-gradient(135deg, rgba(74, 144, 226, 0.25) 0%, rgba(99, 179, 237, 0.2) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(74, 144, 226, 0.4),
        0 5px 15px rgba(74, 144, 226, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: #63b3ed;
    color: #ffffff;
}

.email:hover::before {
    left: 100%;
}

.email:active {
    transform: translateY(-1px) scale(1.01);
}

/* Responsive design */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 1.2rem; }
    .coming-soon { font-size: 1.5rem; }
    .planet-system { width: 300px; height: 300px; }
    .planet { width: 250px; height: 250px; top: 25px; left: 25px; }
    .atmosphere-outer { width: 280px; height: 280px; top: 10px; left: 10px; }
    .atmosphere-middle { width: 270px; height: 270px; top: 15px; left: 15px; }
    .atmosphere-inner { width: 260px; height: 260px; top: 20px; left: 20px; }
    .ring-1 { width: 350px; height: 350px; top: -25px; left: -25px; }
    .ring-2 { width: 380px; height: 380px; top: -40px; left: -40px; }
}
