@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;700;900&display=swap');

:root {
    --bg-color: #0b1121;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    
    --ion-accent: #0ea5e9; 
    --ion-glow: rgba(14, 165, 233, 0.4);
    
    --container-bg: rgba(20, 25, 35, 0.7);
    --container-border: rgba(255, 255, 255, 0.05);
}

body {
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.1) 0, transparent 50vw),
        radial-gradient(circle at 100% 100%, rgba(125, 211, 252, 0.05) 0, transparent 50vw);
    background-attachment: fixed;
    color: var(--text-main);
    font-family: 'Fira Code', monospace;
    line-height: 1.6;
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 2rem;
}

.container {
    max-width: 800px;
    width: 100%;
    background: var(--container-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--container-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-header {
    text-align: center;
    margin-bottom: 2rem;
}

.brand-title {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 4px;
    margin: 0;
    color: white;
    text-shadow: 0 0 20px var(--ion-glow);
}

.alias-tag {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

.highlight {
    color: var(--ion-accent);
    font-weight: bold;
}

h2, h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
}

p {
    color: var(--text-muted);
}

.divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--ion-accent), transparent);
    margin: 2.5rem 0;
}

ul {
    list-style-type: square;
    color: var(--text-muted);
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

.project-card {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--container-border);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.project-card:hover {
    transform: translateY(-2px);
    border-color: var(--ion-glow);
}

.project-card h3 {
    color: var(--ion-accent);
    margin-top: 0;
}

.project-card p {
    margin-bottom: 0;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 2rem 0 1rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-links li {
    margin: 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    text-decoration: none;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.social-btn i {
    font-size: 1.3rem;
    margin-right: 0.75rem;
}

.social-btn:hover {
    transform: translateY(-3px);
}

.social-btn.github:hover {
    background: rgba(33, 38, 45, 0.9);
    border-color: #38bdf8;
    box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
    color: white;
}

.social-btn.discord:hover {
    background: rgba(88, 101, 242, 0.9);
    border-color: #22d3ee;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.4);
    color: white;
}
