@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', monospace;
    background: #000;
    color: #808080;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}


/* STERNE & HINTERGRUND */

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

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease-out;
}

.star.s {
    width: 1px;
    height: 1px;
    animation: twinkle 4s infinite;
}

.star.m {
    width: 2px;
    height: 2px;
    box-shadow: 0 0 2px #fff;
    animation: twinkle 3s infinite;
}

.star.l {
    width: 3px;
    height: 3px;
    box-shadow: 0 0 4px #fff;
    animation: twinkle 5s infinite;
}

@keyframes twinkle {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
}


/* SHOOTING STARS CSS */

.shooter {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    pointer-events: none;
    z-index: 1;
}

.shooter-trail {
    position: absolute;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
    right: 2px;
    top: 50%;
    transform-origin: 100% 50%;
    pointer-events: none;
}


/* Click Ripple Effects */

.clickfx {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    animation: ripple 0.6s ease-out forwards;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}


/* CURSOR */

.cursor-big {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.15s ease-out, height 0.15s ease-out, border-color 0.15s ease-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.cursor-small {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
}


/* HAUPTPAGE - FIX: Animation nur beim ersten Laden */

.main {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}


/* Nur beim ersten Seitenaufruf animieren */

body.page-loaded .main {
    animation: fadeIn 1.5s ease-out;
}

.main.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}


/* MINA TITLE */

h1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: normal;
    letter-spacing: 0.3rem;
    color: #fff;
    margin-bottom: 3.5rem;
    text-transform: uppercase;
    position: relative;
    image-rendering: pixelated;
    text-shadow: 4px 4px 0 #3f3f3f, 8px 8px 0 #2a2a2a;
    transition: all 0.3s ease;
}

.mina-title-container {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-bottom: 3.5rem;
}

.mina-title-text {
    display: inline-block;
    transition: all 0.3s ease;
}

.mina-title-text:hover {
    color: #b0b0b0;
    text-shadow: 4px 4px 0 #4f4f4f, 8px 8px 0 #3a3a3a, 0 0 20px rgba(255, 255, 255, 0.3);
}


/* NAVIGATION */

.nav {
    font-size: 1.3rem;
    letter-spacing: 0.15rem;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.nav a {
    color: #606060;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.8rem 1.8rem;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav a:hover::before {
    left: 100%;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: #909090;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav a:hover {
    color: #b0b0b0;
}

.nav a:hover::after {
    width: 80%;
}

.sep {
    color: #404040;
    opacity: 0.6;
    user-select: none;
}


/* ABOUT PAGE */

.about-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.about-page.visible {
    opacity: 1;
    pointer-events: auto;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.about-page h2 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 #3f3f3f, 6px 6px 0 #2a2a2a;
}


/* PROFILE SECTION */

.profile-section {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.profile-image {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}

.profile-text {
    flex: 1;
}

.profile-text p {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}


/* SKILLS SECTION */

.skills-section {
    margin-bottom: 4rem;
}

.skills-section h3 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0 #3f3f3f;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.skill-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.skill-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skill-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.skill-name {
    font-size: 1.3rem;
    color: #fff;
    font-weight: bold;
}

.skill-level {
    display: flex;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
}

.skill-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.skill-dot.filled {
    background: #fff;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.skill-desc {
    color: #909090;
    font-size: 0.95rem;
    line-height: 1.6;
}


/* PETS PAGES (Hunde & Katzen) */

.pets-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.pets-page.visible {
    opacity: 1;
    pointer-events: auto;
}

.pets-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.pets-page h2 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 #3f3f3f, 6px 6px 0 #2a2a2a;
}

