body {
    margin: 0;
    user-select: none;
    font-family: "Poppins", sans-serif;
}

img {
    object-fit: cover;
}

html {
    scroll-behavior: smooth;
}

a {
    all: unset;
    cursor: pointer;
}

.website_body {
    width: 100%;
    position: relative;
    background-color: #030304;
    padding: 30px 120px;
    overflow: hidden;
}

/* Target the scrollbar track */
::-webkit-scrollbar {
    width: 5px;
}

/* Scrollbar track (background area) */
::-webkit-scrollbar-track {
    background: #030304;
    border-radius: 10px;
}

/* Scrollbar thumb (the draggable part) */
::-webkit-scrollbar-thumb {
    background: #45f882;
    border-radius: 10px;
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background: #45f882;
}

/* HEADER */
.header,
.tournament-header {
    position: sticky;
    top: 0px;
    display: flex;
    align-items: center;
    background-color: #0e1012;
    padding: 14px 14px 9px 14px;
    color: white;
    justify-content: space-between;
    z-index: 1000000000000;
}

.website_logo img {
    width: 180px;
    object-fit: cover;
    margin-bottom: -7px;
}

.search_bar_news,
.btns_user_profile,
.btns_not {
    display: flex;
}

.btns_user_profile {
    width: 35vw;
    justify-content: right;
}

.search_bar {
    margin-left: 10px;
    display: flex;
    align-items: center;
    background-color: #030304;
    padding: 8px 14px;
    border-radius: 20px;
    width: 30vw;
    margin-right: 20px;
}

.search_bar_icon {
    margin-bottom: -5px;
    margin-right: 10px;
}

.search_bar_input {
    width: 100%;
}

.search_bar input {
    all: unset;
    font-size: 15px;
    width: 100%;
}

.news_for_you {
    width: 136px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background-color: #f2972034;
    border-radius: 24px;
    padding: 2.5px 13px 2.5px 2.5px;
    font-size: 14px;
}

.news_for_you_icon {
    width: fit-content;
    padding: 9px 10px 6px 10px;
    text-align: center;
    border-radius: 50%;
    background-color: #f29620;
    margin-right: 8px;
}

.news_for_you_icon svg {
    margin-bottom: -2px;
    margin-left: -2px;
    width: 20px;
    height: 20px;
    color: black;
    transition: .3s ease;
}

.news_for_you:hover svg {
    transform: rotate(-30deg);
    scale: 1.1;
}

.header_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 13px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 25%;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 10px;
    cursor: pointer;
    transition: .2s ease;
}

.header_btn:hover {
    border: 2px solid #f29620;
}

.header_btn svg {
    width: 20px;
    height: 20px;
    transition: .4s ease;
}

.header_btn:hover svg {
    scale: 1.2;
}

.user_profile {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.user_profile_img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 12px;
}

.user_profile_img img {
    object-fit: cover;
    width: 100%;
    min-height: 50px;
}

.user_profile svg {
    color: rgba(255, 255, 255, 0.5);
}

#prof_svg {
    transition: transform .2s ease;
}

.user_name {
    font-size: 14px;
    margin-right: 15px;
}

.user_friends {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.profile_menu {
    position: absolute;
    top: 65px;
    right: 0px;
    width: 150px;
    background-color: #232627;
    padding: 10px 14px;
    border-radius: 10px;
}

.profile_menu a {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    transition: .3s ease;
    padding: 7px 7px;
    border-radius: 7px;
}

.profile_menu a:hover {
    background-color: #f29620;
    color: black;
}

#profile_menu {
    display: none;
}

/* HEADER */

/* LEFT BAR */
.website_left_bar {
    top: 70px;
    bottom: 0;
    overflow: scroll;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    position: fixed;
    left: 0;
    background-color: black;
    padding: 20px 15px;
    text-align: center;
    z-index: 1000000000;
}

.website_left_bar::-webkit-scrollbar {
    display: none;
}

.website_left_bar {
    scrollbar-width: none;
    /* Firefox */
}

.website_left_bar div {
    width: fit-content;
    padding: 10px 11px;
    margin: 10px 0;
    cursor: pointer;
}

.website_left_bar path {
    fill: white;
}

.website_left_bar svg:hover path {
    transition: .2s ease;
    fill: #f29620;
}

.website_left_bar svg {
    width: 28px;
    height: 28px;
}

.menu_button,
.trend_button {
    width: fit-content;
    background-color: rgb(242, 150, 32);
    border-radius: 50%;
}

.trend_button:hover svg path,
.menu_button:hover svg path {
    transition: .2s ease;
    fill: white;
}

.menu_button svg path {
    fill: rgb(242, 150, 32);
}

.trend_button svg path {
    fill: black;
}

.menu_button svg,
.trend_button svg {
    margin-bottom: -5px;
}

.four_buttons {
    all: unset;
    background-color: rgba(80, 79, 79, 0.39);
    border-radius: 50px;
}

/* LEFT BAR */
/* RIGHT BAR */
.website_right_bar {
    overflow: scroll;
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
    position: fixed;
    top: 70px;
    bottom: 0;
    right: 0;
    background-color: black;
    padding: 20px 15px;
    text-align: center;
    z-index: 1000000000;
}

