:root {
    --bg-color: #050510;
    --text-color: #ffffff;
    --accent: #64ffda; /* Cyan-ish accent if needed */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#canvas-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px; /* For 3D tilt effects */
}

.logo-container {
    position: relative;
    padding: 2rem 4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: transform 0.1s ease-out, box-shadow 0.3s ease;
    opacity: 0; /* Star hidden for loading animation */
    animation: fadeInUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: 0.5s;
    user-select: none;
}

.logo-container:hover {
    box-shadow: 0 35px 60px -15px rgba(100, 255, 218, 0.1);
}

.wordmark {
    width: 300px; /* Base width */
    max-width: 80vw;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}

.glare {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.15) 0%, 
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.logo-container:hover .glare {
    opacity: 1;
}

.copyright {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 0.8rem;
    opacity: 0.5;
    z-index: 10;
    font-weight: 300;
    letter-spacing: 0.5px;
    animation: fadeIn 2s ease-out forwards;
    animation-delay: 1.5s;
    opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeIn {
    to { opacity: 0.5; }
}

@media (max-width: 600px) {
    .wordmark {
        width: 200px;
    }
}