.pets-gallery {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pet-profile {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pet-profile:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.pet-image-large {
    flex-shrink: 0;
    width: 250px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pet-image-large:hover {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

.pet-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pet-image-large:hover img {
    transform: scale(1.05);
}

.pet-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 60px;
}

.pet-info h3 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 0 #3f3f3f;
    margin: 0;
}


/* PET INFO OHNE BESCHREIBUNG */

.pet-info p {
    display: none !important;
}


/* ALLE LINKS IN ABOUT - EINHEITLICHES DESIGN */

.pet-link,
.anime-link,
.gaming-link,
.cosplay-link,
.code-link {
    color: #fff !important;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    position: relative;
}


/* Animationen für verschiedene Link-Typen - EXAKT GLEICHE WERTE */

.pet-link[data-pet="dogs"] {
    animation: petLinkGlow 3s ease-in-out infinite;
}

.pet-link[data-pet="cats"] {
    animation: catLinkGlow 3s ease-in-out infinite;
}

.anime-link {
    animation: animeLinkGlow 3s ease-in-out infinite;
}

.gaming-link {
    animation: gamingLinkGlow 3s ease-in-out infinite;
}

.cosplay-link {
    animation: cosplayLinkGlow 3s ease-in-out infinite;
}

.code-link {
    animation: codeLinkGlow 3s ease-in-out infinite;
}


/* EXAKT DIE GLEICHEN GLOW-ANIMATIONEN */

@keyframes petLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(173, 216, 230, 0.6), 0 0 20px rgba(173, 216, 230, 0.4);
    }
}

@keyframes catLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 182, 193, 0.6), 0 0 20px rgba(255, 182, 193, 0.4);
    }
}

@keyframes animeLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.4);
    }
}

@keyframes gamingLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(100, 255, 100, 0.6), 0 0 20px rgba(100, 255, 100, 0.4);
    }
}

@keyframes cosplayLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(255, 105, 180, 0.6), 0 0 20px rgba(255, 105, 180, 0.4);
    }
}

@keyframes codeLinkGlow {
    0%,
    100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 10px rgba(100, 149, 237, 0.6), 0 0 20px rgba(100, 149, 237, 0.4);
    }
}


/* EXAKT DIE GLEICHEN HOVER-EFFEKTE */

.pet-link:hover,
.anime-link:hover,
.gaming-link:hover,
.cosplay-link:hover,
.code-link:hover {
    animation: none;
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.05);
}


/* EXAKT DIE GLEICHEN HOVER-GLOW-EFFEKTE */

.pet-link[data-pet="dogs"]:hover {
    text-shadow: 0 0 10px rgba(173, 216, 230, 0.8), 0 0 20px rgba(173, 216, 230, 0.6), 0 0 30px rgba(173, 216, 230, 0.4) !important;
}

.pet-link[data-pet="cats"]:hover {
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.8), 0 0 20px rgba(255, 182, 193, 0.6), 0 0 30px rgba(255, 182, 193, 0.4) !important;
}

.anime-link:hover {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4) !important;
}

.gaming-link:hover {
    text-shadow: 0 0 10px rgba(100, 255, 100, 0.8), 0 0 20px rgba(100, 255, 100, 0.6), 0 0 30px rgba(100, 255, 100, 0.4) !important;
}

.cosplay-link:hover {
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.8), 0 0 20px rgba(255, 105, 180, 0.6), 0 0 30px rgba(255, 105, 180, 0.4) !important;
}

.code-link:hover {
    text-shadow: 0 0 10px rgba(100, 149, 237, 0.8), 0 0 20px rgba(100, 149, 237, 0.6), 0 0 30px rgba(100, 149, 237, 0.4) !important;
}


/* EXAKT DIE GLEICHE UNTERSTREICHUNGSANIMATION */

.pet-link::after,
.anime-link::after,
.gaming-link::after,
.cosplay-link::after,
.code-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}


/* EXAKT DIE GLEICHEN UNTERSTREICHUNGSFARBEN */

.pet-link[data-pet="dogs"]::after {
    background: linear-gradient(90deg, transparent, rgba(173, 216, 230, 0.8), transparent);
}

