:root {
    --bg-color: #0f172a;
    --accent-color: #38bdf8;
    --accent-glow: rgba(56, 189, 248, 0.4);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.25);
    --glass-border: rgba(255, 255, 255, 0.08);
}

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-color);
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

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

.container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    /* Left aligned content looks more premium usually */
    align-items: center;
    padding-left: 10%;
}

.overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 500px;
    animation: slideIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.content-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.brand {
    margin-bottom: 2rem;
}

.brand-logo {
    height: 60px;
    /* Adjust as needed */
    width: auto;
    display: block;
    border-radius: 8px;
    /* Slight rounding for aesthetics */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}



.socials {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: white;
    color: var(--bg-color);
    transform: translateY(-3px);
}

.footer-note {
    font-size: 0.85rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 300;
}

.contact-info i {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding-left: 5%;
        /* Reduced from 10% to save space but keep left alignment */
        padding-right: 5%;
        justify-content: flex-start;
    }

    .content-card {
        padding: 2rem;
        margin: 0;
        text-align: left;
        max-width: 100%;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
    }

    .socials {
        justify-content: flex-start;
    }
}