.right_bar_prof_img {
    cursor: pointer;
    margin-right: 0px;
    margin-bottom: 20px;
}

.add_member {
    background-color: #232627;
    padding: 13px;
    cursor: pointer;
    border-radius: 50%;
}

.add_member svg path {
    stroke: white;
}

.add_member svg {
    width: 25px;
    height: 25px;
    margin-bottom: -7px;
    transition: .4s ease;
}

.add_member:hover svg {
    transform: scale(1.1);
}

.seperator {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    height: 1px;
    margin: 20px 0px;
}

.website_right_bar_text {
    color: white;
    font-size: 12px;
    margin-bottom: 15px;
}

.right_bar_prof_img:hover img {
    transition: .3s ease;
}

.right_bar_prof_img:hover img {
    transform: scale(1.1);
}

.website_right_bar::-webkit-scrollbar {
    display: none;
}

.website_right_bar {
    scrollbar-width: none;
    /* Firefox */
}

/* RIGHT BAR */

/* SECTION 2 */
.tournament_details {
    color: white;
    padding: 0px 0px 40px 0px;
}

.heading_view_all,
.view_all_btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section_2_heading {
    font-size: 30px;
    font-weight: 600;
    position: relative;
    z-index: 10000;
    margin-left: 50px;
    margin-top: 70px;
}

.heading_view_all {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    z-index: 10000;
    height: 300px;
    border-radius: 20px;
}

.tournament_nav {
    position: relative;
    z-index: 10000;
    left: 50px;
    font-size: 12px;
}

.tournament_nav_tournament {
    color: #f29620;
}

.tournament_nav_home {
    transition: .3s ease;
}

.tournament_nav_home:hover {
    transition: .3s ease;
    color: #f28f16;
}

.background_img_section_2 {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.background_img_section_2 img {
    width: 100%;
    min-height: 300px;
    object-fit: cover;
}

.background_img_section_2::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #00000065;
}

/* PAGES OF TOURNAMENT DETAILS */
/* TOURNAMENT UPPER BOX */
.tournament_basic_details {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    background-color: #0e1012;
    padding: 30px 20px;
    border-radius: 20px;
    margin: 0 auto;
    margin-top: -80px;
    position: relative;
    z-index: 100000;
    width: 90%;
}

.tournament_basic_details>div {
    margin: 10px;
}

.tournament_name {
    font-size: 22px;
    font-weight: 500;
    cursor: text;
}

.tournament_game_team_size {
    display: flex;
    font-size: 12px;
    margin-top: 25px;
    color: black;
    font-weight: 500;
}

.tournament_game_name,
.tournament_team_size {
    background-color: #f28f16;
    padding: 7px 20px;
    margin-right: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: text;
}

.tournament_team_size {
    background-color: #45f882;
}

.tournament_game_team_size svg {
    margin-bottom: -2px;
    margin-right: 3px;
}

.tournament_prize {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 80px;
    text-align: center;
    color: #45f882;
    font-weight: 500;
    cursor: text;
}

.tournament_prize_value {
    font-size: 17px;
    letter-spacing: -.5px;
    margin: 10px 0;
}

.tournament_prize_txt {
    font-size: 13px;
    color: white;
}

.view_prize_btn {
    letter-spacing: 1px;
}

.tournament_join_btn_end_date {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.tournament_join_now_btn {
    font-size: 14px;
    background: #f28f16;
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    width: fit-content;
}

.tournament_join_now_btn:hover {
    background-color: #45f882;
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
}

.time-box {
    text-align: center;
    font-size: 12px;
}

.time {
    color: #ffffff;
    display: inline-block;
    font-weight: 500;
}

.label {
    font-size: 11px;
    color: #ccc;
    margin-top: -1px;
}

.separator {
    color: #ff6600;
    margin: 0 6px;
}

.tournament_registration_end_date {
    font-size: 13px;
}

.tournament_page_selector {
    display: flex;
    width: fit-content;
    margin: 20px 40px;
}

.tournament_page_selector div {
    margin: 5px 0px;
    margin-left: 25px;
    cursor: pointer;
    font-size: 15px;
    text-decoration: underline 2px solid transparent;
    text-underline-position: under;
    transition: .3s ease;
}

.tournament_page_1 {
    gap: 1px;
}

.tournament_page_selector div:hover {
    color: #f28f16;
}

.tournament_page_selector div:first-child {
    margin-left: 0px;
}

/* PAGES OF TOURNAMENT DETAILS */
.tournament_page_2_open,.tournament_page_3_open,.tournament_page_4_open,.tournament_page_5_open{
    display: none;
}
/* TOURNAMENT DETAIL PAGES 1 - 5 style */
/* PAGE 1 */
.tournament-container {
    background: transparent;
    color: #ffffff;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    padding: 24px;
    border-radius: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.tournament-header {
    position: relative;
    z-index: 100;
    padding: 20px 25px;
    border-radius: 10px;
    background-color: #0e1012;
}

.game-info {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.game-section,
.mode-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin: 0;
}

.game-name,
.mode-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 6px;
}

.brand-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-icon {
    width: 30px;
    height: 30px;
    background: url(../nox_images/icon_gamenox.ico);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-repeat: no-repeat;
    margin-left: -14px;
}

.brand-text {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #2a2a2a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #888;
    transition: all 0.2s ease;
}

.social-icon:hover {
    background: #333;
    color: #fff;
}

/* Main Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    margin-top: 40px;
}

/* Tournament Info Section */
.tournament-info {
    background: #0e1012;
    border-radius: 12px;
    padding: 24px;
}

.tournament-info h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.tournament-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 14px;
}