.pet-link[data-pet="cats"]::after {
    background: linear-gradient(90deg, transparent, rgba(255, 182, 193, 0.8), transparent);
}

.anime-link::after {
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.8), transparent);
}

.gaming-link::after {
    background: linear-gradient(90deg, transparent, rgba(100, 255, 100, 0.8), transparent);
}

.cosplay-link::after {
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.8), transparent);
}

.code-link::after {
    background: linear-gradient(90deg, transparent, rgba(100, 149, 237, 0.8), transparent);
}


/* EXAKT DER GLEICHE HOVER FÜR UNTERSTREICHUNG */

.pet-link:hover::after,
.anime-link:hover::after,
.gaming-link:hover::after,
.cosplay-link:hover::after,
.code-link:hover::after {
    transform: scaleX(1);
}


/* ANIME SINGLE PAGE STYLES - OHNE SCROLL */

.anime-single-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.anime-single-page.visible {
    opacity: 1;
    pointer-events: auto;
}

.anime-single-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.anime-single-page h1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 #3f3f3f, 6px 6px 0 #2a2a2a;
}


/* ANIME HORIZONTAL GALERIE - OHNE SCROLL, GRÖßERE BILDER */

.anime-horizontal-gallery {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow: hidden;
}


/* Anime Horizontal Box - GRÖßER, OHNE SCROLL */

.anime-horizontal-box {
    flex: 1;
    min-width: 0;
    max-width: 220px;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.anime-horizontal-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
}


/* Anime Horizontal Image - GRÖßER, FÜLLT DIE BOX AUS */

.anime-horizontal-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.anime-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.anime-horizontal-box:hover .anime-horizontal-image img {
    transform: scale(1.1);
}


/* Game Rank Label */

.game-rank {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.8rem;
    padding: 8px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2;
}


/* Anime Horizontal Info - ENTFERNT (nur Bild, kein Text) */

.anime-horizontal-info {
    display: none;
}


/* Anime Kategorie Box */

.anime-category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.anime-category-box:last-child {
    margin-bottom: 2rem;
}

.anime-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.anime-category-title {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0 #3f3f3f;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.anime-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}


/* COSPLAY PAGE */

.cosplay-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 4;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.cosplay-page.visible {
    opacity: 1;
    pointer-events: auto;
}

.cosplay-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.cosplay-page h1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 #3f3f3f, 6px 6px 0 #2a2a2a;
}


/* Cosplay Category Box */

.cosplay-category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.cosplay-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.2), transparent);
}

.cosplay-category-title {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0 #3f3f3f;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 105, 180, 0.1);
    position: relative;
}

.cosplay-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgba(255, 105, 180, 0.3);
}


/* Cosplay Character */

.cosplay-character {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cosplay-character:hover {
    border-color: rgba(255, 105, 180, 0.3);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.15);
    transform: translateY(-3px);
}

.cosplay-image-pair {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    align-items: center;
}

.cosplay-image-box {
    flex: 1;
    max-width: 300px;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.cosplay-image-box:hover {
    border-color: rgba(255, 105, 180, 0.5);
    box-shadow: 0 0 20px rgba(255, 105, 180, 0.2);
    transform: translateY(-5px);
}

.cosplay-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.cosplay-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cosplay-image-box:hover .cosplay-image-wrapper img {
    transform: scale(1.05);
}

.cosplay-label {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 0.8rem;
    padding: 8px;
    text-align: center;
    border-top: 2px solid rgba(255, 105, 180, 0.3);
    backdrop-filter: blur(5px);
    z-index: 2;
}

.cosplay-character-info {
    text-align: center;
    padding: 1rem;
}

.character-name {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 0 #3f3f3f;
}

.character-description {
    color: #b0b0b0;
    font-size: 1.1rem;
}


/* PROJECTS PAGE */

.projects-page {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-out;
    overflow-y: auto;
    padding: 2rem 1rem;
}

.projects-page.visible {
    opacity: 1;
    pointer-events: auto;
}

.projects-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.projects-page h1 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #fff;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 3px 3px 0 #3f3f3f, 6px 6px 0 #2a2a2a;
}


