:root {
    /* Brand Colors */
    --midnight-blue: #091322;
    --warm-amber: #fcb45b;
    --soft-grey: #e7e7e7;
    --sky-blue: #3e97c0;
    --amber-light: #ffcc7d;
    --amber-gradient: linear-gradient(135deg, #fcb45b 0%, #ffd685 50%, #ffeac7 100%);
    
    /* Theme Variables */
    --bg-color: var(--midnight-blue);
    --text-color: var(--soft-grey);
    --text-secondary: rgba(231, 231, 231, 0.8);
    --card-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="light"] {
    --bg-color: var(--soft-grey);
    --text-color: var(--midnight-blue);
    --text-secondary: rgba(9, 19, 34, 0.8);
    --card-bg: rgba(255, 255, 255, 0.8);
    --border-color: rgba(9, 19, 34, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    transition: all 0.3s ease;
    min-height: 100vh;
}

.container {
    min-height: 100vh;
    position: relative;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 10px rgba(252, 180, 91, 0.3));
    transition: all 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 15px rgba(252, 180, 91, 0.5));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* Theme Toggle */
.theme-toggle {
    width: 60px;
    height: 30px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-button {
    width: 22px;
    height: 22px;
    background: var(--warm-amber);
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(252, 180, 91, 0.3);
}

[data-theme="light"] .toggle-button {
    transform: translateX(28px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    max-width: 800px;
}

/* Main Logo Animation */
.logo-container {
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.main-logo {
    width: 160px;
    height: 160px;
    position: relative;
    margin: 0 auto;
    animation: gentle-float 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(252, 180, 91, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.main-logo-image {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 20px rgba(252, 180, 91, 0.4));
    transition: all 0.3s ease;
    z-index: 2;
    position: relative;
}

/* Typography */
.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fade-in-up 1s ease-out 0.5s both;
}

.highlight {
    background: var(--amber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: text-glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fade-in-up 1s ease-out 0.8s both;
}

/* Coming Soon */
.coming-soon {
    margin-top: 4rem;
}

.coming-soon-text {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--warm-amber);
    animation: fade-in-up 1s ease-out 1.1s both;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    animation: fade-in-up 1s ease-out 1.4s both;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--warm-amber);
    border-radius: 50%;
    animation: dot-bounce 1.5s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Floating Orbs */
.floating-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(252, 180, 91, 0.2) 0%, transparent 70%);
    animation: float-orb 8s ease-in-out infinite;
}

.orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.orb-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

/* Gradient Overlay */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(252, 180, 91, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

/* Animations */
@keyframes gentle-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.1);
    }
}

@keyframes letter-glow {
    0% { text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); }
    100% { text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4), 0 0 10px rgba(255, 255, 255, 0.3); }
}

@keyframes text-glow {
    0% { filter: drop-shadow(0 0 5px rgba(252, 180, 91, 0.3)); }
    100% { filter: drop-shadow(0 0 15px rgba(252, 180, 91, 0.6)); }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes dot-bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes float-orb {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    25% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 0.5;
    }
    50% { 
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.4;
    }
    75% { 
        transform: translateY(-30px) translateX(5px);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 1.5rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .hero {
        padding: 1rem;
    }
    
    .main-logo {
        width: 140px;
        height: 140px;
    }
    
    .main-logo-image {
        width: 100px;
        height: 100px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .coming-soon-text {
        font-size: 2rem;
    }
    
    .orb-1, .orb-2 {
        width: 120px;
        height: 120px;
    }
    
    .orb-3, .orb-4 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-text {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .main-logo {
        width: 120px;
        height: 120px;
    }
    
    .main-logo-image {
        width: 80px;
        height: 80px;
    }
}