@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500&display=swap');

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

body {
    margin: 0;
    overflow: hidden;
    font-family: 'DM Sans', sans-serif;
    background-color: #05050f; /* Very dark blue/black */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* behind the glass container */
    pointer-events: none; /* Allows the interface to be clicked if needed */
}

.glass-container {
    position: absolute;
    bottom: 12%;
    right: 10%;
    z-index: 10;
    padding: 3rem 4rem;
    border-radius: 24px;
    
    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    /* Subtle breathing animation for the central card */
    animation: breathe 8s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% { transform: translateY(0px) scale(1); box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.5); }
    100% { transform: translateY(-10px) scale(1.02); box-shadow: 0 30px 60px 0 rgba(0, 0, 0, 0.6); }
}

h1 {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    
    /* Gradient text matching the logo */
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    text-align: center;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.6em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    text-align: center;
    margin-left: 0.6em; /* offset for letter-spacing to ensure true centering */
    margin-bottom: 1.5rem;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 0.5rem;
}

.target-icon {
    animation: rotateTarget 30s linear infinite;
    animation: rotateTarget 30s linear infinite;
}

@keyframes rotateTarget {
    100% { transform: rotate(360deg); }
}

.divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin-bottom: 1.5rem;
}

.tagline {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    text-align: center;
    line-height: 2;
}

.alpha {
    font-family: 'Times New Roman', serif;
    font-size: 1.3rem;
    text-transform: lowercase;
    font-style: italic;
    background: linear-gradient(135deg, #06b6d4, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* Footer Styles */
.company-footer {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    pointer-events: none;
}

.company-footer p {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    margin: 0.2rem 0 0 0;
    text-transform: none;
    color: rgba(255, 255, 255, 0.4);
}

.company-footer p strong {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .glass-container {
        position: relative;
        bottom: auto;
        right: auto;
        padding: 2rem 1.5rem;
        width: 85%;
        max-width: 380px;
        margin-top: 30vh;
    }
    .target-icon {
        width: 36px;
        height: 36px;
    }
    .header-row {
        gap: 0.8rem;
    }
    h1 {
        font-size: 2.5rem;
    }
    .brand-name {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    .tagline {
        font-size: 0.75rem;
        line-height: 1.6;
    }
    .company-footer {
        bottom: 1rem;
    }
}
