main {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px 6px;
}

@font-face {
    font-family: 'TwilightZone';
    src: url('fonts/twilightzone.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.markus-zone-title {
    font-family: 'TwilightZone', serif;
    font-size: 3rem;
    text-align: center;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 2px 8px #000, 0 0 2px #fff;
    margin-bottom: 1.5rem;
}

.markus-zone-description {
    font-family: 'TwilightZone', serif;
    font-size: 2rem;
    text-align: center;
    color: #ffd700;
    margin: 1.2rem auto 2rem auto;
    max-width: 700px;
    line-height: 1.6;
    text-shadow: 0 1px 4px #000a;
}

.profile-photo {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    border: 4px solid #f8f8f8;
    background: #ffffff;
}

.photo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2em;
}

@media (max-width: 700px) {
    .profile-photo {
        width: 200px;
        height: 200px;
    }
}

.company-logo {
    height: 1.6em;
    width: 1.6em;
    vertical-align: middle;
    margin-right: 0.5em;
    border-radius: 4px;
    box-shadow: 0 1px 4px #0006;
    background: #fff;
    object-fit: contain;
}

.minimal-navbar {
    background: rgba(10, 10, 20, 0.98);
    box-shadow: 0 2px 16px #000a;
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0.5rem 0;
}

.navbar-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
}

.nav-logo {
    font-family: 'TwilightZone', serif;
    font-size: 2.2rem;
    color: #ffd700;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #000, 0 0 2px #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-logo:hover {
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.3em 0.7em;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
}

.nav-links a:hover, .nav-links a:focus {
    background: #ffd70022;
    color: #ffd700;
}


.centered-card {
    background: rgba(30, 30, 60, 0.65);
    border-radius: 2rem;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.35), 0 2px 16px 0 rgba(255,255,255,0.08) inset;
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    --border-angle: 0deg;
    border-image: linear-gradient(var(--border-angle), #ffd700, #6a5acd, #ffd700 80%) 1;
    animation: border-rotate 5s linear infinite;
    transition: box-shadow 0.3s, transform 0.3s;
    max-width: 800px;
    width: 100%;
}

.centered-card:hover {
    box-shadow: 0 12px 48px 0 rgba(0,0,0,0.45), 0 4px 32px 0 rgba(255,255,255,0.10) inset;
    transform: translateY(-6px) scale(1.025);
    border-color: #ffd700;
 }

.centered-card {
    max-width: 540px;
    margin: 3.5rem auto 2.5rem auto;
    padding: 2.5rem 2.2rem 2.2rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mb-3 {
    margin-bottom: 1.2rem;
}

@media (max-width: 700px) {
    .centered-card {
        padding: 1.2rem 0.5rem;
        margin: 2rem 0.2rem;
    }
    .navbar-content {
        padding: 0 0.5rem;
    }
    .nav-links {
        gap: 1rem;
    }
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background: #000;
    overflow-x: hidden;
    color: #fff;
    font-weight: bold;
}

*, *::before, *::after {
    color: #fff !important;
    font-weight: bold !important;
    text-shadow: 0 1px 4px #000a;
}

.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 6px 2px #fff8;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

@media (max-width: 600px) {
}

.music-controls {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#music-toggle {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffd700;
    color: #ffd700;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

#music-toggle:hover {
    background: rgba(255, 215, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

#music-toggle:active {
    transform: scale(0.95);
}

.project-link {
    color: #ffd700;
    text-decoration: underline dotted;
    transition: color 0.2s;
    position: relative;
}

.project-link:hover, .project-link:focus {
    color: #fff700;
    text-decoration: underline solid;
}

.work-entry summary {
    position: relative;
    padding-left: 2em;
    display: flex;
    align-items: center;
    min-height: 2.2em;
}

.work-entry summary::before {
    content: '\25B6';
    position: absolute;
    left: 0.2em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
    color: #ffd700;
    transition: transform 0.2s;
    text-shadow: 0 1px 4px #000a;
}

.work-entry[open] summary::before {
    transform: rotate(90deg);
}

.work-entry {
    margin-bottom: 1.5em;
    background: rgba(30, 30, 40, 0.85);
    border-radius: 14px;
    box-shadow: 0 4px 24px 0 rgba(0,0,0,0.18), 0 1.5px 8px 0 rgba(255,255,255,0.04) inset;
    border: 2.5px solid transparent;
    background-clip: padding-box, border-box;
    border-image: linear-gradient(135deg, #ffd700 0%, #6a5acd 100%);
    border-image-slice: 1;
    padding: 0.5em 0.8em;
    transition: box-shadow 0.2s;
}

.work-entry summary {
    cursor: pointer;
    outline: none;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.2em;
}

.work-entry[open] {
    box-shadow: 0 4px 16px #000c;
}

.work-entry summary::-webkit-details-marker {
    display: none;
}

.work-entry summary h3 {
    display: inline-flex;
    align-items: center;
    font-size: 1.3em;
    margin: 0;
}

.work-entry summary p {
    margin: 0 0 0 2.2em;
    font-size: 1em;
    color: #ffd700;
    text-shadow: 0 1px 4px #000a;
}

.work-entry ul {
    margin-top: 0.7em;
    margin-bottom: 0.5em;
    padding-left: 2.5em;
}

@keyframes fadeCreep {
    0% { opacity: 0.2; }
    10% { opacity: 0.5; }
    25% { opacity: 1; }
    60% { opacity: 1; }
    75% { opacity: 0.5; }
    85% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 0.2; }
}

.creepy-fade {
    animation: fadeCreep 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    transition: opacity 0.5s;
}

.scoreboard-overlay {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #181818 0%, #232323 100%);
    color: #fff;
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -2px 10px 0 #000b, 0 1px 3px #ffd70044 inset;
    display: flex;
    align-items: center;
    padding: 7px 22px 7px 22px;
    font-family: 'TwilightZone', serif;
    font-size: 1.25rem;
    z-index: 1000;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 4px #000, 0 0 1px #fff;
    border: 2px solid #ffd700;
    border-bottom: none;
    min-width: 160px;
    min-height: 36px;
    gap: 14px;
}

.scoreboard-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 8px;
}

.team-name {
    font-weight: bold;
    font-size: 0.95em;
    letter-spacing: 1.2px;
    color: #ffd700;
    text-shadow: 0 1px 4px #000, 0 0 1px #fff;
    margin-bottom: 1px;
}

.team-score {
    background: #222b44;
    color: #fff;
    border: 1.5px solid #ffd700;
    border-radius: 6px;
    padding: 2px 14px;
    font-size: 1.25em;
    font-family: 'TwilightZone', serif;
    font-weight: bold;
    box-shadow: 0 1px 6px #000a, 0 0 4px #ffd70044 inset;
    margin-top: 1px;
    letter-spacing: 1.2px;
}

.scoreboard-vs {
    font-weight: bold;
    font-size: 1.05em;
    margin: 0 6px;
    color: #ffd700;
    text-shadow: 0 1px 4px #000, 0 0 1px #fff;
    align-self: center;
    letter-spacing: 1.2px;
    padding: 0 4px;
}

@media (max-width: 600px) {
    .scoreboard-overlay {
        font-size: 1rem;
        padding: 4px 6px;
        min-width: unset;
        gap: 6px;
    }
    .scoreboard-team {
        margin: 0 3px;
    }
    .team-score {
        padding: 1px 7px;
        font-size: 1em;
    }
}
/* ...existing code... */