:root {
    --bg-base: #022c22;
    --bg-surface: rgba(2, 44, 34, 0.2);
    --border: rgba(16, 185, 129, 0.15);
    --highlight: #10b981;
    --text-main: #ecfdf5;
    --text-sub: #a7f3d0;
    --font-family: 'JetBrains Mono', monospace;
}

body {
    margin: 0;
    min-height: 100vh;
    background-color: var(--bg-base);
    background-image: radial-gradient(circle at 50% 0%, rgba(6, 78, 59, 0.5) 0%, var(--bg-base) 80%);
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-main);
    font-family: var(--font-family);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.02em;
    user-select: none;
}

::selection {
    background-color: var(--highlight);
    color: var(--bg-base);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-base);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--highlight);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(2, 44, 34, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.05);
    z-index: 50;
}

.nav-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: bold;
    letter-spacing: 0.1em;
    color: var(--highlight);
}

.nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(2, 44, 34, 0.95);
    backdrop-filter: blur(16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 32px 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.3s ease-in-out;
}

.nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

@media (min-width: 768px) {
    .nav-links {
        position: static;
        width: auto;
        background: transparent;
        flex-direction: row;
        padding: 0;
        clip-path: none;
    }
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--highlight);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
}

.bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: clamp(96px, 15vh, 128px) 24px 96px 24px;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: bold;
    margin: 0 0 24px 0;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-sub);
    max-width: 600px;
    line-height: 1.6;
    margin: 0 0 48px 0;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

@media (min-width: 480px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 1024px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.card {
    background-color: var(--bg-surface);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    border-left: 1px solid rgba(16, 185, 129, 0.3);
    padding: clamp(16px, 3vw, 24px);
    box-sizing: border-box;
    border-radius: 16px;
    transition: border-color 0.2s;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card:hover {
    border-color: rgba(16, 185, 129, 0.4);
}

.label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--highlight);
    margin-bottom: 8px;
    font-weight: 700;
}

.value {
    font-size: 1.125rem;
    font-weight: 600;
}

.social-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    padding: 32px;
}

.social-card:hover {
    border-color: var(--highlight);
}

.social-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 4px;
}

.social-handle {
    font-size: 0.875rem;
    color: var(--text-sub);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 24px 0;
    text-align: center;
}

.list-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(2, 44, 34, 0.2);
    border: 1px solid var(--border);
    padding: 16px;
    border-radius: 12px;
}

.item-name {
    font-weight: 500;
}

.item-link {
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--highlight);
    text-decoration: none;
    transition: color 0.2s;
}

.item-link:hover {
    color: var(--text-main);
}

.embed-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 300px;
}

.mb-auto {
    margin-bottom: 16px;
}

.embed-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background-color: rgba(2, 44, 34, 0.2);
    border: 1px dashed var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-sub);
    font-size: 0.875rem;
    border-radius: 12px;
}

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    background-color: rgba(2, 44, 34, 0.4);
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 8px 24px;
    font-size: 0.875rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.2s, background-color 0.2s;
    border-radius: 8px;
}

.btn:hover {
    border-color: var(--highlight);
    background-color: rgba(16, 185, 129, 0.1);
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #4b5563;
    margin-right: 12px;
}

.status-online {
    background-color: #10b981;
}

.status-idle {
    background-color: #f59e0b;
}

.status-dnd {
    background-color: #ef4444;
}

.playlink {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 0 24px 0;
    text-decoration: none;
    color: var(--text-main);
}

.label2 {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-sub);
    margin-bottom: 8px;
    text-align: center;
}