:root {
    --bg: #050505;
    --accent: #00f2ff;
}

body {
    background: var(--bg);
    color: #fff;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

#canvas-dots { position: fixed; top: 0; z-index: 1; }

.contact-wrapper { position: relative; z-index: 2; width: 100%; max-width: 600px; padding: 20px; }

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
}

header h2 { font-size: 1.5rem; letter-spacing: 2px; margin-bottom: 10px; }
header span { color: var(--accent); }
header p { color: #8892b0; font-size: 0.9rem; margin-bottom: 40px; }

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
    border: 1px solid transparent;
}

.contact-item:hover {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent);
    transform: scale(1.02);
}

.icon {
    width: 50px; height: 50px;
    background: var(--accent);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 900;
    font-size: 1.2rem;
}

.details { text-align: left; }
.details span { display: block; font-size: 0.7rem; color: var(--accent); text-transform: uppercase; }
.details strong { font-size: 1rem; }

.menu-trigger {
    position: fixed; top: 40px; right: 40px;
    width: 60px; height: 60px; border-radius: 50%;
    border: 1px solid var(--accent);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.line { width: 25px; height: 2px; background: var(--accent); margin: 3px; }