body {
    margin: 0;
    background: #050505;
    color: white;
    font-family: Arial, sans-serif;
}

/* HOME PAGE REWORK */

.home-hero {
    position: relative;
    min-height: 620px;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(255, 0, 0, 0.25), transparent 35%),
        radial-gradient(circle at top left, rgba(120, 0, 0, 0.45), transparent 35%),
        linear-gradient(135deg, #050505, #160000, #050505);
    border-bottom: 4px solid #d40000;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 0, 0, 0.16);
    filter: blur(80px);
    border-radius: 50%;
    left: 50%;
    top: 15%;
    transform: translateX(-50%);
    z-index: 0;
}

.home-logo {
    position: relative;
    z-index: 1;
    width: 650px;
    max-width: 92%;
    filter:
        drop-shadow(0 0 20px rgba(255, 0, 0, 0.8))
        drop-shadow(0 0 45px rgba(255, 0, 0, 0.35));
}

.home-hero h1 {
    position: relative;
    z-index: 1;
    font-size: 48px;
    max-width: 950px;
    margin: 35px auto 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-subtitle {
    position: relative;
    z-index: 1;
    max-width: 850px;
    margin: auto;
    font-size: 21px;
    line-height: 1.6;
    color: #dddddd;
}

.home-main-buttons {
    position: relative;
    z-index: 1;
    margin-top: 38px;
}

.big-red-button,
.big-dark-button {
    display: inline-block;
    margin: 10px;
    padding: 16px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.25s ease;
}

.big-red-button {
    background: #d40000;
    color: white;
    border: 2px solid #ff4d4d;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.5);
}

.big-dark-button {
    background: #101010;
    color: white;
    border: 2px solid #d40000;
}

.big-red-button:hover,
.big-dark-button:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 0 25px red, 0 0 45px rgba(255, 0, 0, 0.55);
}

.status-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: -55px auto 40px;
    position: relative;
    z-index: 3;
    gap: 20px;
    padding: 0 20px;
}

.status-strip div {
    background: rgba(15, 15, 15, 0.95);
    border: 2px solid #d40000;
    border-radius: 18px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.status-strip h3 {
    color: #ff4d4d;
    font-size: 28px;
    margin: 0;
}

.status-strip p {
    color: #dddddd;
    margin-bottom: 0;
    font-size: 17px;
}

.home-main {
    max-width: 1150px;
    margin: auto;
    padding: 30px 20px 70px;
}

.home-card {
    background:
        linear-gradient(135deg, rgba(25, 25, 25, 0.98), rgba(10, 10, 10, 0.98));
    border: 2px solid #d40000;
    border-radius: 25px;
    padding: 35px;
    margin: 35px auto;
    box-shadow:
        0 0 20px rgba(255, 0, 0, 0.16),
        inset 0 0 25px rgba(255, 0, 0, 0.04);
}

.home-card h2,
.site-nav-section h2 {
    color: #ff4d4d;
    font-size: 34px;
    margin-top: 0;
}

.home-card p {
    color: #dddddd;
    line-height: 1.8;
    font-size: 18px;
}

.team-preview {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    align-items: center;
    gap: 25px;
    margin: 45px 0;
}

.team-box {
    background:
        radial-gradient(circle at top, rgba(255, 0, 0, 0.18), transparent 45%),
        #111111;
    border: 2px solid #d40000;
    border-radius: 25px;
    padding: 35px;
    min-height: 190px;
    text-align: center;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.2);
}

.team-box h2 {
    color: #ff4d4d;
    font-size: 36px;
    margin-top: 0;
}

.team-box p {
    color: #dddddd;
    font-size: 17px;
    line-height: 1.6;
}

.team-box a {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 22px;
    border-radius: 10px;
    background: #d40000;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.versus {
    font-size: 48px;
    color: #ff4d4d;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 0 20px red;
}

.site-nav-section {
    text-align: center;
    margin-top: 60px;
}

.final-card {
    text-align: center;
}

.home-footer {
    text-align: center;
    padding: 35px 20px;
    background: #080808;
    border-top: 2px solid #d40000;
    color: #999999;
}

