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

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 70px 20px 120px 20px;
}

/* Header - removed as nav is now separate */

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.logo-text {
    font-family: 'Space Mono', monospace;
    font-size: 48px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding-bottom: 16px;
}

.logo-icon {
    width: 160px;
    height: 160px;
    object-fit: contain;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Content Section */
.content-section {
    max-width: 800px;
    width: 100%;
}

.headline {
    margin-bottom: 0;
}

.subheadline {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    color: rgba(255, 255, 255, 0.9);
    display: inline-block;
    padding-top: 20px;
}

.highlight {
    color: #FF8C00;
    background: linear-gradient(135deg, #FFA500 0%, #FF6B00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle-text {
    display: inline-block;
    color: rgba(255, 255, 255, 0.8);
}

/* Store Buttons */
.store-buttons {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    justify-content: center;
    z-index: 100;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 32px 28px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.store-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.2);
}

.store-btn svg {
    width: 24px;
    height: 24px;
}

.google-logo {
    fill: #000000;
    width: 24px;
    height: 24px;
}

/* Header Navigation */
.header-nav {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 14px;
    padding: 30px 20px 20px 20px;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    width: 100%;
}

.header-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.header-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .headline {
        font-size: clamp(18px, 2vw, 24px);
    }
    
    .subheadline {
        font-size: clamp(18px, 2vw, 24px);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 70px 20px 120px 20px;
    }
    
    .headline {
        font-size: 18px;
        letter-spacing: -0.5px;
    }
    
    .subheadline {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .store-buttons {
        bottom: 20px;
        width: calc(100% - 40px);
        max-width: 600px;
    }
    
    .store-btn {
        flex: 1;
        justify-content: center;
        padding: 28px 24px;
        font-size: 16px;
    }
    
    .footer {
        bottom: 100px;
        font-size: 12px;
    }
    
}