:root {
    --primary: #64ffda;
    --text: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --background: #020d1f;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text);
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1600&q=80') center/cover;
    opacity: 0.5;
    pointer-events: none;
}

.eclipse {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 13, 31, 0.8) 70%);
    box-shadow: 0 0 200px rgba(100, 255, 218, 0.2);
    pointer-events: none;
}

header {
    position: relative;
    padding: 2rem 4rem;
    z-index: 1;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

main {
    position: relative;
    height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.content {
    text-align: center;
    padding: 0 1rem;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 0.875rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: 0.3em;
    margin-bottom: 2rem;
    white-space: nowrap;
}

h1 span {
    display: inline-block;
}

.progress-bar {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto;
    overflow: visible;
}

.progress-text {
    position: absolute;
    top: -25px;
    right: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.progress {
    min-width: 1%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), #a78bfa);
    transition: width 0.3s ease;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    z-index: 1;
}

.swiss-made {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.swiss-made svg {
    width: 16px;
    height: 16px;
}

.swiss-made span {
    color: var(--text);
    font-size: 0.875rem;
    letter-spacing: 1px;
}

h1 > span {
    margin: 5px 20px 5px 20px;
}

@media (max-width: 768px) {
    header {
        padding: 1rem 2rem;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }

    footer {
        padding: 1rem 2rem;
    }

    .eclipse {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
        letter-spacing: 4px;
    }

    footer {
        padding: 1rem;
    }

    .eclipse {
        width: 200px;
        height: 200px;
    }
}

@media (max-height: 600px) {
    main {
        height: calc(100vh - 150px);
    }

    h1 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 1.5rem;
        letter-spacing: 0.2em;
        white-space: normal;
    }
}

