/* ===== GLOBAL STYLES ===== */
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a1128;
    color: #ffffff;
    text-align: center;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 2;
    background: none;
    width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1 {
    font-size: 52px;
    font-weight: bold;
    margin: 0 0 40px 0;
    letter-spacing: 3px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.typed-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: fadeInScale 1.2s ease-out 1s forwards;
    vertical-align: top;
    opacity: 0;
    transform: scale(0.9);
    background: linear-gradient(90deg, #ffcc99, #ffb347 40%, #daa520 80%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00bcd4;
}

.cursor {
    display: none;
}

h2 {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 2s forwards;
}

p {
    font-size: 20px;
    margin-top: 20px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: lighter;
    color: #d1d5db;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 3.5s forwards;
}

.launching-soon {
    font-size: 20px;
    color: #94a3b8;
    margin-bottom: 36px;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.5s forwards;
    letter-spacing: 3px;
    font-weight: 300;
}

.line-break {
    display: block;
    margin-top: 8px;
}

.highlight {
    background: linear-gradient(90deg, #daa520 0%, #cd853f 60%, #b8860b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}

.contact-email {
    margin-top: 40px;
    font-size: 16px;
    color: #94a3b8;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 2.5s forwards;
    overflow: visible;
    min-height: 24px;
    padding: 4px 0;
}

.contact-email a {
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.contact-email .email-text {
    background: linear-gradient(90deg, #ffcc99, #ffb347 40%, #daa520 80%, #cd853f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-style: italic;
    line-height: 1.8;
    display: inline-block;
    padding: 8px 2px 2px 2px;
    margin-top: 2px;
    vertical-align: baseline;
    position: relative;
}

.contact-email a:hover {
    opacity: 0.85;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-8px);
    }
}

/* ===== BACKGROUND CANVAS ===== */
#circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.28;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    
    h1 {
        font-size: 38px;
        letter-spacing: 1.2px;
        white-space: normal;
        word-break: break-word;
        margin-bottom: 28px;
    }
    
    .typed-text {
        font-size: 38px;
        letter-spacing: 1.2px;
        white-space: normal;
        word-break: break-word;
    }
    
    h2 {
        font-size: 18px;
        line-height: 1.3;
        margin-top: 8px;
        margin-bottom: 8px;
    }
    
    .launching-soon {
        font-size: 17px;
        margin-bottom: 24px;
    }
    
    .contact-email {
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 12px;
        box-sizing: border-box;
    }
    
    h1 {
        font-size: 30px;
        letter-spacing: 0.8px;
        white-space: normal;
        word-break: break-word;
        margin-bottom: 20px;
    }
    
    .typed-text {
        font-size: 30px;
        letter-spacing: 0.8px;
        white-space: normal;
        word-break: break-word;
    }
    
    h2 {
        font-size: 15px;
        line-height: 1.2;
        margin-top: 6px;
        margin-bottom: 6px;
    }
    
    .launching-soon {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .contact-email {
        margin-top: 18px;
    }
}

@media (max-width: 320px) {
    h1 {
        font-size: 24px;
        letter-spacing: 0.3px;
        line-height: 1.1;
        margin-bottom: 14px;
    }
    
    h2 {
        font-size: 12px;
        line-height: 1.2;
    }
    
    .launching-soon {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .typed-text {
        font-size: 24px;
    }
    
    .cursor {
        font-size: 20px;
    }
} 