:root {
    --primary-cyan: #00f2ff;
    --accent-purple: #9d00ff;
    --bg-dark: #0a0a0c;
    --glass-bg: rgba(255, 255, 255, 0.08); /* Slightly more opaque for better contrast without overlay */
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-white: #ffffff;
    --text-dim: rgba(255, 255, 255, 0.8);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    background-image: url('assets/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Removed background-overlay to fix 'darkened' issue */

.container {
    width: 100%;
    max-width: 480px;
    padding: 60px 20px;
    z-index: 1;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.profile {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    width: 140px; /* Reduced from 160px */
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.2));
}

h1 {
    display: none;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.link-card {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.link-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.link-card .icon {
    width: 32px;
    display: flex;
    justify-content: center;
    margin-right: 18px;
    font-size: 1.4rem;
}

.link-card span {
    flex-grow: 1;
}

.link-card .arrow {
    font-size: 0.8rem;
    opacity: 0.5;
}

.footer-content {
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

.footer-line {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 30px;
    width: 100%;
    max-width: 440px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.legal-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
    padding: 2px 8px;
}

.legal-links a:hover {
    color: var(--text-white);
}

.copyright {
    font-size: 0.75rem;
    color: var(--text-dim);
    opacity: 0.5;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .container {
        padding: 40px 15px;
    }
    
    .logo-container {
        width: 140px;
    }
}
