* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    --bg: #06080f;

    --bg2: #0d111b;

    --card: rgba(20, 23, 34, 0.72);

    --line: rgba(255, 255, 255, 0.08);

    --orange: #ff8a00;

    --orange2: #ff5e00;

    --text: #ffffff;

    --gray: #aeb7c6;

    --shadow:
        0 30px 80px rgba(0, 0, 0, 0.45);

    --orange-shadow:
        0 0 50px rgba(255, 130, 0, 0.45);
}

html {

    scroll-behavior: smooth;
}

body {

    font-family: "Montserrat", sans-serif;

    color: var(--text);

    overflow-x: hidden;

    background:

        radial-gradient(
            circle at 10% 10%,
            rgba(255, 140, 0, 0.2),
            transparent 30%
        ),

        radial-gradient(
            circle at 90% 25%,
            rgba(255, 80, 0, 0.16),
            transparent 35%
        ),

        linear-gradient(
            180deg,
            var(--bg),
            var(--bg2)
        );

    min-height: 100vh;
}

.background-glow {

    position: fixed;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    filter: blur(140px);

    z-index: -1;
}

.glow-left {

    left: -200px;

    top: -150px;

    background: rgba(255, 120, 0, 0.18);
}

.glow-right {

    right: -200px;

    bottom: -100px;

    background: rgba(255, 80, 0, 0.15);
}

.header {

    position: fixed;

    top: 18px;

    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 40px);

    max-width: 1450px;

    height: 88px;

    padding: 0 28px;

    border-radius: 28px;

    backdrop-filter: blur(28px);

    background: rgba(12, 15, 23, 0.75);

    border: 1px solid var(--line);

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    box-shadow: var(--shadow);
}

.logo {

    display: flex;

    align-items: center;

    gap: 14px;
}

.logo-icon {

    width: 58px;

    height: 58px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 28px;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange2)
    );

    box-shadow: var(--orange-shadow);
}

.logo-text h1 {

    font-size: 22px;

    font-weight: 900;
}

.logo-text span {

    color: var(--gray);

    font-size: 13px;
}

.menu {

    display: flex;

    gap: 12px;

    padding: 8px;

    border-radius: 999px;

    background: rgba(255,255,255,0.03);

    border: 1px solid var(--line);
}

.menu a {

    text-decoration: none;

    color: var(--gray);

    padding: 14px 22px;

    border-radius: 999px;

    transition: .35s;
}

.menu a:hover {

    color: white;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange2)
    );

    box-shadow: var(--orange-shadow);
}

.button-main,
.button-orange {

    border: none;

    cursor: pointer;

    color: white;

    padding: 16px 28px;

    border-radius: 999px;

    font-weight: 700;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange2)
    );

    transition: .35s;
}

.button-glass {

    border: 1px solid var(--line);

    cursor: pointer;

    color: white;

    padding: 16px 28px;

    border-radius: 999px;

    background: rgba(255,255,255,0.05);

    transition: .35s;
}

.button-main:hover,
.button-orange:hover,
.button-glass:hover {

    transform:

        translateY(-5px)
        scale(1.03);
}

.hero {

    min-height: 100vh;

    padding: 170px 90px 100px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 80px;
}

.hero-badge {

    display: inline-block;

    padding: 10px 18px;

    border-radius: 999px;

    background: rgba(255,255,255,0.05);

    border: 1px solid var(--line);

    margin-bottom: 28px;

    color: var(--gray);
}

.hero h2 {

    font-size: 92px;

    line-height: .95;

    max-width: 760px;

    font-weight: 900;
}

.hero p {

    margin-top: 30px;

    max-width: 650px;

    color: var(--gray);

    line-height: 1.9;

    font-size: 18px;
}

.hero-buttons {

    display: flex;

    gap: 20px;

    margin-top: 40px;
}

.hero-right {

    position: relative;

    width: 520px;

    height: 520px;
}