/* OLD GENERAL STUFF USED BY OTHER PAGES */

.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at top, rgba(150, 0, 0, 0.4), rgba(5, 5, 5, 1));
    border-bottom: 4px solid #d40000;
}

.logo {
    width: 500px;
    max-width: 90%;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 50px;
    margin-bottom: 50px;
}

.image-buttons {
    display: grid;
    grid-template-columns: repeat(3, 220px);
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}

.image-buttons img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.3s ease;
}

.image-buttons img:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 0 20px red, 0 0 40px red;
}

.main {
    max-width: 1000px;
    margin: auto;
    padding: 50px 20px;
}

.card {
    background: #111111;
    border: 2px solid #d40000;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.15);
}

.card h2 {
    color: #ff4d4d;
    margin-top: 0;
}

.card p {
    line-height: 1.8;
    font-size: 18px;
}

.footer {
    text-align: center;
    color: #999999;
    margin-top: 50px;
}

/* CHARACTERS PAGE */

.character-page {
    max-width: 1300px;
    margin: auto;
    padding: 70px 30px;
    text-align: center;
}

.character-page h1 {
    font-size: 55px;
    margin-bottom: 10px;
}

.character-page p {
    font-size: 20px;
    color: #dddddd;
}

.team-title {
    margin-top: 60px;
    font-size: 42px;
    color: #ff4d4d;
    text-shadow: 0 0 15px red;
}

.character-grid {
    display: grid;
    grid-template-columns: repeat(4, 220px);
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}

.char-card {
    position: relative;
    width: 220px;
    height: 220px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    transition: 0.3s ease;
}

.char-card img {
    position: absolute;
    width: 220px;
    height: 220px;
    object-fit: cover;
    top: 0;
    left: 0;
    border-radius: 20px;
    pointer-events: none;
}

.char-card .still {
    opacity: 1;
    z-index: 1;
}

.char-card .gif {
    opacity: 0;
    z-index: 2;
}

.char-card:hover .still {
    opacity: 0;
}

.char-card:hover .gif {
    opacity: 1;
}

.char-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px red, 0 0 40px red;
}

.back-link {
    margin-top: 50px;
}

/* PROFILE PAGES */

.profile-container {
    max-width: 1200px;
    margin: auto;
    padding: 50px 25px;
}

.back-button {
    display: inline-block;
    margin-bottom: 30px;
    color: white;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid currentColor;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.2s ease;
}

.back-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px currentColor;
}

.profile-hero {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 40px;
}

