:root {
    --primary: #00f2fe;
    --secondary: #4facfe;
    --bg-color: #050914;
    --text-main: #ffffff;
    --text-muted: #a0a5b5;
}

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

body, html {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    overflow: hidden;
    color: var(--text-main);
}

#networkCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
    background: radial-gradient(circle at center, rgba(5,9,20,0.5) 0%, rgba(0,0,0,0.98) 100%);
    animation: cinematicFadeIn 2s ease-out;
}

.logo-container {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeInSlideDown 1.5s ease-out forwards 0.5s;
}

.logo-image {
    max-width: 150px;
    height: auto;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.4));
    animation: pulseLogo 3s infinite alternate ease-in-out;
}

.construction-loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 15px;
    width: 250px;
}

.scanner-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 10px;
}

.scanner-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    animation: scanning 2s linear infinite;
}

.construction-text {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 6px;
    font-size: 0.75rem;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
    animation: textFlicker 3s infinite;
}

.cinematic-title-container {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 8px;
    text-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
    opacity: 0;
    animation: fadeInSlideUp 1.5s ease-out forwards 1.2s;
}

.glow-text {
    font-weight: 700;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 242, 254, 0.5), 0 0 40px rgba(79, 172, 254, 0.3);
    animation: fadeInSlideUp 1.5s ease-out forwards 1.8s;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
    letter-spacing: 1px;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards 2.5s;
}

.notify-container {
    display: flex;
    gap: 10px;
    margin-bottom: 3.5rem;
    width: 100%;
    max-width: 450px;
    position: relative;
}

.notify-input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.notify-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.notify-input:focus {
    border-color: rgba(0, 242, 254, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.1);
}

.notify-btn {
    padding: 15px 35px;
    border: none;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: #050914;
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.4);
}

.notify-btn:active {
    transform: translateY(1px);
}

.contact-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary);
}

.contact-item:hover {
    color: var(--text-main);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.1);
    transform: translateY(-3px);
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
    }
    to {
        text-shadow: 0 0 20px rgba(0, 242, 254, 0.6), 0 0 40px rgba(79, 172, 254, 0.4);
    }
}

@keyframes cinematicFadeIn {
    from { opacity: 0; background: radial-gradient(circle at center, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 100%); }
    to { opacity: 1; background: radial-gradient(circle at center, rgba(5,9,20,0.5) 0%, rgba(0,0,0,0.98) 100%); }
}

@keyframes fadeInSlideDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInSlideUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(5px); }
    to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scanning {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes pulseLogo {
    from { filter: drop-shadow(0 0 5px rgba(0, 242, 254, 0.2)); transform: scale(1); }
    to { filter: drop-shadow(0 0 20px rgba(0, 242, 254, 0.6)); transform: scale(1.02); }
}

@keyframes textFlicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% { opacity: 1; }
    20%, 24%, 55% { opacity: 0.4; }
}

.notify-container, .contact-details {
    opacity: 0;
    animation: fadeIn 2s ease-out forwards 3s;
}

@media (max-width: 600px) {
    .logo-image { max-width: 120px; }
    .title { font-size: 1.5rem; letter-spacing: 4px; }
    .notify-container { flex-direction: column; }
    .notify-btn { width: 100%; }
}
