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

ul ul {
    padding-left: 30px;
}

body {
    font-family: 'Courier New', monospace;
    background: linear-gradient(135deg, #142883 0%, #2d0259 100%);
    min-height: 100vh;
    cursor: none;
    overflow-x: hidden;
    color: #fff;
    list-style-type: disc;
}

.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #ffd700;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.cursor-trail {
    width: 8px;
    height: 8px;
    background: rgba(255, 215, 0, 0.6);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
}

.particle {
    position: fixed;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); opacity: 0.6; }
    50% { transform: translateY(-20px); opacity: 1; }
}

/* Top Navigation Bar */
.top-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    display: flex;
    justify-content: space-evenly;
    gap: 0;
    flex-wrap: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.top-nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd700;
}

/* Dropdowns */
.dropdown {
    display: none;
    position: relative;
}
.dropdown-btn {
    color: #fff;
    background: none;
    border: 1px solid transparent;
    font-size: 0.95em;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.dropdown-btn:hover,
.dropdown.open .dropdown-btn {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffd700;
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    min-width: 160px;
    padding: 6px 0;
    z-index: 1001;
    margin-top: 4px;
}
.dropdown.open .dropdown-menu {
    display: block;
}
.dropdown-menu a {
    display: block;
    padding: 8px 16px;
    border-radius: 0;
    border: none;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.15);
    border: none;
}

.nav-short { display: none; }

@media (max-width: 900px) {
    .reviews-solo, .misc-solo { display: none; }
    .dropdown { display: block; }
    .nav-long { display: none; }
    .nav-short { display: inline; }
}

header {
    text-align: center;
    padding: 40px 20px 20px;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    letter-spacing: 2px;
}

.splash-text {
    display: inline-block;
    font-size: 1.2em;
    color: #ffd700;
    transform: rotate(-8deg);
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-style: italic;
    animation: subtle-bounce 2s ease-in-out infinite;
}

@keyframes subtle-bounce {
    0%, 100% { transform: rotate(-8deg) translateY(0px); }
    50% { transform: rotate(-8deg) translateY(-5px); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.intro-section {
    display: flex;
    align-items: center;
    gap: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.profile-photo {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4em;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05) rotate(5deg);
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2em;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Newspaper Grid Layout */
.nav-grid.newspaper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "headline headline"
        "projects movies"
        "games discipline"
        "fish fish";
    gap: 20px;
    margin-top: 40px;
}

.card-headline   { grid-area: headline; }
.card-projects   { grid-area: projects; }
.card-movies     { grid-area: movies; }
.card-games      { grid-area: games; }
.card-discipline { grid-area: discipline; }
.card-fish       { grid-area: fish; }

.nav-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.nav-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffd700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.nav-card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.nav-card p {
    font-size: 0.95em;
    opacity: 0.9;
}

/* Section Labels (newspaper-style) */
.section-label {
    font-size: 0.7em;
    color: #ffd700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-variant: small-caps;
    margin-bottom: 4px;
    display: block;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 4px;
}

/* Headline card - full width, larger */
.card-headline {
    text-align: center;
}

.card-headline .section-label {
    text-align: center;
}

/* Card Previews */
.nav-card-preview {
    width: 100%;
    border-radius: 8px;
    margin-top: 12px;
    max-height: 200px;
    object-fit: cover;
}

.preview-subtitle {
    display: block;
    margin-top: 8px;
    font-size: 0.85em;
    color: #7dd3fc;
    font-style: italic;
}

/* Movie Preview */
.movie-preview {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    align-items: flex-start;
}

.movie-poster-preview {
    max-height: 180px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
    flex-shrink: 0;
}

.movie-preview-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.star-rating {
    color: #ffd700;
    font-size: 1.2em;
    letter-spacing: 2px;
}

/* Game Preview */
.game-preview {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    align-items: stretch;
    flex: 1;
}

.game-cover-preview {
    flex: 1;
    min-width: 0;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.game-preview-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.game-preview-meta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.game-status-badge {
    font-size: 0.75em;
    padding: 2px 10px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-status-badge.status-in-progress {
    background: #7dd3fc;
    color: #142883;
}

.game-status-badge.status-completed {
    background: #5eead4;
    color: #0f3d33;
}

.game-hours {
    font-size: 0.85em;
    color: #a5b4fc;
}

.game-genre {
    font-size: 0.8em;
    color: #c4b5fd;
    font-style: italic;
}

/* Discipline Preview */
.discipline-preview-row {
    display: flex;
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
    flex: 1;
}

.discipline-dots-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.discipline-dots {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.discipline-emmet-img {
    flex: 1;
    min-width: 0;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.discipline-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    transition: transform 0.2s ease;
}

.discipline-dot:hover {
    transform: scale(1.3);
}

.discipline-dot.empty {
    opacity: 0.3;
    border: 2px solid;
    background: transparent !important;
}

/* Mobile: single column */
@media (max-width: 768px) {
    h1 { font-size: 2em; }
    .intro-section {
        flex-direction: column;
        text-align: center;
    }
    .profile-photo {
        width: 200px;
        height: 200px;
    }
    .top-nav {
        padding: 10px 12px;
    }
    .top-nav a, .dropdown-btn {
        font-size: 0.8em;
        padding: 6px 10px;
    }
    .nav-grid.newspaper {
        grid-template-columns: 1fr;
        grid-template-areas:
            "headline"
            "projects"
            "movies"
            "games"
            "discipline"
            "fish";
    }
}