.tournament-rules h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.rules-list {
    list-style: none;
}

.rules-list li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

.rules-list li::before {
    content: "•";
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.rules-section {
    margin-bottom: 24px;
}

.rules-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.feedback-section {
    background: #2a2a2a80;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
}

.feedback-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
}

.feedback-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Organized By Section */
.organized-by {
    background: #0e1012;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.organized-by h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.organizer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.organizer-description {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.organizer-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.organizer-social .social-icon {
    width: 36px;
    height: 36px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.2s ease;
}

.organizer-social .social-icon:hover {
    background: #444;
    transform: translateY(-2px);
}

/* Admins Section */
.admins-section {
    background: #0e1012;
    border-radius: 12px;
    padding: 20px;
}

.admins-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.admins-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.admin-count {
    background: #2a2a2ab6;
    color: #ccc;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 12px;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: #2a2a2a81;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.admin-item:hover {
    background: #333;
}

.admin-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.admin-avatar img {
    width: 100%;
    min-height: 40px;
}

.admin-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 2px;
}

.admin-details span {
    font-size: 12px;
    color: #888;
}

.admin-menu {
    background: none;
    border: none;
    color: #888;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.admin-menu:hover {
    background: #444;
    color: #fff;
}

.admin-item {
    position: relative;
}