/* Projects Category Box */

.projects-category-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.projects-category-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(100, 149, 237, 0.2), transparent);
}

.projects-category-title {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0 #3f3f3f;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(100, 149, 237, 0.1);
    position: relative;
}

.projects-category-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: rgba(100, 149, 237, 0.3);
}


/* Project Card */

.project-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: rgba(100, 149, 237, 0.3);
    box-shadow: 0 0 30px rgba(100, 149, 237, 0.15);
    transform: translateY(-3px);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-name {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 0 #3f3f3f;
    margin: 0;
}

.project-github-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.project-github-link:hover {
    background: rgba(100, 149, 237, 0.1);
    border-color: rgba(100, 149, 237, 0.3);
    transform: translateY(-2px);
}

.project-github-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.project-description {
    color: #b0b0b0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-tech-stack {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tech-icon {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.tech-icon:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.tech-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tech-icon span {
    color: #b0b0b0;
    font-size: 0.9rem;
}


/* Responsive für größere Bilder OHNE SCROLL */

@media (max-width: 1200px) {
    .anime-horizontal-box {
        max-width: 200px;
        height: 340px;
    }
    .anime-horizontal-gallery {
        gap: 1rem;
        padding: 1rem;
    }
    .cosplay-image-box {
        max-width: 250px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .anime-horizontal-box {
        max-width: 180px;
        height: 320px;
    }
    .anime-horizontal-gallery {
        gap: 0.8rem;
    }
    .anime-single-container {
        max-width: 1000px;
    }
    .projects-container {
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: default;
    }
    .cursor-big,
    .cursor-small {
        display: none;
    }
    .anime-single-page h1 {
        font-size: 2.2rem;
    }
    .anime-category-title {
        font-size: 1.5rem;
    }
    .anime-horizontal-box {
        max-width: 150px;
        height: 260px;
    }
    .anime-horizontal-gallery {
        gap: 0.6rem;
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .anime-category-box {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    .anime-single-container {
        padding: 1rem 0;
    }
    /* Cosplay Mobile */
    .cosplay-page h1 {
        font-size: 2.2rem;
    }
    .cosplay-category-title {
        font-size: 1.5rem;
    }
    .cosplay-image-pair {
        flex-direction: column;
        gap: 1rem;
    }
    .cosplay-image-box {
        max-width: 100%;
        height: 400px;
    }
    .cosplay-category-box {
        padding: 1.5rem;
    }
    .character-name {
        font-size: 1.3rem;
    }
    /* Projects Mobile */
    .projects-page h1 {
        font-size: 2.2rem;
    }
    .projects-category-title {
        font-size: 1.5rem;
    }
    .project-card {
        padding: 1.2rem;
    }
    .project-name {
        font-size: 1.3rem;
    }
    .project-tech-stack {
        gap: 0.8rem;
    }
    .tech-icon {
        padding: 0.4rem 0.8rem;
    }
    /* Mobile: Link Animation reduzieren */
    .cosplay-link,
    .gaming-link,
    .anime-link,
    .pet-link,
    .code-link {
        animation: none;
    }
    .cosplay-link:hover,
    .gaming-link:hover,
    .anime-link:hover,
    .pet-link:hover,
    .code-link:hover {
        transform: none;
    }
    /* Allgemeine Mobile Anpassungen */
    h1 {
        font-size: 3.5rem;
        letter-spacing: 0.3rem;
        margin-bottom: 2.5rem;
    }
    .nav {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 1.2rem;
    }
    .sep {
        display: none;
    }
    .profile-section {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .profile-image {
        width: 150px;
        height: 150px;
    }
    .skills-grid {
        grid-template-columns: 1fr;
    }
    .skill-card {
        padding: 1.2rem;
    }
    .pet-profile {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .pet-image-large {
        width: 200px;
        height: 200px;
    }
    .pet-info {
        min-height: 40px;
    }
    .pet-info h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 640px) {
    .anime-horizontal-gallery {
        flex-wrap: wrap;
        justify-content: center;
    }
    .anime-horizontal-box {
        max-width: 140px;
        height: 240px;
        flex: 0 0 auto;
        margin: 0.3rem;
    }
    .project-tech-stack {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .anime-single-page h1 {
        font-size: 1.8rem;
    }
    .anime-category-title {
        font-size: 1.2rem;
    }
    .anime-horizontal-box {
        max-width: 120px;
        height: 200px;
    }
    .anime-horizontal-gallery {
        gap: 0.5rem;
        padding: 0.8rem;
    }
    /* Cosplay Small Mobile */
    .cosplay-page h1 {
        font-size: 1.8rem;
    }
    .cosplay-category-title {
        font-size: 1.2rem;
    }
    .cosplay-image-box {
        height: 350px;
    }
    .character-name {
        font-size: 1.2rem;
    }
    /* Projects Small Mobile */
    .projects-page h1 {
        font-size: 1.8rem;
    }
    .projects-category-title {
        font-size: 1.2rem;
    }
    .project-name {
        font-size: 1.2rem;
    }
    .project-description {
        font-size: 1rem;
    }
    /* Allgemeine Small Mobile */
    h1 {
        font-size: 2.5rem;
    }
    .nav {
        font-size: 1rem;
    }
    .about-page h2,
    .pets-page h2 {
        font-size: 1.5rem;
    }
    .pet-image-large {
        width: 150px;
        height: 150px;
    }
    .pet-info h3 {
        font-size: 1.2rem;
    }
    .back-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
}


/* BACK BUTTON */

.back-btn {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
    color: #606060;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    cursor: pointer;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.back-btn:hover::before {
    left: 100%;
}

.back-btn:hover {
    color: #b0b0b0;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


/* REVIEWS SECTION */

.reviews-section {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.reviews-section h3 {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 0 #3f3f3f;
}

.reviews-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-carousel-wrapper {
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    padding: 0 70px;
}

.reviews-carousel {
    flex: 1;
    width: 100%;
    height: 350px;
    perspective: 1000px;
    position: relative;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.review-card.active {
    opacity: 1;
    pointer-events: auto;
}

.review-top {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.review-image-wrapper {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.review-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-header {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.review-name {
    font-family: 'Press Start 2P', 'Courier New', monospace;
    font-size: 1rem;
    color: #fff;
    text-align: left;
    margin: 0;
}

.review-stars {
    display: flex;
    gap: 5px;
    align-items: center;
}

.review-text {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.7;
    flex: 1;
    margin: 0;
}

.review-star {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
}

.review-star.filled {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.prev-btn {
    left: -70px;
}

.next-btn {
    right: -70px;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    order: 1;
}

.next-btn {
    order: 3;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2rem;
    width: 100%;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.4);
}

.carousel-dot.active {
    background: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}


/* Reviews Mobile */

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
        min-height: 300px;
    }
    .review-image-wrapper {
        width: 100px;
        height: 100px;
    }
    .review-name {
        font-size: 1rem;
    }
    .review-text {
        font-size: 0.95rem;
        max-height: 120px;
    }
    .review-star {
        font-size: 1.5rem;
    }
    .reviews-container {
        padding: 0 40px;
    }
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .reviews-section h3 {
        font-size: 1.2rem;
    }
    .review-card {
        padding: 1.2rem;
        min-height: 280px;
    }
    .review-image-wrapper {
        width: 80px;
        height: 80px;
    }
    .review-name {
        font-size: 0.9rem;
    }
    .review-text {
        font-size: 0.9rem;
        max-height: 100px;
    }
    .review-star {
        font-size: 1.2rem;
    }
    .reviews-container {
        padding: 0 35px;
    }
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}