/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* Main Styles for AI Physics Database */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    font-family: 'Rajdhani', sans-serif;
    background-color: #000;
    color: #0f0;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 800px;
    color: #0f0;
    letter-spacing: 1px;
    line-height: 1.4;
}

.coming-soon {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    color: #fff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 0, 0.5);
}

.contact {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.email {
    font-family: 'Share Tech Mono', monospace;
    color: #0f0;
    text-decoration: none;
    border-bottom: 1px solid #0f0;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
}

.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

canvas {
    display: block;
}

.footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.8rem;
    color: #0f0;
    opacity: 0.7;
    z-index: 2;
    letter-spacing: 1px;
}

/* Media Queries for Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        padding: 0 20px;
    }
    
    .coming-soon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .coming-soon {
        font-size: 1.2rem;
    }
    
    .contact {
        font-size: 0.9rem;
    }
}
