:root {
    --color-dark-blue: #000000;
    --color-blue: #FF4081;
    --color-blue2: #a32a53;
    --color-light-beige: #F8BBD0;
    --color-light-gray: #FFFFFF;
    --color-light-purple: #FFFFFF;
}


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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0 auto;
    font-family: "Bahnschrift", serif;
    font-optical-sizing: auto;
    background-color: #000000;
    color: var(--color-light-gray);
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 600;
}

p {
    margin: 0;
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}


.content-container {
    max-width: 1220px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .content-container {
        width: 100%;
        padding: 0 20px;
    }
}



.Header {
    width: 100%;
    padding: 20px 0;
    background: linear-gradient(to right, var(--color-dark-blue), var(--color-blue));
    color: white;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.HeaderContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--color-light-purple);
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav-list li a {
    color: white;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-list li a:hover {
    color: var(--color-light-beige);
}

.auth-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
    font-size: 18px;
    cursor: pointer;
}

.btn-signup {
    background-color: var(--color-light-purple);
    color: var(--color-dark-blue);
}

.btn-signup:hover {
    background-color: var(--color-light-beige);
}

.btn-login {
    background-color: transparent;
    border: 1px solid white;
    color: white;
}

.btn-login:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}


.burger-menu.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.open span:nth-child(2) {
    opacity: 0;
}

.burger-menu.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



@media (max-width: 768px) {
    .HeaderContent {
        flex-direction: row;
        justify-content: space-between;
    }

    .burger-menu {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--color-dark-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 20px;
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .auth-buttons .btn {
        width: 100%;
        text-align: left;
    }
}



.lap1Bl {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, var(--color-blue2) 60%);
    position: relative;
    overflow: hidden;
}

.lap1BlContent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    animation: fadeInHero 1.2s ease-out;
}

.lap1BlTextBlock {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    color: #EDEAF9;
}

.lap1BlTitle {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-light-purple, #edeaf9);
    text-shadow: 0 0 8px rgba(237, 234, 249, 0.4);
}

.lap1BlSubtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-blue, #2975A7);
    text-shadow: 0 0 5px rgba(41, 117, 167, 0.4);
}

.lap1BlDescription {
    font-size: 18px;
    line-height: 1.7;
    color: #DAE0E4;
    max-width: 650px;
}

.lap1BlImageBlock {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: popIn 1.4s ease;
}

.lap1BlImage {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.lap1BlImage:hover {
    transform: scale(1.04);
}


@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media (max-width: 1024px) {
    .lap1BlContent {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .lap1BlTitle {
        font-size: 42px;
    }

    .lap1BlSubtitle {
        font-size: 22px;
    }

    .lap1BlDescription {
        font-size: 16px;
    }
}




@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}





@media (max-width: 768px) {
    .lap1Bl {
        padding: 80px 0 60px 0;
    }

    .lap1BlContent {
        flex-direction: column;
        gap: 30px;
    }

    .hero-text {
        width: 100%;
        text-align: center;
        gap: 16px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h2 {
        font-size: 20px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .hero-image {
        width: 100%;
    }
}


.cheoutBlock {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #000000 0%, var(--color-blue2) 60%);
    color: var(--color-light-gray);
}

.cheoutBlockContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.cheoutBlockTextBlock {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cheoutBlockTitle {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-light-purple);
    text-shadow: 0 0 8px rgba(237, 234, 249, 0.3);
}

.cheoutBlockSubtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-blue);
}

.cheoutBlockDescription {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-light-gray);
}

.cheoutBlockVisual {
    width: 40%;
    display: flex;
    justify-content: center;
}

.cheoutBlockImage {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cheoutBlockImage:hover {
    transform: scale(1.03);
    box-shadow: 0px 0px 40px rgba(41, 117, 167, 0.7);
}




@media (max-width: 768px) {
    .cheoutBlock {
        padding: 70px 0;
    }

    .cheoutBlockContent {
        flex-direction: column;
        gap: 40px;
    }

    .cheoutBlockTextBlock {
        width: 100%;
        text-align: center;
    }

    .cheoutBlockTitle {
        font-size: 40px;
    }

    .cheoutBlockSubtitle {
        font-size: 20px;
    }

    .cheoutBlockDescription {
        font-size: 16px;
    }

    .cheoutBlockVisual {
        width: 100%;
    }
}



.sixFive {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-light-purple), var(--color-light-gray));
    color: #000000;
}