.profile-image {
    width: 300px;
    border-radius: 25px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

.profile-title h1 {
    font-size: 55px;
    margin: 0;
}

.subtitle {
    font-size: 22px;
    color: #dddddd;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.profile-card {
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid currentColor;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.profile-card h2 {
    margin-top: 0;
}

.profile-card p {
    line-height: 1.7;
}

.profile-card ul {
    line-height: 1.8;
}

.full-card {
    grid-column: span 2;
}

.quote {
    font-size: 28px;
    font-style: italic;
    text-align: center;
}

/* CHARACTER THEMES */

.law-page {
    background: radial-gradient(circle at top left, rgba(255, 220, 40, 0.35), transparent 35%),
    linear-gradient(135deg, #1a1600, #070707, #3b3000);
    color: #f7d84a;
}

.law-page .profile-card {
    border-color: #f7d84a;
}

.law-page .profile-title h1,
.law-page h2 {
    color: #ffe66d;
}

.adam-page {
    background: radial-gradient(circle at top left, rgba(255, 40, 40, 0.35), transparent 35%),
    linear-gradient(135deg, #210000, #050505, #350000);
    color: #ff3b3b;
}

.adam-page .profile-card {
    border-color: #ff3b3b;
}

.adam-page .profile-title h1,
.adam-page h2 {
    color: #ff5555;
}

.ash-page {
    background: radial-gradient(circle at top left, rgba(255, 215, 0, 0.35), transparent 35%),
    linear-gradient(135deg, #0d1b3d, #071225, #b71c1c);
    color: #ffffff;
}

.ash-page .profile-card {
    border-color: #ffd54f;
}

.ash-page .profile-title h1,
.ash-page h2 {
    color: #ffd54f;
}

.david-page {
    background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.25), transparent 35%),
    linear-gradient(135deg, #03121f, #050505, #1f1800);
    color: #ffffff;
}

.david-page .profile-card {
    border-color: #00d2ff;
}

.david-page .profile-title h1,
.david-page h2 {
    color: #00d2ff;
}

.subaru-page {
    background: radial-gradient(circle at top left, rgba(142, 68, 173, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(255, 132, 0, 0.25), transparent 35%),
    linear-gradient(135deg, #17051f, #050505, #291200);
    color: #ffffff;
}

.subaru-page .profile-card {
    border-color: #b66dff;
}

.subaru-page .profile-title h1,
.subaru-page h2 {
    color: #c084fc;
}

.takaba-page {
    background: radial-gradient(circle at top left, rgba(255, 223, 0, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(0, 255, 140, 0.25), transparent 35%),
    linear-gradient(135deg, #1f1500, #050505, #002914);
    color: #ffffff;
}

.takaba-page .profile-card {
    border-color: #ffe44d;
}

.takaba-page .profile-title h1,
.takaba-page h2 {
    color: #ffe44d;
}

.ryu-page {
    background: radial-gradient(circle at top left, rgba(255, 120, 40, 0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(90, 40, 255, 0.25), transparent 35%),
    linear-gradient(135deg, #1f0b00, #050505, #12002e);
    color: #ffffff;
}

.ryu-page .profile-card {
    border-color: #ff8a3d;
}

.ryu-page .profile-title h1,
.ryu-page h2 {
    color: #ff9f55;
}

/* MOBILE FIX */

@media (max-width: 1000px) {
    .character-grid {
        grid-template-columns: repeat(2, 220px);
    }

    .image-buttons {
        grid-template-columns: repeat(2, 220px);
    }

    .team-preview {
        grid-template-columns: 1fr;
    }

    .versus {
        font-size: 36px;
    }

    .status-strip {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .profile-hero {
        flex-direction: column;
        text-align: center;
    }

    .profile-grid {
        grid-template-columns: 1fr;
    }

    .full-card {
        grid-column: span 1;
    }
}

@media (max-width: 550px) {
    .character-grid,
    .image-buttons {
        grid-template-columns: repeat(1, 220px);
    }

    .home-hero h1 {
        font-size: 32px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .character-page h1,
    .profile-title h1 {
        font-size: 38px;
    }
}
.gohan-page {
    background:
        radial-gradient(circle at top left, rgba(160, 80, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 210, 0, 0.25), transparent 35%),
        linear-gradient(135deg, #140020, #050505, #2a2100);
    color: #ffffff;
}

.gohan-page .profile-card {
    border-color: #c084fc;
}

.gohan-page .profile-title h1,
.gohan-page h2 {
    color: #d8b4fe;
}

.gohan-page .profile-image {
    box-shadow:
        0 0 25px rgba(192, 132, 252, 0.6),
        0 0 45px rgba(255, 210, 0, 0.35);
}
@font-face {
    font-family: OnePieceFont;
    src: url("fonts/onepiece.ttf");
}

@font-face {
    font-family: DragonBallFont;
    src: url("fonts/dragonball.ttf");
}

@font-face {
    font-family: JJKFont;
    src: url("fonts/jjk.ttf");
}

@font-face {
    font-family: CyberpunkFont;
    src: url("fonts/cyberpunk.ttf");
}

@font-face {
    font-family: PokemonFont;
    src: url("fonts/pokemon.ttf");
}

@font-face {
    font-family: ReZeroFont;
    src: url("fonts/rezero.ttf");
}

/* LAW - ONE PIECE */
.law-page .profile-title h1,
.law-page .quote {
    font-family: OnePieceFont, Arial, sans-serif;
}

/* GOHAN - DRAGON BALL */
.gohan-page .profile-title h1,
.gohan-page .quote {
    font-family: DragonBallFont, Arial, sans-serif;
}

/* JJK CHARACTERS */
.takaba-page .profile-title h1,
.takaba-page .quote,
.ryu-page .profile-title h1,
.ryu-page .quote {
    font-family: JJKFont, Arial, sans-serif;
}

/* CYBERPUNK CHARACTERS */
.adam-page .profile-title h1,
.adam-page .quote,
.david-page .profile-title h1,
.david-page .quote {
    font-family: CyberpunkFont, Arial, sans-serif;
}

/* ASH - POKEMON */
.ash-page .profile-title h1,
.ash-page .quote {
    font-family: PokemonFont, Arial, sans-serif;
}

/* SUBARU - REZERO */
.subaru-page .profile-title h1,
.subaru-page .quote {
    font-family: ReZeroFont, Arial, sans-serif;
}
/* JOJO CHARACTERS */
.gyro-page .profile-title h1,
.gyro-page .quote,
.jotaro-page .profile-title h1,
.jotaro-page .quote {
    font-family: JoJoFont, Arial, sans-serif;
    
}
@font-face {
    font-family: KonoSubaFont;
    src: url("fonts/konosuba.ttf");
}

@font-face {
    font-family: PersonaFont;
    src: url("fonts/persona.ttf");
}
@font-face {
    font-family: MHAFont;
    src: url("fonts/mha.ttf");
}

@font-face {
    font-family: DemonSlayerFont;
    src: url("fonts/demonslayer.ttf");
}
@font-face {
    font-family: HibikeFont;
    src: url("fonts/hibike.ttf");
}
.gyro-page {
    background:
        radial-gradient(circle at top left, rgba(255, 210, 70, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 180, 120, 0.25), transparent 35%),
        linear-gradient(135deg, #201600, #050505, #002216);
    color: #ffffff;
}

.gyro-page .profile-card {
    border-color: #ffd166;
}

.gyro-page .profile-title h1,
.gyro-page h2 {
    color: #ffd166;
}

.gyro-page .profile-image {
    box-shadow:
        0 0 25px rgba(255, 209, 102, 0.6),
        0 0 45px rgba(0, 180, 120, 0.35);
}
@font-face {
    font-family: JoJoFont;
    src: url("fonts/jojo.ttf");
}
.jotaro-page {
    background:
        radial-gradient(circle at top left, rgba(100, 70, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 210, 70, 0.25), transparent 35%),
        linear-gradient(135deg, #07001f, #050505, #1f1700);
    color: #ffffff;
}

.jotaro-page .profile-card {
    border-color: #9b7bff;
}

.jotaro-page .profile-title h1,
.jotaro-page h2 {
    color: #b6a1ff;
}

.jotaro-page .profile-image {
    box-shadow:
        0 0 25px rgba(155, 123, 255, 0.6),
        0 0 45px rgba(255, 210, 70, 0.35);
}

.kashimo-page {
    background:
        radial-gradient(circle at top left, rgba(0, 225, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #00171f, #050505, #0b0b0b);
    color: #ffffff;
}

.kashimo-page .profile-card {
    border-color: #00e1ff;
}

.kashimo-page .profile-title h1,
.kashimo-page h2 {
    color: #67e8f9;
}

.kashimo-page .profile-image {
    box-shadow:
        0 0 25px rgba(0, 225, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.25);
}

/* FONT UPDATES */
.jotaro-page .profile-title h1,
.jotaro-page .quote,
.gyro-page .profile-title h1,
.gyro-page .quote {
    font-family: JoJoFont, Arial, sans-serif;
}

.kashimo-page .profile-title h1,
.kashimo-page .quote,
.takaba-page .profile-title h1,
.takaba-page .quote,
.ryu-page .profile-title h1,
.ryu-page .quote {
    font-family: JJKFont, Arial, sans-serif;
}
.yuji-page {
    background:
        radial-gradient(circle at top left, rgba(255, 70, 90, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(30, 30, 30, 0.8), transparent 35%),
        linear-gradient(135deg, #230006, #050505, #1a1a1a);
    color: #ffffff;
}

.yuji-page .profile-card {
    border-color: #ff4d5e;
}

.yuji-page .profile-title h1,
.yuji-page h2 {
    color: #ff6b7a;
}

.yuji-page .profile-image {
    box-shadow:
        0 0 25px rgba(255, 77, 94, 0.6),
        0 0 45px rgba(30, 30, 30, 0.45);
}

.gojo-page {
    background:
        radial-gradient(circle at top left, rgba(110, 220, 255, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #001724, #050505, #101020);
    color: #ffffff;
}

.gojo-page .profile-card {
    border-color: #6ee7ff;
}

.gojo-page .profile-title h1,
.gojo-page h2 {
    color: #9befff;
}

.gojo-page .profile-image {
    box-shadow:
        0 0 25px rgba(110, 231, 255, 0.6),
        0 0 45px rgba(255, 255, 255, 0.25);
}

/* JJK FONT UPDATE */
.yuji-page .profile-title h1,
.yuji-page .quote,
.gojo-page .profile-title h1,
.gojo-page .quote,
.kashimo-page .profile-title h1,
.kashimo-page .quote,
.takaba-page .profile-title h1,
.takaba-page .quote,
.ryu-page .profile-title h1,
.ryu-page .quote {
    font-family: JJKFont, Arial, sans-serif;
}
.momo-page {
    background:
        radial-gradient(circle at top left, rgba(255, 70, 160, 0.3), transparent 35%),
        radial-gradient(circle at bottom right, rgba(40, 120, 255, 0.25), transparent 35%),
        linear-gradient(135deg, #210014, #050505, #00152e);
    color: #ffffff;
}

.momo-page .profile-card {
    border-color: #ff6fb3;
}

.momo-page .profile-title h1,
.momo-page h2 {
    color: #ff9acb;
}

.momo-page .profile-image {
    box-shadow:
        0 0 25px rgba(255, 111, 179, 0.6),
        0 0 45px rgba(40, 120, 255, 0.35);
}

.tanjiro-page {
    background:
        radial-gradient(circle at top left, rgba(0, 180, 120, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(120, 40, 40, 0.3), transparent 35%),
        linear-gradient(135deg, #002016, #050505, #250707);
    color: #ffffff;
}

.tanjiro-page .profile-card {
    border-color: #00c983;
}

.tanjiro-page .profile-title h1,
.tanjiro-page h2 {
    color: #5fffc0;
}

.tanjiro-page .profile-image {
    box-shadow:
        0 0 25px rgba(0, 201, 131, 0.6),
        0 0 45px rgba(120, 40, 40, 0.35);
}

/* FONT UPDATES */
.momo-page .profile-title h1,
.momo-page .quote {
    font-family: MHAFont, Arial, sans-serif;
}

.tanjiro-page .profile-title h1,
.tanjiro-page .quote {
    font-family: DemonSlayerFont, Arial, sans-serif;
}
.kazuma-page {
    background:
        radial-gradient(circle at top left, rgba(0, 180, 255, 0.28), transparent 35%),
        radial-gradient(circle at bottom right, rgba(0, 255, 120, 0.22), transparent 35%),
        linear-gradient(135deg, #001523, #050505, #002414);
    color: #ffffff;
}

.kazuma-page .profile-card {
    border-color: #38bdf8;
}

.kazuma-page .profile-title h1,
.kazuma-page h2 {
    color: #7dd3fc;
}

.kazuma-page .profile-image {
    box-shadow:
        0 0 25px rgba(56, 189, 248, 0.55),
        0 0 45px rgba(0, 255, 120, 0.28);
}

.joker-page {
    background:
        radial-gradient(circle at top left, rgba(255, 0, 40, 0.38), transparent 35%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #210006, #050505, #111111);
    color: #ffffff;
}

.joker-page .profile-card {
    border-color: #ff1f3d;
}

.joker-page .profile-title h1,
.joker-page h2 {
    color: #ff4d63;
}

.joker-page .profile-image {
    box-shadow:
        0 0 25px rgba(255, 31, 61, 0.65),
        0 0 45px rgba(255, 255, 255, 0.2);
}

/* FONT UPDATES */
.kazuma-page .profile-title h1,
.kazuma-page .quote {
    font-family: KonoSubaFont, Arial, sans-serif;
}

.joker-page .profile-title h1,
.joker-page .quote {
    font-family: PersonaFont, Arial, sans-serif;
}
.mizore-page {
    background:
        radial-gradient(circle at top left, rgba(120, 180, 255, 0.28), transparent 35%),
        radial-gradient(circle at bottom right, rgba(220, 220, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #001a2b, #050505, #1b1b2e);
    color: #ffffff;
}

.mizore-page .profile-card {
    border-color: #9dc9ff;
}

.mizore-page .profile-title h1,
.mizore-page h2 {
    color: #bcdcff;
}

.mizore-page .profile-image {
    box-shadow:
        0 0 25px rgba(157, 201, 255, 0.55),
        0 0 45px rgba(220, 220, 255, 0.25);
}

/* HIBIKE FONT */
.mizore-page .profile-title h1,
.mizore-page .quote {
    font-family: HibikeFont, Arial, sans-serif;
}
.lore-page h1 {
    font-size: 55px;
    text-align: center;
    color: #ff4d4d;
    text-shadow: 0 0 20px red;
}

.lore-intro {
    text-align: center;
    color: #dddddd;
    font-size: 20px;
}

.secret-box {
    text-align: center;
}

.secret-box input {
    padding: 14px;
    width: 260px;
    border-radius: 10px;
    border: 2px solid #d40000;
    background: #090909;
    color: white;
    font-size: 18px;
    text-align: center;
}

.secret-box button {
    padding: 14px 22px;
    margin-left: 10px;
    border-radius: 10px;
    border: 2px solid #ff4d4d;
    background: #d40000;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.secret-box button:hover {
    box-shadow: 0 0 20px red;
}

#codeMessage {
    color: #ff4d4d;
    font-weight: bold;
}
#file-loader {
    --loader-color: #ff0000;
    display: none;
    position: fixed;
    z-index: 9999;
    inset: 0;
    background:
        radial-gradient(circle at center, color-mix(in srgb, var(--loader-color) 30%, transparent), transparent 35%),
        rgba(0, 0, 0, 0.96);
    align-items: center;
    justify-content: center;
}

#file-loader.active {
    display: flex;
}

.loader-box {
    width: 560px;
    max-width: 85%;
    background: #080808;
    border: 2px solid var(--loader-color);
    border-radius: 18px;
    padding: 35px;
    text-align: center;
    box-shadow:
        0 0 25px var(--loader-color),
        inset 0 0 25px color-mix(in srgb, var(--loader-color) 18%, transparent);
}

.loader-box h2 {
    color: var(--loader-color);
    letter-spacing: 3px;
}

#loader-id {
    font-size: 19px;
    color: white;
    font-weight: bold;
}

#loader-status {
    color: #dddddd;
    font-size: 14px;
    letter-spacing: 2px;
}

.loading-bar {
    width: 100%;
    height: 22px;
    background: #1a1a1a;
    border: 2px solid var(--loader-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 25px 0;
}

.loading-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--loader-color), white, var(--loader-color));
    animation: loadFile 2.8s forwards;
}

.loader-warning {
    color: var(--loader-color);
    font-size: 13px;
    letter-spacing: 2px;
}

@keyframes loadFile {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}
.locations-page {
    max-width: 1400px;
    margin: auto;
    padding: 70px 30px;
    text-align: center;
}

.locations-page h1 {
    font-size: 55px;
    color: #ff4d4d;
    text-shadow: 0 0 20px red;
}

.locations-page > p {
    font-size: 20px;
    color: #dddddd;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.location-card {
    background: #101010;
    border: 2px solid #d40000;
    border-radius: 22px;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 0 18px rgba(255, 0, 0, 0.18);
    transition: 0.25s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.55);
}

.location-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.location-card h2 {
    color: #ff4d4d;
    margin: 18px 18px 8px;
}

.location-card p {
    color: #dddddd;
    margin: 0 18px 22px;
    line-height: 1.6;
}

.location-card.restricted {
    border-color: #ffe44d;
}

.location-card.restricted h2 {
    color: #ffe44d;
}

.location-card.danger {
    border-color: #ff0000;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.45);
}

.location-card.danger h2 {
    color: #ff0000;
}

@media (max-width: 1000px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}
.vote-page {
    max-width: 1300px;
    margin: auto;
    padding: 70px 30px;
    text-align: center;
}

.vote-page h1 {
    font-size: 55px;
    color: #ff4d4d;
    text-shadow: 0 0 20px red;
}

.vote-page p {
    font-size: 20px;
    color: #dddddd;
}

.vote-grid {
    display: grid;
    grid-template-columns: repeat(4, 220px);
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
}

.vote-card {
    background: #101010;
    border: 2px solid #d40000;
    border-radius: 22px;
    padding: 18px;
    cursor: pointer;
    transition: 0.25s ease;
}

.vote-card img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.vote-card span {
    display: block;
    margin-top: 12px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.vote-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px red, 0 0 45px rgba(255, 0, 0, 0.5);
}

#voteMessage {
    margin-top: 45px;
    color: #ff4d4d;
}

@media (max-width: 1000px) {
    .vote-grid {
        grid-template-columns: repeat(2, 220px);
    }
}

@media (max-width: 550px) {
    .vote-grid {
        grid-template-columns: repeat(1, 220px);
    }
}
.vote-ranking {
    max-width: 650px;
    margin: 35px auto;
    background: #101010;
    border: 2px solid #d40000;
    border-radius: 22px;
    padding: 25px;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.25);
}

.vote-ranking h2 {
    color: #ff4d4d;
    margin-top: 0;
}

.ranking-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.ranking-row span {
    color: #ff4d4d;
    font-weight: bold;
}

.vote-image-wrap {
    position: relative;
}

.vote-count {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #d40000;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 0 15px red;
}
.classified-card {
    border-color: #ff0000;
    box-shadow:
        0 0 20px rgba(255, 0, 0, 0.35),
        inset 0 0 25px rgba(255, 0, 0, 0.08);
}

.classified-card h2 {
    color: #ff4d4d;
}
.musashi-page {
    background:
        radial-gradient(circle at top left, rgba(180, 30, 30, 0.35), transparent 35%),
        radial-gradient(circle at bottom right, rgba(220, 220, 220, 0.16), transparent 35%),
        linear-gradient(135deg, #1a0505, #050505, #1c1c1c);
    color: #ffffff;
}

.musashi-page .profile-card {
    border-color: #d94a4a;
}

.musashi-page .profile-title h1,
.musashi-page h2 {
    color: #ff6b6b;
}

.musashi-page .profile-image {
    box-shadow:
        0 0 25px rgba(217, 74, 74, 0.65),
        0 0 45px rgba(255, 255, 255, 0.18);
}

.musashi-page .profile-title h1,
.musashi-page .quote {
    font-family: BakiFont, Arial, sans-serif;
}
@font-face {
    font-family: BakiFont;
    src: url("fonts/baki.ttf");
}
.frieza-page {
    background:
        radial-gradient(circle at top left, rgba(180, 80, 255, 0.25), transparent 40%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 40%),
        linear-gradient(135deg, #14091f, #080808, #1a0b2e);

    color: white;
}

.frieza-page .profile-card {
    border-color: #b46cff;
}

.frieza-page h1,
.frieza-page h2 {
    color: #d6a5ff;
}

.frieza-page .profile-image {
    box-shadow:
        0 0 35px rgba(180,108,255,.7),
        0 0 60px rgba(255,255,255,.15);
}

.frieza-page .classified-card {
    border-color: #ff66ff;
    box-shadow:
        0 0 25px rgba(255,102,255,.35),
        inset 0 0 20px rgba(255,102,255,.08);
}
.warp-glitch {
    font-family: monospace;
    color: #ff4d4d;
    position: relative;
    display: inline-block;
    font-weight: bold;
    text-shadow:
        0 0 6px #ff0000,
        0 0 14px #ff0000,
        0 0 22px #00eaff;
    animation:
        warpFlicker 2.4s infinite,
        warpShake 0.18s infinite;
}

.warp-glitch::before,
.warp-glitch::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.85;
    pointer-events: none;
}

.warp-glitch::before {
    color: #00eaff;
    transform: translate(-3px, 0);
    animation:
        warpShift1 0.8s infinite,
        warpSlice 1.2s infinite;
}

.warp-glitch::after {
    color: #ff00ff;
    transform: translate(3px, 0);
    animation:
        warpShift2 0.65s infinite,
        warpSlice 0.9s infinite reverse;
}

@keyframes warpShake {
    0% { transform: translate(0, 0) skewX(0deg); }
    10% { transform: translate(-1px, 1px) skewX(-4deg); }
    20% { transform: translate(2px, -1px) skewX(5deg); }
    30% { transform: translate(-2px, 0px) skewX(-7deg); }
    40% { transform: translate(1px, 2px) skewX(3deg); }
    50% { transform: translate(0px, -2px) skewX(0deg); }
    60% { transform: translate(2px, 1px) skewX(6deg); }
    70% { transform: translate(-1px, -1px) skewX(-3deg); }
    80% { transform: translate(1px, 0px) skewX(5deg); }
    90% { transform: translate(-2px, 1px) skewX(-5deg); }
    100% { transform: translate(0, 0) skewX(0deg); }
}

@keyframes warpFlicker {
    0%, 82%, 100% {
        opacity: 1;
        filter: none;
    }

    84% {
        opacity: 0.35;
        filter: blur(1.5px) contrast(220%);
    }

    86% {
        opacity: 1;
        filter: hue-rotate(90deg);
    }

    88% {
        opacity: 0.65;
        filter: brightness(180%) saturate(220%);
    }

    90% {
        opacity: 1;
        filter: contrast(250%);
    }

    93% {
        opacity: 0.45;
        filter: blur(2px);
    }

    96% {
        opacity: 1;
        filter: none;
    }
}

@keyframes warpShift1 {
    0% { transform: translate(-2px, 0); }
    20% { transform: translate(-6px, -1px); }
    40% { transform: translate(3px, 1px); }
    60% { transform: translate(-4px, 2px); }
    80% { transform: translate(5px, -2px); }
    100% { transform: translate(-2px, 0); }
}

@keyframes warpShift2 {
    0% { transform: translate(2px, 0); }
    20% { transform: translate(6px, 1px); }
    40% { transform: translate(-3px, -1px); }
    60% { transform: translate(4px, -2px); }
    80% { transform: translate(-5px, 2px); }
    100% { transform: translate(2px, 0); }
}

@keyframes warpSlice {
    0% {
        clip-path: inset(0 0 85% 0);
    }

    20% {
        clip-path: inset(15% 0 55% 0);
    }

    40% {
        clip-path: inset(55% 0 20% 0);
    }

    60% {
        clip-path: inset(35% 0 35% 0);
    }

    80% {
        clip-path: inset(70% 0 5% 0);
    }

    100% {
        clip-path: inset(0 0 85% 0);
    }
}
.classified-page {
    background: #0b0b0b;
    color: white;
}

.classified-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 40px;
}

.classified-container h1 {
    color: #ff4444;
    border-bottom: 2px solid #ff4444;
    padding-bottom: 10px;
}

.classified-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.file-info {
    background: #151515;
    padding: 20px;
    border: 1px solid #333;
    border-radius: 12px;
}

.image-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.image-column img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid #444;
}
.character-manga{
    width:100%;
    max-width:500px;
    border:2px solid #ff4444;
    border-radius:12px;
    display:block;
    margin:auto;
}

.image-column{
    display:flex;
    justify-content:center;
    align-items:flex-start;
}