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

body {
    background: #0c0c0c;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
}

#particles-js {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 380px;
    width: 100%;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
}

h1 {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2px;
}

.tag {
    display: block;
    font-size: 0.8rem;
    color: #555;
    margin-bottom: 6px;
    text-decoration: none;
    transition: color 0.2s;
}

.tag:hover {
    color: #888;
}

.social-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.social-btn {
    background: none;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 6px 14px;
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.social-btn:hover {
    border-color: #444;
    color: #fff;
}

.discord-toggle:hover {
    color: #5865f2;
    border-color: #5865f2;
}

.discord-menu {
    position: relative;
}

.discord-dropdown {
    position: absolute;
    top: 32px;
    left: 0;
    background: #151515;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 6px 0;
    min-width: 120px;
}

.discord-dropdown a {
    display: block;
    padding: 6px 14px;
    font-size: 0.75rem;
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.discord-dropdown a:hover {
    color: #fff;
}

.bio {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 4px;
}

.status-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 9999px;
    margin-bottom: 24px;
    color: #999;
    border: 1px solid #222;
}

.status-badge.online { color: #3ba55d; border-color: #3ba55d33; }
.status-badge.idle { color: #faa61a; border-color: #faa61a33; }
.status-badge.dnd { color: #ed4245; border-color: #ed424533; }
.status-badge.offline { color: #555; border-color: #333; }

h2 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #444;
    margin-bottom: 10px;
}

.project-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid #1a1a1a;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s;
    margin-bottom: 8px;
}

.project-card:hover {
    border-color: #333;
}

.project-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.project-card strong {
    display: block;
    font-size: 0.9rem;
    color: #fff;
}

.project-card span {
    font-size: 0.75rem;
    color: #555;
}

.iframe-overlay {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: #0c0c0c;
    display: flex;
    flex-direction: column;
}

.iframe-overlay.hidden {
    display: none;
}

.iframe-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #111;
    border-bottom: 1px solid #1a1a1a;
}

.iframe-btn {
    background: none;
    border: 1px solid #222;
    border-radius: 6px;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.iframe-btn:hover {
    border-color: #444;
}

.iframe-btn-icon {
    width: 18px;
    height: 18px;
}

#iframe-content {
    flex: 1;
    width: 100%;
    border: none;
}

.intro {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #0c0c0c;
    text-align: center;
    padding: 20px;
}

.intro-enter {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
}

.intro.fade-out {
    opacity: 0;
    transition: opacity 1s ease;
    pointer-events: none;
}

.hidden {
    display: none !important;
}