body {
    background-color: #080808;
    color: #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding-bottom: 80px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #121214 0%, #080808 100%);
    padding: 70px 20px 60px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero h1 {
    color: lime;
    font-size: 52px;
    font-family: monospace;
    margin: 0 0 12px 0;
    letter-spacing: -1px;
}

.subtitle {
    color: #999;
    font-size: 18px;
    margin: 0 0 18px 0;
}

.discord-link {
    color: #ff55ff;
    font-family: monospace;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: #18121a;
    padding: 7px 16px;
    border-radius: 0;
    border: 1px solid #3d2242;
    border-top: 1px solid #5a3261;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.15s ease;
}

.discord-link:hover {
    color: #ffffff;
    background: #241928;
    border-color: #63336b;
    border-top-color: #8c4998;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.discord-link:active {
    transform: translateY(0);
    background: #140e16;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.8);
}

.projects-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.section-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    font-family: monospace;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.project-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.project-row.reverse {
    flex-direction: row-reverse;
}

.project-media img {
    max-width: 100%;
    width: 480px;
    height: auto;
    display: block;
}

.project-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 220px;
}

.project-tag {
    color: lime;
    font-family: monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.project-info h3 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.project-info h3 a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.project-info h3 a:hover {
    color: lime;
}

.project-status {
    color: #888;
    font-family: monospace;
    margin: 0;
    font-size: 14px;
}

footer {
    position: relative;
    width: 100%;
    background-color: #0d0d0f;
    color: #777;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 60px;
    font-size: 14px;
}

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111114;
    padding: 12px 24px;
    position: sticky;
    top: 16px;
    z-index: 100;
    border: 1px solid #222226;
    border-bottom: 1px solid rgba(0, 255, 0, 0.5);
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
    box-sizing: border-box;
}

.nav-center {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: #b0b0b8;
    text-decoration: none;
    font-family: monospace;
    font-size: 14px;
    padding: 6px 14px;
    border-radius: 0;
    background: #1a1a1e;
    border: 1px solid #2a2a30;
    border-top: 1px solid #383842;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.15s ease;
}

.nav-link:hover {
    color: lime;
    background: #222228;
    border-color: #3a3a44;
    border-top-color: #4a4a58;
}

.nav-link:active {
    background: #141418;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.dropdown-btn {
    background: #1a1a1e;
    border: 1px solid #2a2a30;
    border-top: 1px solid #383842;
    color: #b0b0b8;
    font-size: 16px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 0;
    font-family: monospace;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: all 0.15s ease;
}

.dropdown-btn:hover {
    color: lime;
    background: #222228;
    border-color: #3a3a44;
    border-top-color: #4a4a58;
}

.dropdown-btn:active {
    background: #141418;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.6);
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background: #141418;
    min-width: 220px;
    padding: 6px;
    border-radius: 0;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
    border: 1px solid #2a2a30;
    border-top: 2px solid lime;
    top: 100%;
    margin-top: 8px;
    z-index: 101;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-link {
    color: #a0a0a8;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
    font-family: monospace;
    font-size: 13px;
    border-radius: 0;
    background: transparent;
    transition: all 0.15s ease;
}

.dropdown-link:hover {
    color: lime;
    background-color: #1e1e24;
}

a.glass-card-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.glass-card-link.reverse {
    flex-direction: row-reverse;
}

.liquid-glass-row {
    position: relative;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.035) 0%,
        rgba(255, 255, 255, 0.01) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(0, 0, 0, 0.6);
    border-radius: 0;
    padding: 32px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow:
        0 24px 48px -12px rgba(0, 0, 0, 0.85),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 0 rgba(0, 0, 0, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-glass-row::before {
    content: "";
    position: absolute;
    inset: -20px;
    z-index: -2;
    background: var(--card-bg, #0b0c10) center/cover no-repeat;
    filter: blur(10px) saturate(180%) brightness(0.45);
    transform: scale(1.1);
    pointer-events: none;
    transition: transform 0.5s ease, filter 0.35s ease;
}

.liquid-glass-row::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 1;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.35) 20%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.35) 80%,
        transparent 100%
    );
    pointer-events: none;
}

.liquid-glass-row:hover {
    border-color: rgba(255, 255, 255, 0.14);
    border-top-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow:
        0 30px 60px -16px rgba(0, 0, 0, 0.95),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.25);
}

.liquid-glass-row:hover::before {
    filter: blur(24px) saturate(200%) brightness(0.55);
    transform: scale(1.15);
}

.liquid-glass-row .project-media img {
    position: relative;
    z-index: 2;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.liquid-glass-row:hover .project-media img {
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.008);
}

.liquid-glass-row .project-info {
    position: relative;
    z-index: 2;
}

.glass-card-link .project-tag {
    color: var(--tag-color, lime);
    font-family: monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.25s ease;
}

.glass-card-link .project-info h3 {
    color: var(--title-color, #ffffff);
    transition: color 0.25s ease;
}

.glass-card-link .project-status {
    color: var(--status-color, #888888);
    font-family: monospace;
    transition: color 0.25s ease;
}

.glass-card-link:hover .project-info h3 {
    color: var(--title-hover, lime);
}

.glass-card-link:hover .project-status {
    color: var(--status-hover, #aaaaaa);
}