.chakra-circle {

    position: absolute;

    border-radius: 50%;

    border: 2px solid rgba(255,255,255,0.08);

    animation: spin linear infinite;
}

.big {

    inset: 0;

    animation-duration: 18s;
}

.middle {

    inset: 80px;

    animation-duration: 12s;
}

.small {

    inset: 160px;

    animation-duration: 8s;
}

.small::after {

    content: "";

    position: absolute;

    inset: 40px;

    border-radius: 50%;

    background: radial-gradient(
        circle,
        #ffffff,
        var(--orange),
        transparent
    );

    filter: blur(15px);
}

.section {

    padding: 120px 90px;
}

.section-header {

    margin-bottom: 50px;
}

.section-header h3 {

    font-size: 48px;

    margin-bottom: 12px;
}

.section-header p {

    color: var(--gray);
}

.news-grid,
.characters-grid,
.stats-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 24px;
}

.news-grid {

    grid-template-columns: repeat(3, 1fr);
}

.card,
.character-card,
.stat,
.episode {

    padding: 34px;

    border-radius: 28px;

    background: var(--card);

    border: 1px solid var(--line);

    backdrop-filter: blur(24px);

    transition: .35s;

    box-shadow: var(--shadow);
}

.card:hover,
.character-card:hover,
.stat:hover,
.episode:hover {

    transform:

        translateY(-10px);

    border-color:

        rgba(255, 140, 0, 0.35);
}

.number {

    font-size: 44px;

    font-weight: 900;

    color: var(--orange);

    margin-bottom: 18px;
}

.card h4,
.character-card h4 {

    margin-bottom: 12px;
}

.card p,
.character-card span {

    color: var(--gray);

    line-height: 1.7;
}

.avatar {

    width: 130px;

    height: 130px;

    border-radius: 50%;

    margin: 0 auto 24px;

    background: linear-gradient(
        135deg,
        var(--orange),
        var(--orange2)
    );

    box-shadow: var(--orange-shadow);

    animation: pulse 5s infinite;
}

.character-card {

    text-align: center;
}

.episodes-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}

.episode {

    text-align: center;

    font-weight: 700;
}

.roleplay {

    margin: 90px;

    padding: 60px;

    border-radius: 32px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    background:

        linear-gradient(
            135deg,
            rgba(255, 140, 0, 0.16),
            rgba(255,255,255,0.04)
        );

    border: 1px solid var(--line);
}

.roleplay p {

    color: var(--gray);

    margin-top: 16px;
}

.stat {

    text-align: center;
}

.stat h4 {

    font-size: 42px;

    color: var(--orange);

    margin-bottom: 12px;
}

.stat span {

    color: var(--gray);
}

.footer {

    margin-top: 120px;

    padding: 100px 40px;

    text-align: center;

    border-top: 1px solid var(--line);

    background:

        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,0.03)
        );
}

.footer-logo {

    font-size: 52px;

    font-weight: 900;

    margin-bottom: 24px;
}

.footer-links {

    display: flex;

    justify-content: center;

    gap: 20px;

    margin-bottom: 28px;
}

.footer-links a {

    text-decoration: none;

    color: var(--gray);
}

.footer p {

    color: var(--gray);
}

@keyframes spin {

    from {

        transform: rotate(0deg);
    }

    to {

        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.08);
    }

    100% {

        transform: scale(1);
    }
}

@media (max-width: 1100px) {

    .menu {

        display: none;
    }

    .hero {

        flex-direction: column;

        padding: 150px 24px 80px;
    }

    .hero h2 {

        font-size: 54px;
    }

    .hero-right {

        width: 360px;

        height: 360px;
    }

    .news-grid,
    .characters-grid,
    .episodes-grid,
    .stats-grid {

        grid-template-columns: 1fr;
    }

    .roleplay {

        flex-direction: column;

        gap: 24px;

        margin: 24px;
    }

    .section {

        padding: 80px 24px;
    }
}