:root {
    --primary-blue: #007aff;
    --bg-dark: #050505;
    --glass-color: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

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

body {
    background-color: var(--bg-dark);
    color: white;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.glass-bg {
    position: fixed;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 300px; height: 300px;
    background: var(--primary-blue);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    text-align: center;
}

.logo-wrapper {
    position: relative;
    width: 90px; height: 90px;
    margin: 0 auto 20px;
}

.main-logo {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #000);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 2rem; font-weight: 800;
    position: relative; z-index: 2;
}

.logo-glow {
    position: absolute;
    inset: -5px;
    background: var(--primary-blue);
    filter: blur(15px);
    opacity: 0.3;
    border-radius: 25px;
}

h1 { font-size: 1.8rem; letter-spacing: -1px; margin-bottom: 8px; }
.tagline { color: #888; font-size: 0.95rem; margin-bottom: 40px; }

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

.glass-card {
    background: var(--glass-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 18px 24px;
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    transform: scale(1.02);
}

.glass-card.highlight {
    border: 1px solid rgba(0, 122, 255, 0.3);
    background: rgba(0, 122, 255, 0.05);
}

.icon { font-size: 1.2rem; }
.text { font-size: 1rem; font-weight: 500; }

footer { margin-top: 60px; color: #444; font-size: 0.8rem; }

.main-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px; 
    position: relative;
    z-index: 2;
}