.admin-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #333;
    border: 1px solid #444;
    border-radius: 8px;
    padding: 8px 0;
    min-width: 150px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.admin-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 8px 16px;
    text-align: left;
    background: none;
    border: none;
    color: #ccc;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: #444;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .tournament-container {
        padding: 16px;
        border-radius: 8px;
    }

    .tournament-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .brand-social {
        width: 100%;
        justify-content: space-between;
    }

    .game-info {
        flex-direction: column;
        gap: 16px;
    }

    .tournament-info,
    .admins-section {
        padding: 16px;
    }

    .prize-pool {
        padding: 16px;
    }

    .game-info {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .tournament-container {
        padding: 12px;
    }

    .tournament-info h2 {
        font-size: 20px;
    }

    .user-avatar {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .brand-icon {
        width: 28px;
        height: 28px;
    }

    .brand-text {
        font-size: 16px;
    }

    .social-icons {
        gap: 6px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* PAGE 1 */

/* PAGE 2 */
.tournament-standings-container {
    background: #000000;
    border-radius: 0;
    overflow: hidden;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    width: 100%;
}

.standings-table-wrapper {
    position: relative;
}

.tournament-standings-table {
    width: 100%;
    border-collapse: collapse;
    background: #000000;
}

.standings-header-row {
    background: #000000;
}

.placement-header-column,
.team-leader-header-column,
.team-kills-header-column,
.actions-header-column {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    border: none;
}

.actions-header-column {
    text-align: right;
    padding-right: 40px;
}

.standings-row-data {
    background: #1a1a1a;
    border-bottom: 1px solid #333333;
    transition: background-color 0.2s ease;
}

.standings-row-data:hover {
    background: #252525;
}

.standings-row-data:last-child {
    border-bottom: none;
}

.placement-rank-column {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 14px;
    background: #0e1012;
}

.first-position {
    color: #00ff88;
}

.second-position {
    color: #ffa500;
}

.third-position {
    color: #ff6b35;
}

.team-leader-name-column {
    padding: 20px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background: #0e1012;
}

.team-kills-data-column {
    padding: 20px 24px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    background: #0e1012;
}

.kills-count-number {
    color: #ff6b35;
    font-weight: 700;
}

.view-details-column {
    padding: 20px 40px 20px 24px;
    text-align: right;
    background: #1a1a1a;
}

.details-view-action {
    background: none;
    border: none;
    color: #ff6b35;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
    text-decoration: none;
}

.details-view-action:hover {
    color: #ffffff;
}

.right-arrow-symbol {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.details-view-action:hover .right-arrow-symbol {
    transform: translateX(2px);
}

.results-not-available-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 100;
}

.not-available-message {
    color: #cccccc;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.tournament-not-started-badge {
    background: #1a1a1a;
    color: #ff6b35;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #333333;
}

/* Responsive Mobile Design */
@media (max-width: 768px) {

    .placement-header-column,
    .team-leader-header-column,
    .team-kills-header-column,
    .actions-header-column {
        padding: 12px 16px;
        font-size: 13px;
    }

    .placement-rank-column,
    .team-leader-name-column,
    .team-kills-data-column,
    .view-details-column {
        padding: 16px 16px;
        font-size: 13px;
    }

    .actions-header-column,
    .view-details-column {
        padding-right: 24px;
    }

    .details-view-action {
        font-size: 13px;
    }

    .not-available-message {
        font-size: 16px;
    }

    .tournament-not-started-badge {
        font-size: 13px;
        padding: 10px 18px;
    }
}

@media (max-width: 480px) {

    .placement-header-column,
    .team-leader-header-column,
    .team-kills-header-column,
    .actions-header-column {
        padding: 10px 12px;
        font-size: 12px;
    }

    .placement-rank-column,
    .team-leader-name-column,
    .team-kills-data-column,
    .view-details-column {
        padding: 14px 12px;
        font-size: 12px;
    }

    .team-leader-header-column,
    .team-leader-name-column {
        max-width: 120px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .actions-header-column,
    .view-details-column {
        padding-right: 16px;
    }

    .details-view-action {
        font-size: 12px;
    }
}

/* PAGE 2  */


/* PAGE 3 */
.tournament-participants-container {
    background: #000000;
    color: #ffffff;
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        sans-serif;
    border-radius: 12px;
    overflow: hidden;
}

.participants-header-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #000000;
    border-bottom: 1px solid #333;
}

.total-participants-title {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.participants-search-container {
    position: relative;
    width: 280px;
}

.search-input-field {
    width: 80%;
    padding: 10px 16px 10px 40px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
}

.search-input-field::placeholder {
    color: #888;
}

.search-input-field:focus {
    border-color: #4fc3f7;
    box-shadow: 0 0 0 1px #4fc3f7;
}

.search-icon-wrapper {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.participants-data-table {
    width: 100%;
    border-collapse: collapse;
    background: #000000;
}

.table-header-section {
    background: #000000;
}

.name-column-header,
.status-column-header,
.team-leader-column-header,
.game-id-column-header {
    padding: 16px 24px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    border-bottom: 1px solid #333;
}

.participant-row-item {
    background: #1a1a1a;
    border-bottom: 1px solid #333;
    transition: background-color 0.2s ease;
}

.participant-row-item:hover {
    background: #252525;
}

.participant-row-item:last-child {
    border-bottom: none;
}

.participant-name-cell {
    padding: 16px 24px;
    background: #0e1012;
}

.name-display-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.participant-avatar-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #7b68ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    overflow: hidden;
}

.participant-avatar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.participant-name-text {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}

.participant-status-cell {
    padding: 16px 24px;
    background: #0e1012;
}

.status-indicator-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
}

.status-dot-icon {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-accepted {
    color: #ffa500;
}

.status-accepted .status-dot-icon {
    background: #ffa500;
}

.status-pending {
    color: #00ff88;
}

.status-pending .status-dot-icon {
    background: #00ff88;
}

.status-rejected {
    color: #ff6b35;
}

.status-rejected .status-dot-icon {
    background: #ff6b35;
}

.team-leader-name-cell {
    padding: 16px 24px;
    background: #0e1012;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.game-id-display-cell {
    padding: 16px 24px;
    background: #0e1012;
    color: #cccccc;
    font-size: 14px;
    font-weight: 500;
}

.no-results-message {
    padding: 40px 24px;
    text-align: center;
    color: #888;
    font-size: 16px;
    background: #1a1a1a;
}

.no-results-message.hidden {
    display: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .participants-header-section {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
        padding: 16px 20px;
    }

    .participants-search-container {
        width: 100%;
    }

    .name-column-header,
    .status-column-header,
    .team-leader-column-header,
    .game-id-column-header {
        padding: 12px 16px;
        font-size: 13px;
    }

    .participant-name-cell,
    .participant-status-cell,
    .team-leader-name-cell,
    .game-id-display-cell {
        padding: 12px 16px;
        font-size: 13px;
    }

    .participant-avatar-image {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .total-participants-title {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .participants-header-section {
        padding: 12px 16px;
    }

    .name-column-header,
    .status-column-header,
    .team-leader-column-header,
    .game-id-column-header {
        padding: 10px 12px;
        font-size: 12px;
    }

    .participant-name-cell,
    .participant-status-cell,
    .team-leader-name-cell,
    .game-id-display-cell {
        padding: 10px 12px;
        font-size: 12px;
    }

    .team-leader-name-cell,
    .game-id-display-cell {
        max-width: 100px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .participant-avatar-image {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .name-display-wrapper {
        gap: 8px;
    }
}

/* PAGE 3 */

/* PAGE 4 */
.MT-container {
        margin: 0 auto;
      }

      .MT-match-container {
        background: transparent;
        border-radius: 12px;
        overflow: hidden;
      }

      .MT-match-header {
        padding: 24px;
        border-bottom: 1px solid #333;
      }

      .MT-match-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 24px;
      }

      .MT-match-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
      }

      .MT-match-item {
        background: #0e1012;
        border: 1px solid #333;
        border-radius: 8px;
        padding: 16px 150px;
        transition: border-color 0.2s ease;
      }
      .MT-match-item:hover {
        border-color: #555;
      }

      .MT-match-datetime {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        font-size: 12px;
        color: #888;
      }

      .MT-datetime-item {
        display: flex;
        align-items: center;
        gap: 4px;
      }

      .MT-live-indicator {
        color: #ef4444;
        font-weight: 600;
      }

      .MT-match-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }

      .MT-player {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        min-width: 0;
        text-align: center;
        flex-direction: column;
      }

      .MT-player-avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid #4a90e2;
        flex-shrink: 0;
      }

      .MT-player-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .MT-player-name {
        font-weight: 500;
        font-size: 14px;
        color: white;
        text-align: center;
      }

      .MT-match-score {
        display: flex;
        align-items: center;
        gap: 16px;
        margin: 0 20px;
      }

      .MT-score {
        font-size: 18px;
        font-weight: 700;
      }

      .MT-match-status {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }

      .MT-status-text {
        font-size: 12px;
        color: #888;
        text-transform: capitalize;
      }

      .MT-status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
      }

      .MT-status-live {
        background: #ef4444;
      }

      .MT-status-waiting {
        background: #eab308;
      }

      .MT-status-completed {
        background: #22c55e;
      }

      .MT-details-btn {
        background: #eab308;
        color: #000;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease;
        display: flex;
        align-items: center;
        gap: 8px;
        flex-shrink: 0;
      }

      .MT-details-btn:hover {
        background: #fbbf24;
      }

      /* Detail View */
      .MT-detail-view {
        display: none;
      }

      .MT-detail-view.active {
        display: block;
      }

      .MT-detail-header {
        padding: 24px;
        border-bottom: 1px solid #333;
      }

      .MT-detail-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 16px;
      }

      .MT-detail-title {
        font-size: 20px;
        font-weight: 600;
      }

      .MT-back-btn {
        background: none;
        border: none;
        color: #888;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: color 0.2s ease;
      }

      .MT-back-btn:hover {
        color: white;
      }

      .MT-detail-datetime {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 24px;
        font-size: 14px;
        color: #888;
      }

      .MT-detail-players {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .MT-detail-player {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
      }

      .MT-detail-player-info {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .MT-view-team-btn {
        color: #22c55e;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: color 0.2s ease;
      }

      .MT-view-team-btn:hover {
        color: #16a34a;
      }

      .MT-detail-score {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 24px;
        font-weight: 700;
      }

      .MT-detail-status {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin: 0 20px;
      }

      .MT-detail-status-text {
        font-size: 14px;
        color: #888;
      }

      .MT-tabs {
        border-bottom: 1px solid #333;
      }

      .MT-tab-buttons {
        display: flex;
      }

      .MT-tab-btn {
        background: none;
        border: none;
        color: #888;
        padding: 16px 24px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: color 0.2s ease;
      }

      .MT-tab-btn.active {
        color: #22c55e;
        border-bottom-color: #22c55e;
      }

      .MT-tab-btn:hover {
        color: white;
      }

      .MT-detail-content {
        padding: 24px;
      }

      .MT-tab-content {
        display: none;
      }

      .MT-tab-content.active {
        display: block;
      }

      .MT-games-container {
        padding: 0;
      }

      .MT-game-item {
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 8px;
        padding: 16px;
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: background 0.2s ease;
      }

      .MT-game-item:hover {
        background: #252525;
      }

      .MT-game-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(45deg, #ff6b35, #ffa726);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: #000;
        flex-shrink: 0;
      }

      .MT-game-details {
        flex: 1;
      }

      .MT-game-name {
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 4px;
      }

      .MT-game-mode {
        font-size: 14px;
        color: #888;
        margin-bottom: 8px;
      }

      .MT-game-status {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 12px;
      }

      .MT-game-status-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #22c55e;
      }

      .MT-game-status-text {
        color: #22c55e;
        font-weight: 500;
      }

      .MT-game-score {
        text-align: right;
        flex-shrink: 0;
      }

      .MT-game-score-text {
        font-size: 12px;
        color: #888;
        margin-bottom: 4px;
      }

      .MT-game-score-value {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
      }

      .MT-live-stream-container {
        padding: 0;
      }

      .MT-video-player {
        width: 100%;
        aspect-ratio: 16/9;
        background: #000;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 16px;
      }

      .MT-video-player video {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .MT-stream-info {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
      }

      .MT-stream-viewers {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #888;
        font-size: 14px;
      }

      .MT-viewer-count {
        color: #ef4444;
        font-weight: 600;
      }

      .MT-stream-quality {
        display: flex;
        gap: 8px;
      }

      .MT-quality-btn {
        background: #333;
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 4px 8px;
        font-size: 12px;
        cursor: pointer;
        transition: background 0.2s ease;
      }

      .MT-quality-btn.active {
        background: #ef4444;
      }

      .MT-quality-btn:hover {
        background: #555;
      }

      .MT-live-stream-btn {
        background: #ef4444;
        color: white;
        border: none;
        border-radius: 8px;
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s ease;
      }

      .MT-live-stream-btn:hover {
        background: #dc2626;
      }

      .MT-icon {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }

      .MT-icon-sm {
        width: 12px;
        height: 12px;
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .MT-match-content {
          flex-direction: column;
          gap: 16px;
          align-items: stretch;
        }

        .MT-match-score {
          justify-content: center;
          margin: 0;
        }

        .MT-detail-players {
          flex-direction: column;
          gap: 24px;
          text-align: center;
        }

        .MT-detail-score {
          justify-content: center;
        }

        .MT-detail-datetime,
        .MT-match-datetime {
          flex-direction: column;
          gap: 8px;
          align-items: flex-start;
        }

        .MT-player {
          flex-direction: row;
          justify-content: center;
        }
      }

      @media (max-width: 480px) {
        .MT-match-header,
        .MT-detail-header,
        .MT-detail-content {
          padding: 16px;
        }

        .MT-player-name {
          font-size: 12px;
        }

        .MT-player-avatar {
          width: 40px;
          height: 40px;
        }

        .MT-match-score {
          gap: 12px;
        }

        .MT-score {
          font-size: 16px;
        }
      }
      /* PAGE 4 */

      /* PAGE 5 */
      .TB-container {
        margin: 0 auto;
        background: #000;
        border-radius: 12px;
        padding: 24px;
        overflow-x: auto;
      }
      .TB-container::-webkit-scrollbar {
    height: 3px;
    }
     .TB-bracket {
        display: flex;
        gap: 60px;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
      }
      @media only screen and (max-width:1200px){
        .TB-bracket{
            min-width: 1200px;
        }
      }
      .TB-round {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        min-width: 200px;
      }

      .TB-round-title {
        font-size: 14px;
        font-weight: 600;
        color: #888;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 10px;
        padding: 8px 16px;
        background: #1a1a1a;
        border-radius: 20px;
        border: 1px solid #333;
      }

      .TB-matches {
        display: flex;
        flex-direction: column;
        gap: 40px;
        width: 100%;
      }

      .TB-match {
        background: #1a1a1a;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
        transition: all 0.2s ease;
        cursor: pointer;
      }

      .TB-match:hover {
        border-color: #555;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
      }

      .TB-match.winner {
        border-color: #22c55e;
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
      }

      .TB-player {
        display: flex;
        align-items: center;
        padding: 12px 16px;
        border-bottom: 1px solid #333;
        transition: background 0.2s ease;
      }

      .TB-player:last-child {
        border-bottom: none;
      }

      .TB-player.winner {
        background: #22c55e;
        color: #000;
        font-weight: 600;
      }

      .TB-player.loser {
        background: #333;
        color: #888;
      }

      .TB-player-avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 12px;
        border: 2px solid #4a90e2;
        flex-shrink: 0;
      }

      .TB-player-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .TB-player-info {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .TB-player-name {
        font-size: 14px;
        font-weight: 500;
      }

      .TB-player-score {
        font-size: 16px;
        font-weight: 700;
        min-width: 20px;
        text-align: center;
      }

      /* Round specific spacing */
      .TB-round:nth-child(1) .TB-matches {
        gap: 20px;
      }

      .TB-round:nth-child(2) .TB-matches {
        gap: 60px;
        margin-top: 40px;
      }

      .TB-round:nth-child(3) .TB-matches {
        gap: 140px;
        margin-top: 80px;
      }

      .TB-round:nth-child(4) .TB-matches {
        margin-top: 160px;
      }

      /* Connection lines */
      .TB-round::after {
        content: "";
        width: 30px;
        height: 2px;
        background: #333;
        position: absolute;
        right: -45px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
      }

      .TB-round:last-child::after {
        display: none;
      }

      .TB-round {
        position: relative;
      }

      /* Finals highlight */
      .TB-finals-highlight {
        background: linear-gradient(135deg, #ff6b35, #ffa726);
        padding: 16px;
        border-radius: 12px;
        margin-top: 20px;
        text-align: center;
      }

      .TB-finals-highlight h3 {
        color: #000;
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
      }

      .TB-finals-highlight p {
        color: #333;
        font-size: 14px;
      }

      /* Winner celebration */
      .TB-champion {
        background: linear-gradient(135deg, #22c55e, #16a34a);
        color: #000;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        margin-top: 20px;
        border: 2px solid #22c55e;
        animation: championGlow 2s ease-in-out infinite alternate;
      }

      @keyframes championGlow {
        0% {
          box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        }
        100% {
          box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
        }
      }

      .TB-champion h3 {
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px;
      }

      .TB-champion p {
        font-size: 14px;
        font-weight: 500;
      }

      /* Mobile Responsive */
      @media (max-width: 1024px) {
        .TB-bracket {
          gap: 40px;
          min-width: 900px;
        }

        .TB-round {
          min-width: 160px;
        }

        .TB-round::after {
          width: 20px;
          right: -30px;
        }
      }

      @media (max-width: 768px) {
        .TB-container {
          padding: 16px;
        }

        .TB-bracket {
          gap: 30px;
          min-width: 700px;
        }

        .TB-round {
          min-width: 140px;
        }

        .TB-player {
          padding: 10px 12px;
        }

        .TB-player-avatar {
          width: 28px;
          height: 28px;
          margin-right: 8px;
        }

        .TB-player-name {
          font-size: 13px;
        }

        .TB-player-score {
          font-size: 14px;
        }

        .TB-round-title {
          font-size: 12px;
          padding: 6px 12px;
        }
      }

      @media (max-width: 480px) {
        .TB-bracket {
          gap: 20px;
          min-width: 600px;
        }

        .TB-round {
          min-width: 120px;
        }

        .TB-player {
          padding: 8px 10px;
        }

        .TB-player-avatar {
          width: 24px;
          height: 24px;
          margin-right: 6px;
        }

        .TB-player-name {
          font-size: 12px;
        }

        .TB-player-score {
          font-size: 13px;
        }
      }

      /* Scroll hint */
      .TB-scroll-hint {
        text-align: center;
        color: #888;
        font-size: 14px;
        margin-bottom: 20px;
        display: none;
      }

      @media (max-width: 1024px) {
        .TB-scroll-hint {
          display: block;
        }
      }
      /* PAGE 5 */
/* TOURNAMENT DETAIL PAGES 1 - 5 style */

/* SECTION 2 */



/* FOOTER */
.container {
    margin: 0 auto;
    padding: 0 1.5rem;
    background-color: #0e1012;
}

/* Main Content */
.main-content_footer {
    padding: 4rem 0 6rem;
    margin-top: 40px;
    background-color: #0e1012;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #d1d5db;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: white;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 28rem;
}

@media (min-width: 640px) {
    .subscription-form {
        flex-direction: row;
    }
}

.email-input {
    flex: 1;
    background: transparent;
    border: 1px solid #6b7280;
    color: #ffffff;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.email-input:focus {
    outline: none;
    border-color: #45f882;
    box-shadow: 0 0 0 1px #4fc3f7;
}

.email-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.subscribe-btn {
    background: #f28f16;
    color: #000000;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
}

.subscribe-btn:hover {
    background: #45f882;
}

/* Character Section */
.character-section {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .character-section {
        justify-content: flex-end;
    }
}

.character-container {
    position: relative;
}

.character-circle {
    width: 21rem;
    height: 21rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* overflow: hidden; */
}

@media (min-width: 1024px) {
    .character-circle {
        width: 20rem;
        height: 20rem;
    }
}

.character-image {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.character-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
}

/* Footer */
.footer {
    background-color: #000000;
    border-top: 1px solid #374151;
}

.footer-content {
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(to right, #fb923c, #fbbf24);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
}

.company-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    max-width: 18rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 2rem;
    height: 2rem;
    background: #374151;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-link:hover {
    background: #4b5563;
}

.footer-heading {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    background: #ffffff;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.contact-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.75rem;
}

.contact-label {
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Bottom Footer */
.bottom-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    gap: 1rem;
}

@media (min-width: 768px) {
    .bottom-footer {
        flex-direction: row;
        gap: 0;
    }
}

.copyright-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .copyright-section {
        flex-direction: row;
        gap: 1rem;
    }
}

.legal-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.legal-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover {
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .main-content {
        padding: 2rem 0 4rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .character-circle {
        width: 16rem;
        height: 16rem;
    }
}

/* FOOTER */
/* NAVIGATION */
/* Navigation Toggle Button */
.nav-toggle {
    display: none;
    position: fixed;
    right: 1.5rem;
    z-index: 3000000000;
    background: rgb(242, 150, 32);
    border: none;
    border-radius: 0.5rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Custom Navigation Trigger Elements */
.navigation-trigger-element {
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.navigation-trigger-element:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
}

.navigation-trigger-element.active {
    transform: scale(0.95);
}

.navigation-trigger-element.nav-is-open {
    background-color: #4fc3f7 !important;
    color: #000000 !important;
    border-color: #4fc3f7 !important;
}

.navigation-trigger-element.trigger-clicked {
    animation: triggerPulse 0.6s ease-out;
}

@keyframes triggerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(79, 195, 247, 0.7);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(79, 195, 247, 0.3);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 20px rgba(79, 195, 247, 0);
    }
}

/* Predefined styles for common trigger classes */
.nav-trigger {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: #ffffff;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.nav-trigger:hover {
    background: #374151;
    border-color: #4fc3f7;
}

/* Button style trigger */
.nav-trigger.btn-style {
    background: linear-gradient(45deg, #4fc3f7, #00bcd4);
    border: none;
    color: #000000;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 0.75rem;
}

.nav-trigger.btn-style:hover {
    background: linear-gradient(45deg, #00bcd4, #4fc3f7);
    transform: translateY(-2px);
}

/* Text link style trigger */
.nav-trigger.link-style {
    background: none;
    border: none;
    color: #4fc3f7;
    text-decoration: underline;
    padding: 0.5rem;
    font-weight: 500;
}

.nav-trigger.link-style:hover {
    color: #ffffff;
    background: rgba(79, 195, 247, 0.1);
}

/* Icon style trigger */
.nav-trigger.icon-style {
    background: #374151;
    border: 1px solid #4b5563;
    border-radius: 50%;
    padding: 0.75rem;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-trigger.icon-style:hover {
    background: #4b5563;
    border-color: #4fc3f7;
}

.nav-toggle:hover {
    background: #374151;
    transform: scale(1.05);
}

.nav-toggle.active {
    transform: rotate(90deg);
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #ffffff;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 40000000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0e1012;
    border-top: 1px solid #45f882;
    z-index: 500000000000;
    height: 100vh;
    overflow-y: scroll;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    transform: translateY(0);
}

.nav-content {
    padding: 1.5rem;
}

/* Navigation Header */
.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
}

.nav-close {
    background: none;
    border: none;
    color: #9ca3af;
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    line-height: 1;
}

.nav-close:hover {
    color: #ffffff;
    background: #374151;
}

/* Search Container */
.search-container {
    margin-bottom: 1.5rem;
}

.search-box {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid #4b5563;
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.search-input {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    background: #374151be;
    border: none;
    border-radius: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-input:focus {
    outline: none;
    border-color: #4fc3f7;
    box-shadow: 0 0 0 1px #4fc3f7;
}

/* Navigation Items */
.nav-items {
    margin-bottom: 2rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: #d1d5db;
    text-decoration: none;
    border-radius: 0.5rem;
    margin-bottom: 0.25rem;
    transition: all 0.2s ease;
    font-weight: 500;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.3s ease forwards;
}

.nav-item:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-item:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-item:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-item:nth-child(4) {
    animation-delay: 0.2s;
}

.nav-item:nth-child(5) {
    animation-delay: 0.25s;
}

.nav-item:nth-child(6) {
    animation-delay: 0.3s;
}

.nav-item:nth-child(7) {
    animation-delay: 0.35s;
}

.nav-item:nth-child(8) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-item:hover {
    color: #ffffff;
    background: #374151;
}

.nav-item.active {
    color: #ffffff;
}

.nav-icon {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: all 0.2s ease;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
    color: #45f882;
}

.active-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #45f882;
    border-radius: 50%;
    margin-left: auto;
}

/* Info Section */
.info-section {
    background: #374151c9;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.3s ease 0.5s forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.info-logo {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(45deg, #ff6b35, #ffa726);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #000000;
    font-size: 0.75rem;
}

.info-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #ffffff;
}

.info-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: #4b5563;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.125rem;
    transition: all 0.2s ease;
    opacity: 0;
    transform: scale(0.8);
    animation: scaleIn 0.3s ease forwards;
}

.social-link:nth-child(1) {
    animation-delay: 0.6s;
}

.social-link:nth-child(2) {
    animation-delay: 0.65s;
}

.social-link:nth-child(3) {
    animation-delay: 0.7s;
}

.social-link:nth-child(4) {
    animation-delay: 0.75s;
}

.social-link:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.social-link:hover {
    background: #6b7280;
    transform: scale(1.1);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-toggle {
        top: 2rem;
        right: 2rem;
    }

    .mobile-nav {
        max-width: 400px;
        left: auto;
        right: 0;
        border-radius: 1rem 1rem 0 0;
        border-left: 1px solid #374151;
    }
}

@media (max-width: 480px) {
    .nav-content {
        padding: 1rem;
    }

    .nav-header {
        margin-bottom: 1rem;
    }

    .search-container {
        margin-bottom: 1rem;
    }

    .nav-items {
        margin-bottom: 1.5rem;
    }
}

/* NAVIGATION */

@media only screen and (min-width:1300px) {
    .website_body {
        width: 1300px;
        margin: 0 auto;
    }
}

@media only screen and (max-width:1200px) {
    .tournament_prize {
        padding: 0 40px;
    }
    .MT-match-item{
        padding: 16px;
    }
}

@media only screen and (max-width:1050px) {

    .news_for_you {
        display: none;
    }

    .tournament_basic_details {
        flex-wrap: wrap;
    }

    .tournament_prize {
        padding: 0 25px;
    }
}

@media only screen and (max-width:1000px) {
    .btns_not {
        display: flex;
        flex-direction: row-reverse;
    }

    .store_btn {
        display: none;
    }

    .tournament_prize {
        border: none;
        padding: 0px;
    }
}

@media only screen and (max-width:800px) {

    .participant-name-cell {
        min-width: 180px;
    }
    .participant-status-cell,
    .team-leader-name-cell{
        min-width: 110px;
    }
    .game-id-display-cell {
        min-width: 70px;
    }
    .tournament-participants-container {
        overflow: scroll;
    }

    .tournament-participants-container::-webkit-scrollbar {
        height: 5px;
    }
}

@media only screen and (max-width:700px) {

    .search_bar,
    .user_profile,
    .website_left_bar,
    .website_right_bar {
        display: none;
    }

    .website_body {
        padding: 30px 50px;
    }
    .user_profile{
        display: flex !important;
    }
    .user_profile_text{
        display: none;
    }
    .website_logo{
        margin-left: 50px;
    }
    .nav-toggle {
        display: block;
        right:auto !important;
    }

    .website_body {
        padding-bottom: 0px;
    }

    .main-content_footer,
    .footer .container {
        margin: 0 -50px;
    }

    .main-content_footer {
        margin-top: 20px;
    }

    .subscription-form {
        max-width: none;
    }
}

@media only screen and (max-width:600px) {
    .section_2_heading {
        font-size: 26px;
    }

    .tournament_page_selector {
        margin: 20px;
    }

    .tournament_basic_details {
        width: auto;
    }
}

@media only screen and (max-width:560px) {
    .tournament_page_selector>div {
        width: fit-content;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 10px;
        font-size: 14px;
    }

    .tournament_page_selector {
        width: fit-content;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media only screen and (max-width:450px) {
    .website_body {
        padding-left: 25px;
        padding-right: 25px;
    }

    .main-content_footer .container {
        padding: 0 3.5rem;
    }

    .footer-content {
        padding: 3rem 2.5rem;
    }

    .brand-social {
        flex-direction: column;
    }

    .tournament_page_2 {
        padding: 0 15px;
    }
}