.sixFiveContent {
    display: flex;
    flex-direction: column;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.sixFiveTextBlock {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.sixFiveTitle {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.sixFiveSubtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-blue);
}

.sixFiveDescription {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.sixFiveSteps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.GameStep {
    flex: 1 1 calc(25% - 30px);
    background-color: white;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.GameStep:hover {
    transform: translateY(-10px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
}

.GameStepIcon img {
    width: 100px;
    height: 100px;
    border-radius: 16px;
}

.GameStepTitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark-blue);
}

.GameStepText {
    font-size: 16px;
    color: #444444;
}





@media (max-width: 768px) {
    .sixFiveContent {
        gap: 40px;
    }

    .sixFiveTitle {
        font-size: 40px;
    }

    .sixFiveSubtitle {
        font-size: 20px;
    }

    .sixFiveDescription {
        font-size: 16px;
    }

    .sixFiveSteps {
        flex-direction: column;
        gap: 20px;
    }

    .GameStep {
        flex: 1 1 100%;
    }
}


.libertyCity {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, #EDEAF9, #DAE0E4);
    color: #000000;
}

.libertyCityContent {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.libertyCityTextBlock {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.libertyCityTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.libertyCitySubtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-blue);
}

.libertyCityDescription {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.libertyCityMedia {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ChatBubble {
    background-color: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ChatBubble:hover {
    transform: translateY(-6px);
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.15);
}

.ChatAvatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.ChatMessage {
    font-size: 16px;
    font-weight: 500;
    color: #222222;
}

.topRecordCard {
    background-color: #ffffff;
    border-left: 6px solid var(--color-blue);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

.topRecordTitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-dark-blue);
    margin-bottom: 12px;
}

.topRecordList {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    color: #333333;
}

.topRecordList li {
    margin-bottom: 8px;
}




@media (max-width: 768px) {
    .libertyCityContent {
        flex-direction: column;
        gap: 40px;
    }

    .libertyCityTextBlock,
    .libertyCityMedia {
        width: 100%;
        text-align: center;
    }

    .libertyCityTitle {
        font-size: 36px;
    }

    .libertyCitySubtitle {
        font-size: 20px;
    }

    .libertyCityDescription {
        font-size: 16px;
    }

    .ChatBubble {
        justify-content: center;
    }
}



.primeVid {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(to bottom, #ffffff, #DAE0E4);
    color: #000000;
}

.primeVidContent {
    display: flex;
    flex-direction: column;
    gap: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.primeVidTextBlock {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.primeVidTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.primeVidSubtitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-blue);
}

.primeVidDescription {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
}

.primeVidGrid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.FreeCard,
.ProCard {
    width: 300px;
    background-color: white;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.FreeCard:hover,
.ProCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.ModeLabel {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-dark-blue);
}

.PriceTag {
    font-size: 16px;
    color: var(--color-blue);
    font-weight: 500;
    margin-left: 8px;
}

.FeatureList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
    color: #444444;
}

.FeatureList li span {
    margin-right: 8px;
    font-weight: bold;
}

.primeVidNote {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #666666;
    text-align: center;
}




@media (max-width: 768px) {
    .primeVidTitle {
        font-size: 36px;
    }

    .primeVidSubtitle {
        font-size: 20px;
    }

    .primeVidDescription {
        font-size: 16px;
    }

    .FreeCard,
    .ProCard {
        width: 100%;
    }
}



.liveTra {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(to bottom, #EDEAF9, #ffffff);
    text-align: center;
}

.liveTraContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

.liveTraTitle {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.liveTraSubtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-blue);
}

.liveTraDescription {
    font-size: 18px;
    line-height: 1.7;
    color: #333333;
}

.liveTraButton {
    margin-top: 20px;
    background-color: var(--color-blue);
    color: #ffffff;
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-weight: 600;
    box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.1);
}

.liveTraButton:hover {
    background-color: var(--color-dark-blue);
    transform: translateY(-2px);
}




@media (max-width: 768px) {
    .liveTraTitle {
        font-size: 40px;
    }

    .liveTraSubtitle {
        font-size: 20px;
    }

    .liveTraDescription {
        font-size: 16px;
    }

    .liveTraButton {
        width: 100%;
        max-width: 280px;
    }
}


.SiteFooter {
    width: 100%;
    padding: 80px 0;
    background-color: #000000;
    color: var(--color-light-gray);
    font-size: 18px;
}

.FooterContent {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.FooterColumn {
    flex: 1 1 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FooterLogo {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-light-purple);
}

.FooterText {
    line-height: 1.6;
    color: var(--color-light-gray);
}

.FooterHeading {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-light-purple);
    margin-bottom: 8px;
}

.FooterList {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.FooterList li a {
    color: var(--color-light-gray);
    transition: color 0.3s ease;
}

.FooterList li a:hover,
.FooterLink:hover {
    color: var(--color-blue);
}

.FooterLink {
    color: var(--color-light-gray);
    text-decoration: underline;
    transition: color 0.3s ease;
}




@media (max-width: 768px) {
    .FooterContent {
        flex-direction: column;
        gap: 40px;
    }

    .FooterColumn {
        width: 100%;
    }
}



.StepSection {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.StepSection img {
    max-width: 100%;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.StepSection img:hover {
    transform: scale(1.03);
}


.BuildTeam {
    background: linear-gradient(to right, #003664, #2975A7);
    color: #fff;
}

.BuildTeamContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.BuildTeamTextBlock {
    width: 50%;
}

.BuildTeamTitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.BuildTeamText {
    font-size: 18px;
    line-height: 1.7;
}

.BuildTeamVisual {
    width: 50%;
}


.CompeteScore {
    background: radial-gradient(circle, #000000, #003664);
    color: #fff;
}

.CompeteScoreContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.CompeteScoreVisual {
    width: 50%;
}

.CompeteScoreTextBlock {
    width: 50%;
}

.CompeteScoreTitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.CompeteScoreText {
    font-size: 18px;
    line-height: 1.7;
}


.ClimbRanks {
    background: linear-gradient(to bottom, #DAE0E4, #EDEAF9);
    color: #000;
}

.ClimbRanksContent {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.ClimbRanksTextBlock {
    width: 50%;
}

.ClimbRanksTitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ClimbRanksText {
    font-size: 18px;
    line-height: 1.7;
}

.ClimbRanksVisual {
    width: 50%;
}


.JoinFinal {
    background-color: #000;
    display: flex;
    justify-content: center;
}

.JoinFinalContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.JoinFinalButton {
    background-color: #fff;
    color: #000;
    padding: 20px 48px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 40px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.JoinFinalButton:hover {
    background-color: var(--color-light-purple);
    color: var(--color-dark-blue);
}


@media (max-width: 768px) {
    .BuildTeamContent,
    .CompeteScoreContent,
    .ClimbRanksContent {
        flex-direction: column;
        text-align: center;
    }

    .BuildTeamTextBlock,
    .BuildTeamVisual,
    .CompeteScoreVisual,
    .CompeteScoreTextBlock,
    .ClimbRanksTextBlock,
    .ClimbRanksVisual {
        width: 100%;
    }

    .BuildTeamTitle,
    .CompeteScoreTitle,
    .ClimbRanksTitle {
        font-size: 32px;
    }

    .JoinFinalButton {
        font-size: 18px;
        padding: 16px 32px;
    }
}



.topRecordTable {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #DAE0E4);
    color: #000;
}

.topRecordFilters {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.LeagueFilter {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 8px;
    border: none;
    background-color: var(--color-light-gray);
    color: #000;
}


.topRecordHeaderRow {
    display: grid;
    grid-template-columns: 80px 1fr 140px 100px 100px;
    padding: 16px 0;
    font-weight: 600;
    color: var(--color-dark-blue);
    border-bottom: 2px solid #ccc;
}


.topRecordPlayerRow {
    display: grid;
    grid-template-columns: 80px 1fr 140px 100px 100px;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    transition: background 0.3s ease;
}

.topRecordPlayerRow:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.ColRank {
    font-size: 16px;
    font-weight: 600;
}

.ColPlayer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.Avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.PlayerName {
    font-weight: 600;
}

.PlayerStatus {
    font-size: 12px;
    padding: 4px 8px;
    background-color: var(--color-blue);
    color: white;
    border-radius: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.PlayerStatus.Hot {
    background-color: #e14e4e;
}

.PlayerStatus.Crown {
    background-color: #f7d046;
    color: #000;
}

.ColPoints,
.ColChange,
.ColTier {
    font-size: 16px;
    text-align: right;
}

.ColChange.Up {
    color: green;
}

.ColChange.Down {
    color: red;
}





@media (max-width: 1024px) {
    .topRecordHeaderRow,
    .topRecordPlayerRow {
        grid-template-columns: 60px 1fr 100px 80px 80px;
    }
}

@media (max-width: 768px) {
    .topRecordHeaderRow,
    .topRecordPlayerRow {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 8px;
        padding: 16px;
    }

    .ColPlayer,
    .ColPoints,
    .ColChange,
    .ColTier,
    .ColRank {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .ColPoints,
    .ColChange,
    .ColTier {
        text-align: left;
    }

    .Avatar {
        width: 36px;
        height: 36px;
    }
}




.topRecordIntro {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(90deg, #000000, var(--color-blue));
}

.topRecordIntroContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    color: var(--color-light-gray);
}

.topRecordIntroIcon {
    font-size: 64px;
}

.topRecordIntroTitle {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-light-purple);
}

.topRecordIntroText,
.topRecordUserRank {
    font-size: 18px;
    line-height: 1.6;
}

.topRecordUserRankValue {
    font-weight: bold;
    color: var(--color-blue);
}

.topRecordStatsButton {
    padding: 12px 28px;
    background: var(--color-blue);
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.topRecordStatsButton:hover {
    background: var(--color-light-purple);
    color: var(--color-dark-blue);
}




.topRecordTable {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(to bottom, #ffffff, #DAE0E4);
}

.topRecordTableContent {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.topRecordFilterBlock {
    display: flex;
    justify-content: flex-end;
}

.LeagueFilterLabel {
    margin-right: 8px;
    font-weight: 600;
}

.LeagueFilterSelect {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 8px;
    background: var(--color-light-gray);
    border: none;
}

.topRecordHeaderRow,
.topRecordPlayerRow {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #ccc;
}

.topRecordHeaderRow {
    font-weight: 600;
    color: var(--color-dark-blue);
}

.topRecordCol {
    flex: 1;
    min-width: 100px;
    display: flex;
    align-items: center;
}

.PlayerCol {
    gap: 10px;
}

.PlayerAvatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.PlayerName {
    font-weight: 600;
}

.PlayerStatus {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    color: white;
}

.Crown {
    background: gold;
    color: black;
}

.Hot {
    background: red;
}

.Bolt {
    background: var(--color-blue);
}

.ChangeCol.Up {
    color: green;
}

.ChangeCol.Down {
    color: red;
}



@media (max-width: 768px) {
    .topRecordIntroTitle {
        font-size: 36px;
    }

    .topRecordHeaderRow,
    .topRecordPlayerRow {
        flex-direction: column;
        align-items: flex-start;
    }

    .topRecordCol {
        width: 100%;
    }
}



.AboutMission {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(to bottom, #EDEAF9, #DAE0E4);
}

.AboutMissionContent {
    flex-direction: column;
    gap: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.AboutMissionLogo {
    width: 100px;
    height: auto;
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.AboutMissionLogo:hover {
    transform: scale(1.05);
}

.AboutMissionTitle {
    font-size: 48px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.AboutMissionText {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    line-height: 1.7;
}



.AboutBeliefs {
    width: 100%;
    padding: 100px 0 50px 0;
    background: #ffffff;
}

.AboutBeliefsContent {
    flex-direction: column;
    gap: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.AboutBeliefsTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.BeliefCards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.BeliefCard {
    background: #f9f9f9;
    border-radius: 16px;
    padding: 30px;
    flex: 1 1 300px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.BeliefCard:hover {
    transform: translateY(-6px);
}

.BeliefIcon {
    width: auto;
    height: 70px;
    margin-bottom: 20px;
}

.BeliefCardTitle {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-blue);
}

.BeliefCardText {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}



.AboutVision {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(90deg, #000000, var(--color-blue));
    color: var(--color-light-gray);
}

.AboutVisionContent {
    flex-direction: column;
    gap: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.AboutVisionTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-light-purple);
}

.AboutVisionText {
    font-size: 18px;
    line-height: 1.7;
}



@media (max-width: 768px) {
    .AboutMissionTitle {
        font-size: 32px;
    }

    .AboutVisionTitle {
        font-size: 28px;
    }

    .BeliefCards {
        flex-direction: column;
        align-items: center;
    }
}



.SignUpForm {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(to bottom, #DAE0E4, #EDEAF9);
}

.SignUpFormContent {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    width: 100%;
}

.SignUpTitle {
    font-size: 40px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.SignUpDescription {
    font-size: 18px;
    text-align: center;
    color: #333;
    line-height: 1.6;
}

.Form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FormGroup {
    display: flex;
    flex-direction: column;
}

.FormLabel {
    color: var(--color-dark-blue);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.FormInput {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.FormError {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.FormGroupCheckbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.FormButton {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-blue);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.FormButton:disabled {
    background: #aaa;
    cursor: not-allowed;
}


.Popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.PopupContent {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: #000;
}

.PopupClose {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--color-blue);
    color: white;
    border: none;
    cursor: pointer;
}



.ContactForm {
    width: 100%;
    padding: 100px 0 50px 0;
    background: linear-gradient(to bottom, #EDEAF9, #DAE0E4);
}

.ContactFormContent {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.ContactFormVisual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.ContactLogo {
    width: 80px;
    height: auto;
}

.ContactSlogan {
    font-size: 16px;
    font-style: italic;
    color: var(--color-dark-blue);
}

.ContactFormBox {
    max-width: 420px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.05);
}

.ContactTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-dark-blue);
}

.ContactDescription {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}

.ContactFormFields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.FormGroup {
    display: flex;
    flex-direction: column;
}

.FormLabel {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.FormInput {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.FormError {
    color: red;
    font-size: 13px;
    margin-top: 5px;
    display: none;
}

.FormButton {
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-blue);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.FormButton:disabled {
    background: #aaa;
    cursor: not-allowed;
}

.FormLinks {
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
}

.FormLink {
    color: var(--color-dark-blue);
    text-decoration: none;
    font-weight: 500;
}

.LinkDivider {
    margin: 0 8px;
    color: #999;
}


.Popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.PopupContent {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    color: #000;
}

.PopupClose {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 8px;
    background: var(--color-blue);
    color: white;
    border: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .ContactFormBox {
        padding: 30px 20px;
    }

    .ContactTitle {
        font-size: 28px;
    }

    .ContactFormContent {
        gap: 30px;
    }
}


.LegalPage {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(to bottom right, #EDEAF9, #DAE0E4);
}

.LegalPageContent {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    animation: fadeInPage 1.2s ease-out;
}

@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.LegalTitle {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #000000, var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glowText 2s ease-in-out infinite alternate;
}

@keyframes glowText {
    from {
        text-shadow: 0 0 5px rgba(0, 54, 100, 0.3);
    }
    to {
        text-shadow: 0 0 12px rgba(0, 54, 100, 0.6);
    }
}

.LegalSection {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.LegalParagraph {
    position: relative;
    font-size: 18px;
    line-height: 1.8;
    color: #222;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.LegalParagraph:hover {
    transform: scale(1.015);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
}

.LegalLink {
    color: var(--color-blue);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.LegalLink::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-blue);
    transition: width 0.3s ease;
}

.LegalLink:hover::after {
    width: 100%;
}

.LegalLink:hover {
    color: var(--color-dark-blue);
}



@media (max-width: 768px) {
    .LegalTitle {
        font-size: 32px;
    }

    .LegalParagraph {
        font-size: 16px;
        padding: 16px;
    }
}



.CookiePopup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #142d6b;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    animation: slideUp 0.6s ease;
    max-width: 90%;
    flex-wrap: wrap;
}

.CookiePopupText {
    flex: 1;
    line-height: 1.5;
}

.CookiePopupLink {
    color: #edeaf9;
    text-decoration: underline;
    font-weight: 500;
}

.CookiePopupButton {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.CookiePopupButton:hover {
    background: #1e40af;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) translateX(-50%);
    }
    to {
        opacity: 1;
        transform: translateY(0) translateX(-50%);
    }
}

