  /*****************************************************/
  /*****************   XGN Main CSS   ******************/
  /*****************************************************/

  :root {
    --xgn-navy: #071033;
    --xgn-dark-blue: #0B1B4D;
    --xgn-blue: #162A8A;
    --xgn-royal: #2F45FF;
    --xgn-gold: #F7C600;
    --xgn-gold-light: #FFE066;
    --xgn-white: #FFFFFF;
    --xgn-grey: #D8DCEB;
    --xgn-muted: #AEB6D6;
    --xgn-border: #31458F;
    --xgn-gradient-gold: linear-gradient(90deg, var(--xgn-gold) 0%, var(--xgn-gold-light) 100%);
  }

  /*****************************************************/
  /*****************   Typography   ********************/
  /*****************************************************/

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

  html {
    position: relative;
    overflow-x: hidden;
  }

  body {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 22px;
    color: var(--xgn-white);
    background: radial-gradient(circle at top right, rgba(36, 55, 217, 0.22), transparent 34%), var(--xgn-navy);
    overflow-x: hidden;
  }

  body::after {
    animation: grain 8s steps(10) infinite;
    content: "";
    height: 300%;
    width: 300%;
    left: -100%;
    top: -110%;
    opacity: 0.1;
    position: fixed;
    z-index: -1;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  li {
    list-style: none;
  }

  a {
    text-decoration: none;
    display: inline-block;
  }

  a:hover {
    text-decoration: none;
  }

  a:focus {
    outline: none;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
  }

  img {
    border: none;
    max-width: 100%;
  }

  button {
    border: none;
  }

  button:focus {
    border: none;
    outline: none;
    box-shadow: none;
  }

  .align_center {
    align-items: center;
  }

  .no_padding {
    padding: 0;
  }

  .section_padding {
    padding: 50px 0;
  }

  /*****************************************************/
  /*****************   Shared Styles   *****************/
  /*****************************************************/

  .btn-style {
    background: url(../images/button-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    color: var(--xgn-white);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 10px 24px;
    position: relative;
    transition: 0.2s ease-in-out;
  }

  .btn-style::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(rgba(247, 198, 0, 0.21), rgba(247, 198, 0, 0.18), rgba(247, 198, 0, 0), var(--xgn-navy));
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
  }

  .btn-style:hover::before {
    opacity: 1;
  }

  .btn-style:hover {
    color: var(--xgn-gold);
  }

  .btn-primary {
    background: var(--xgn-gradient-gold);
    color: var(--xgn-navy);
    border: none;
  }

  .gr-shape {
    width: 334px;
    height: 334px;
    border-radius: 334px;
    background: rgba(247, 198, 0, 0.24);
    filter: blur(278px);
    margin: 0 auto 100px;
  }

  .gradient-text,
  .section-tag,
  .text-xgold,
  .gradient-text-cyan,
  .text-xcyan {
    background: var(--xgn-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .text-primary {
    color: var(--xgn-white) !important;
  }

  .text-primary\/50 {
    color: rgba(255, 255, 255, 0.55) !important;
  }

  .text-primary\/40 {
    color: rgba(255, 255, 255, 0.45) !important;
  }

  .text-primary\/30 {
    color: rgba(255, 255, 255, 0.35) !important;
  }

  .font-orbitron {
    font-family: "Chakra Petch", sans-serif;
  }

  .font-rajdhani {
    font-family: "Manrope", sans-serif;
  }

  .font-inter {
    font-family: "Inter", sans-serif;
  }

  .xgn-card,
  .news-card {
    background: rgba(7, 20, 58, 0.82);
    border: 1px solid rgba(247, 198, 0, 0.22);
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  }

  .xgn-label {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    font-weight: 600;
  }

  .xgn-input {
    width: 100%;
    background: var(--xgn-navy);
    color: var(--xgn-white);
    border: 1px solid rgba(247, 198, 0, 0.28);
    border-radius: 10px;
    padding: 12px 14px;
  }

  .xgn-input:focus {
    outline: none;
    border-color: var(--xgn-gold);
    box-shadow: 0 0 0 3px rgba(247, 198, 0, 0.12);
  }

  .card-header-bar,
  .highlight-bar {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--xgn-gold), var(--xgn-royal));
    border-radius: 999px;
  }

  /*****************************************************/
  /******************   Header Area   ******************/
  /*****************************************************/

  .header-top-area {
    border-bottom: 1px solid rgba(210, 210, 210, 0.17);
  }

  .copy-right-list,
  .header-top-area ul {
    display: flex;
  }

  .header-top-area ul {
    padding: 15px 100px;
  }

  .copy-right-list li,
  .header-top-area ul li {
    padding: 0 10px;
    border-left: 1px solid var(--xgn-grey);
  }

  .copy-right-list li:first-child,
  .header-top-area ul li:first-child {
    padding-left: 0;
    border-left: none;
  }

  .right-top-header {
    justify-content: flex-end;
  }

  .footer-list ul li a,
  .copy-right-list li a,
  .header-top-area ul li,
  .header-top-area ul li a {
    color: var(--xgn-grey);
    font-size: 16px;
  }

  .footer-list li a:hover,
  .copy-right-list li a:hover,
  .header-top-area ul li a:hover,
  .header-top-area ul li span {
    background: var(--xgn-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .header-bottom-area {
    padding: 15px 100px;
    position: relative;
  }

  .header-bottom-area::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 100%;
    background: url(../images/menu-vector.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .header-btns {
    display: flex;
    justify-content: flex-end;
  }

  .header-btns a img {
    height: 42px;
  }

  .header-logo a img,
  .footer-logo a img {
    height: 70px;
    width: 70px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(247, 198, 0, 0.35));
  }

  .main-menu-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .main-menu-area ul li a {
    font-weight: 600;
    font-size: 16px;
    line-height: 28px;
    color: #E9E9E9;
    padding: 20px;
    font-family: "Manrope", sans-serif;
  }

  .main-menu-area ul li a.active,
  .main-menu-area ul li a:hover {
    background: radial-gradient(rgba(247, 198, 0, 0.21), rgba(247, 198, 0, 0.18), rgba(247, 198, 0, 0), var(--xgn-navy));
  }

  .right-top-header li a {
    font-family: "Poppins", sans-serif;
  }

  /*****************************************************/
  /******************   Banner Area   ******************/
  /*****************************************************/

  .banner-area {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }

  .banner-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 25%, rgba(247, 198, 0, 0.16), transparent 30%), linear-gradient(120deg, rgba(5, 10, 31, 0.9), rgba(17, 30, 117, 0.62));
    z-index: -1;
  }

  .banner-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 30%;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, var(--xgn-navy), rgba(5, 10, 31, 0));
    z-index: -1;
  }

  .banner-area ul {
    display: flex;
    justify-content: center;
  }

  .banner-area ul li {
    padding: 0 10px;
    border-left: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: linear-gradient(to bottom, var(--xgn-gold), var(--xgn-gold-light));
  }

  .banner-area ul li:first-child {
    padding-left: 0;
    border-left: none;
  }

  .banner-area ul li a {
    background-image: linear-gradient(to right, var(--xgn-gold), var(--xgn-gold-light));
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 16px;
  }

  .banner-area ul li a:hover {
    background-image: linear-gradient(to left, var(--xgn-gold), var(--xgn-gold-light));
  }

  .banner-area h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 72px;
    text-align: center;
    margin: 25px 0;
  }

  .banner-area h1 img {
    width: 134px;
    margin-top: -10px;
  }

  .banner-area p {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
  }

  .banner-content-area {
    width: 70%;
    margin: auto;
  }

  .banner-btns {
    margin: 25px 0 50px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 0 60px;
    background: radial-gradient(circle at top right, rgba(247, 198, 0, 0.18), transparent 30%), linear-gradient(135deg, var(--xgn-navy), var(--xgn-blue));
  }

  /*****************************************************/
  /*****************   About Area   ********************/
  /*****************************************************/

  .about-us-area {
    margin: 120px 0;
  }

  .about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .about-images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .about-img-1 {
    margin-top: 100px;
  }

  .hidden-text {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: 100%;
    text-transform: uppercase;
    opacity: 0.1;
    margin-left: -50px;
    margin-top: -90px;
    margin-bottom: -12px;
    color: rgba(255, 255, 255, 0.3);
  }

  .about-content {
    margin-left: 50px;
    margin-top: 90px;
  }

  .join-us-right h3,
  .all-hero-area h3,
  .about-content h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    margin-bottom: 25px;
  }

  .join-us-right p,
  .about-content p {
    margin-bottom: 25px;
    font-weight: 400;
    font-size: 16px;
    color: var(--xgn-grey);
  }

  .join-us-right .hidden-text,
  .testimonial-title .hidden-text,
  .about-content .hidden-text {
    color: var(--xgn-white);
  }

  /*****************************************************/
  /*****************   Hero Area   *********************/
  /*****************************************************/

  .all-hero-area {
    padding: 250px 0 120px;
  }

  .all-hero-area h3 {
    margin-bottom: 0;
  }

  .hero-area-btn {
    text-align: right;
  }

  .hero-area-btn a {
    font-weight: 700;
    font-size: 18px;
    background-image: linear-gradient(to right, var(--xgn-gold), var(--xgn-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    border-bottom: 1px solid transparent;
    border-image-source: linear-gradient(to right, var(--xgn-gold), var(--xgn-gold-light));
    border-image-slice: 1;
    display: inline-block;
    text-decoration: none;
  }

  /*****************************************************/
  /*****************   Player Area   *******************/
  /*****************************************************/

  .single-player-heading h3 {
    font-weight: 700;
    font-size: 14px;
    background-image: linear-gradient(to right, var(--xgn-gold), var(--xgn-gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
  }

  .single-player-content img {
    height: 35px;
    width: auto;
    object-fit: contain;
    margin: 15px 0;
  }

  .single-player-content p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 20px;
  }

  .single-player {
    padding: 50px 32px;
    display: flex;
    position: relative;
    align-items: center;
  }

  .single-player::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(217, 217, 217, 0.1);
    clip-path: polygon(0% 0%, 96% 0%, 100% 10%, 100% 100%, 5% 100%, 0% 91%);
    z-index: -1;
  }

  .single-player-img,
  .single-player-content {
    width: 50%;
  }

  .single-player-img img {
    height: 450px;
    width: 100%;
    object-fit: contain;
    margin-top: -170px;
  }

  .single-player.single-player-2,
  .single-player.single-player-3 {
    padding: 20px 32px;
  }

  .single-player.single-player-2 {
    margin-bottom: 33px;
  }

  .single-player-2 .single-player-img img {
    height: 240px;
    margin-top: -128px;
    margin-bottom: -55px;
  }

  .single-player-3 .single-player-img img {
    height: 190px;
    margin-top: -32px;
    margin-bottom: -20px;
  }

  .all-players-area {
    margin-bottom: 340px;
  }

  /*****************************************************/
  /*****************   Join Us Area   ******************/
  /*****************************************************/

  .join-us-content {
    display: flex;
    align-items: center;
    gap: 50px;
    padding-right: 40px;
  }

  .join-us-left,
  .join-us-right {
    width: 50%;
  }

  .join-us-left {
    text-align: center;
  }

  .join-us-left img {
    height: 650px;
    width: auto;
    object-fit: contain;
    margin-top: -130px;
  }

  .join-us-right a img {
    height: 40px;
    object-fit: contain;
  }

  .join-us-right .btn-style {
    padding: 10px 45px;
  }

  /*****************************************************/
  /****************  Testimonial Area   ****************/
  /*****************************************************/

  .testimonial-title {
    text-align: center;
    margin-bottom: 120px;
  }

  .testimonial-title .hidden-text {
    margin-left: -150px;
  }

  .testimonial-title h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
  }

  .testimonial-slider-img img {
    width: 120px !important;
    height: 120px !important;
    margin: auto;
    margin-top: -110px;
    margin-bottom: 50px;
  }

  .single-slider-item {
    padding: 50px 100px;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 75px;
  }

  .single-slider-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: var(--xgn-dark-blue);
    clip-path: polygon(97% 0, 100% 18%, 100% 100%, 4% 100%, 0 85%, 0 0);
    z-index: -1;
  }

  .single-slider-item p {
    font-size: 16px;
    line-height: 26px;
    color: var(--xgn-grey);
  }

  .bottom-item p {
    color: var(--xgn-white);
    margin-top: 20px;
  }

  .bottom-item p span {
    color: #858585;
  }

  .testimonial-slider .owl-dots {
    margin-top: 50px !important;
  }

  .testimonial-slider .owl-dots .owl-dot.active span,
  .testimonial-slider .owl-dots .owl-dot:hover span {
    background: var(--xgn-gradient-gold);
  }

  /*****************************************************/
  /*******************   Team Area   *******************/
  /*****************************************************/

  .our-team-area {
    padding: 200px 0;
    position: relative;
  }

  .our-team-area::after {
    content: "";
    position: absolute;
    width: 334px;
    height: 334px;
    border-radius: 334px;
    background: rgba(247, 198, 0, 0.24);
    filter: blur(278px);
    top: 32%;
    left: 39%;
    z-index: -1;
  }

  .single-team-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .single-team-img img {
    height: 150px;
  }

  .single-team-content h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 24px;
  }

  .single-team-content p,
  .single-team-content h2 span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #7C7C7C;
  }

  .single-team-content p {
    padding: 10px 0;
  }

  .single-team-content .social-icons {
    justify-content: start;
  }

  .our-team-area .about-content {
    margin-right: 70px;
  }

  .team-item .single-team-item:nth-child(odd) {
    margin-right: -80px;
    margin-left: 80px;
  }

  /*****************************************************/
  /*****************   Footer Area   *******************/
  /*****************************************************/

  .footer-top {
    padding: 200px 0 50px;
  }

  .footer-list h2 {
    font-size: 20px;
    font-family: "Chakra Petch", sans-serif;
    text-transform: uppercase;
    font-weight: 700;
  }

  .footer-btm {
    padding: 45px 0;
    border-top: 1px solid var(--xgn-border);
  }

  .footer-logo a img {
    height: 100px;
    width: 100px;
  }

  .footer-list ul li a {
    margin-top: 20px;
    color: var(--xgn-muted);
  }

  .footer-list ul li a:hover {
    background: var(--xgn-gradient-gold);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .footer-left-content p {
    font-size: 16px;
    margin-right: 30px;
    margin-top: 30px;
    color: var(--xgn-grey);
  }

  .copy-right-list li a,
  .copyright-text p {
    font-family: "Sora", sans-serif;
    color: var(--xgn-muted);
  }

  .social-icons {
    display: flex;
    justify-content: flex-end;
  }

  .social-icons li a {
    border: 1px solid #1D2B59;
    padding: 7px;
    margin-right: 10px;
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
  }

  .social-icons li a:hover {
    border-color: var(--xgn-white);
  }

  .social-icons li a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
  }

  /*****************************************************/
  /************ XGN tournament/event system ************/
  /*****************************************************/
  .xgn-events-list {
    margin-top: 90px;
  }

  .event-card-link,
  .event-card-link:hover {
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .event-card {
    overflow: hidden;
    background: rgba(7, 20, 58, .88);
    border: 1px solid rgba(247, 198, 0, .22);
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  }

  .event-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 198, 0, .55);
    box-shadow: 0 26px 80px rgba(247, 198, 0, .12);
  }

  .event-card-img {
    min-height: 230px;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  .event-card-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 10, 31, .95), rgba(5, 10, 31, .15));
  }

  .event-card-content {
    padding: 28px;
  }

  .event-card-top,
  .event-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
  }

  .event-card-top span,
  .event-badges span {
    background: linear-gradient(90deg, rgba(247, 198, 0, .16), rgba(36, 55, 217, .16));
    border: 1px solid rgba(247, 198, 0, .26);
    color: #FFDD45;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 7px 12px;
  }

  .event-card h3,
  .event-detail-box h1,
  .event-info-panel h3,
  .event-detail-area h3 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
  }

  .event-card h3 {
    font-size: 28px;
    line-height: 38px;
    margin-bottom: 14px;
  }

  .event-card p {
    color: #D2D2D2;
    margin-bottom: 20px;
  }

  .event-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0 26px;
  }

  .event-meta-grid div {
    background: rgba(5, 10, 31, .74);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 14px;
  }

  .event-meta-grid strong,
  .event-meta-grid small {
    display: block;
  }

  .event-meta-grid strong {
    color: #FFDD45;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .event-meta-grid small {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
  }

  .event-view-btn {
    pointer-events: none;
  }

  .event-detail-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    background-position: center;
    background-size: cover;
    position: relative;
  }

  .event-detail-box {
    max-width: 850px;
    padding: 90px 0 60px;
  }

  .event-detail-box h1 {
    font-size: 56px;
    line-height: 68px;
    margin-bottom: 22px;
  }

  .event-detail-box p {
    color: #D2D2D2;
    font-size: 17px;
    line-height: 30px;
    max-width: 760px;
  }

  .event-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
  }

  .event-secondary-btn {
    color: #FFDD45;
    border: 1px solid rgba(247, 198, 0, .35);
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 700;
  }

  .event-secondary-btn:hover {
    color: #050A1F;
    background: linear-gradient(90deg, #F7C600, #FFDD45);
  }

  .event-detail-area {
    padding: 90px 0;
  }

  .event-info-panel {
    background: rgba(7, 20, 58, .92);
    border: 1px solid rgba(247, 198, 0, .25);
    border-radius: 22px;
    padding: 28px;
    position: sticky;
    top: 30px;
  }

  .event-info-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .event-info-row:last-child {
    border-bottom: 0;
  }

  .event-info-row span {
    color: #BABABA;
  }

  .event-info-row strong {
    color: #FFDD45;
    text-align: right;
  }

  .event-list {
    margin-top: 18px;
  }

  .event-list li {
    list-style: none;
    color: #D2D2D2;
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
  }

  .event-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(90deg, #F7C600, #FFDD45);
    position: absolute;
    top: 7px;
    left: 0;
    box-shadow: 0 0 18px rgba(247, 198, 0, .55);
  }

  .table-dark {
    --bs-table-bg: var(--xgn-dark-blue);
    --bs-table-striped-bg: #0B1C4D;
    --bs-table-border-color: rgba(247, 198, 0, .18);
  }

  @media (max-width: 767px) {
    .event-detail-box h1 {
      font-size: 40px;
      line-height: 50px;
    }

    .event-meta-grid {
      grid-template-columns: 1fr;
    }

    .event-detail-hero {
      min-height: auto;
    }
  }

  /*****************************************************/
  /************ XGN Tournament Players Layout ***********/
  /*****************************************************/
  .tournament-players-area {
    padding: 40px 0 120px;
  }

  .xgn-players-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 35px;
  }

  .xgn-players-heading h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 45px;
    text-transform: uppercase;
    margin: 0;
  }

  .xgn-players-heading p {
    color: #D2D2D2;
    max-width: 650px;
    margin-top: 10px;
  }

  .xgn-participant-grid {
    display: grid;
    gap: 26px;
  }

  .xgn-participant-grid.solo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xgn-participant-grid.duo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xgn-participant-grid.squad-grid {
    grid-template-columns: 1fr;
  }

  .xgn-team-card {
    background: rgba(7, 20, 58, .82);
    border: 1px solid rgba(247, 198, 0, .22);
    box-shadow: 0 22px 60px rgba(0, 0, 0, .35);
    padding: 18px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 0, 94% 0, 100% 8%, 100% 100%, 4% 100%, 0 94%);
  }

  .xgn-team-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(247, 198, 0, .13), transparent 32%), radial-gradient(circle at bottom left, rgba(36, 55, 217, .18), transparent 36%);
    pointer-events: none;
  }

  .xgn-team-title {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .xgn-team-title h4 {
    font-family: "Oswald", sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    margin: 0;
  }

  .xgn-team-title span {
    color: #F7C600;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .xgn-team-players {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 18px;
  }

  .duo-grid .xgn-team-players {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .squad-grid .xgn-team-players {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xgn-player-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    overflow: hidden;
    clip-path: polygon(0 0, 90% 0, 100% 10%, 100% 100%, 10% 100%, 0 90%);
  }

  .xgn-player-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
  }

  .xgn-player-info {
    padding: 20px 18px 22px;
    min-height: 145px;
  }

  .xgn-player-info h4 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 4px;
    color: #fff;
  }

  .xgn-player-info .xgn-player-tag {
    color: rgba(247, 198, 0, .88);
    display: block;
    margin-bottom: 8px;
  }

  .xgn-player-info p {
    color: rgba(255, 255, 255, .55);
    margin-bottom: 14px;
  }

  .xgn-player-socials {
    display: flex;
    gap: 10px;
  }

  .xgn-player-socials a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(247, 198, 0, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .25s ease-in-out;
  }

  .xgn-player-socials a:hover {
    background: linear-gradient(90deg, #F7C600, #FFDD45);
    color: #050A1F;
  }

  .xgn-empty-players {
    background: rgba(7, 20, 58, .82);
    border: 1px dashed rgba(247, 198, 0, .35);
    padding: 35px;
    text-align: center;
    color: #D2D2D2;
  }

  .xgn-player-fields {
    border: 1px solid rgba(247, 198, 0, .18);
    background: rgba(5, 10, 31, .45);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 18px;
  }

  .xgn-player-fields h4 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    color: #F7C600;
    margin-bottom: 15px;
  }

  @media (max-width: 1199px) {
    .xgn-participant-grid.solo-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xgn-participant-grid.duo-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .squad-grid .xgn-team-players {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .xgn-players-heading {
      display: block;
    }

    .xgn-participant-grid.solo-grid,
    .xgn-participant-grid.duo-grid {
      grid-template-columns: 1fr;
    }

    .duo-grid .xgn-team-players,
    .squad-grid .xgn-team-players {
      grid-template-columns: 1fr;
    }

    .xgn-player-card img {
      height: 260px;
    }
  }

  /* XGN admin/content/tournament upgrade styles */
  .admin-panel-nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .admin-form-title {
    font-family: "Oswald", sans-serif;
    font-size: 22px;
    margin: 28px 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(247, 198, 0, .22);
    color: #F7C600;
  }

  .code-textarea {
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
    line-height: 1.55;
  }

  .xgn-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 22px;
    color: rgba(255, 255, 255, .78);
    font-weight: 700;
  }

  .xgn-checkbox input {
    accent-color: #F7C600;
    width: 18px;
    height: 18px;
  }

  .event-info-panel .event-secondary-btn {
    display: inline-block;
    margin-right: 8px;
  }

  .table-dark a {
    color: #F7C600;
  }

  .table-dark a:hover {
    color: #FFDD45;
  }

  /* XGN Admin Panel - separate dashboard pages */
  .xgn-admin-body,
  .xgn-admin-login-body {
    background: #f3f5fb;
    color: #07143A;
    min-height: 100vh;
  }

  .xgn-admin-login-body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: radial-gradient(circle at top right, rgba(247, 198, 0, .18), transparent 35%), linear-gradient(135deg, #050A1F, #111E75);
  }

  .xgn-admin-login-card {
    width: min(420px, 100%);
    background: var(--xgn-dark-blue);
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    text-align: center;
  }

  .xgn-admin-login-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 12px;
  }

  .xgn-admin-login-card h1 {
    font-family: "Oswald", sans-serif;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .xgn-admin-login-card p {
    color: #667085;
    margin-bottom: 24px;
  }

  .xgn-admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 280px;
    background: #050A1F;
    color: #fff;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    border-right: 1px solid rgba(247, 198, 0, .18);
  }

  .xgn-admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .xgn-admin-brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(247, 198, 0, .35));
  }

  .xgn-admin-brand strong {
    display: block;
    font-size: 18px;
    color: #fff;
  }

  .xgn-admin-brand span {
    color: rgba(255, 255, 255, .55);
    font-size: 13px;
  }

  .xgn-admin-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 26px 0;
  }

  .xgn-admin-nav a,
  .xgn-admin-sidebar-footer a {
    color: rgba(255, 255, 255, .68);
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    transition: .2s ease;
  }

  .xgn-admin-nav a:hover,
  .xgn-admin-nav a.active {
    color: #050A1F;
    background: linear-gradient(90deg, #F7C600, #FFDD45);
  }

  .xgn-admin-sidebar-footer {
    margin-top: auto;
    display: grid;
    gap: 8px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 16px;
  }

  .xgn-admin-main {
    margin-left: 280px;
    padding: 28px;
    min-height: 100vh;
  }

  .xgn-admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    background: #fff;
    border-radius: 20px;
    padding: 22px 26px;
    box-shadow: 0 10px 35px rgba(16, 24, 40, .06);
  }

  .xgn-admin-topbar small {
    color: #667085;
    font-weight: 700;
  }

  .xgn-admin-topbar h1 {
    font-family: "Oswald", sans-serif;
    font-size: 34px;
    font-weight: 800;
    margin-top: 4px;
  }

  .xgn-admin-toplink,
  .xgn-admin-btn {
    background: linear-gradient(90deg, #F7C600, #FFDD45);
    color: #050A1F !important;
    border: 0;
    border-radius: 12px;
    padding: 11px 18px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
  }

  .xgn-admin-grid {
    display: grid;
    gap: 18px;
  }

  .xgn-admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 24px;
  }

  .xgn-admin-card,
  .xgn-admin-panel {
    background: #fff;
    border: 1px solid #e5e7ef;
    border-radius: 22px;
    box-shadow: 0 10px 35px rgba(16, 24, 40, .06);
  }

  .xgn-admin-card {
    padding: 22px;
  }

  .xgn-admin-card span,
  .xgn-admin-muted,
  .xgn-admin-panel p {
    color: #667085;
  }

  .xgn-admin-card strong {
    display: block;
    font-size: 36px;
    line-height: 1;
    margin: 12px 0;
    color: #07143A;
  }

  .xgn-admin-card a,
  .xgn-admin-panel-head a,
  .xgn-admin-actions-cell a {
    color: #111E75;
    font-weight: 800;
  }

  .xgn-admin-two-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .xgn-admin-panel {
    padding: 24px;
    margin-bottom: 24px;
  }

  .xgn-admin-panel-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
  }

  .xgn-admin-panel-head h2,
  .xgn-admin-section-title {
    font-family: "Oswald", sans-serif;
    color: #07143A;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .xgn-admin-actions {
    display: grid;
    gap: 12px;
  }

  .xgn-admin-actions a {
    background: #f4f6ff;
    color: #111E75;
    border: 1px solid #dfe5ff;
    border-radius: 14px;
    padding: 14px;
    font-weight: 800;
  }

  .xgn-admin-table {
    width: 100%;
    border-collapse: collapse;
  }

  .xgn-admin-table th,
  .xgn-admin-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #edf0f7;
    color: #07143A;
    vertical-align: top;
  }

  .xgn-admin-table th {
    color: #667085;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .04em;
  }

  .xgn-admin-table small {
    color: #667085;
  }

  .xgn-admin-badge {
    display: inline-flex;
    background: #eef2ff;
    color: #111E75;
    border-radius: 999px;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 12px;
  }

  .xgn-admin-good {
    color: #078b4f;
    font-weight: 800;
  }

  .xgn-admin-actions-cell {
    white-space: nowrap;
  }

  .xgn-admin-actions-cell a,
  .xgn-admin-table a {
    margin-right: 10px;
  }

  .xgn-admin-actions-cell a.danger,
  .xgn-admin-table a.danger {
    color: #d92d20;
  }

  .xgn-admin-filter {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
  }

  .xgn-code-area {
    font-family: Consolas, Monaco, monospace;
    font-size: 13px;
  }

  .xgn-admin-settings-list {
    display: grid;
    gap: 12px;
  }

  .xgn-admin-settings-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    background: #f6f8ff;
    border-radius: 14px;
    padding: 14px 16px;
  }

  .xgn-admin-settings-list span {
    color: #667085;
    font-weight: 700;
  }

  .xgn-admin-settings-list strong {
    color: #07143A;
  }

  .xgn-event-builder hr {
    border-color: #e5e7ef;
  }

  @media (max-width: 991px) {
    .xgn-admin-sidebar {
      position: static;
      width: 100%;
    }

    .xgn-admin-main {
      margin-left: 0;
      padding: 16px;
    }

    .xgn-admin-stats,
    .xgn-admin-two-col {
      grid-template-columns: 1fr;
    }

    .xgn-admin-topbar,
    .xgn-admin-panel-head,
    .xgn-admin-filter {
      flex-direction: column;
      align-items: stretch;
    }
  }

  /* Admin repeatable JSON builders */
  .xgn-repeater-list {
    display: grid;
    gap: 16px;
  }

  .xgn-repeater-item {
    background: #f8faff;
    border: 1px solid #e1e7ff;
    border-radius: 18px;
    padding: 18px;
  }

  .xgn-repeater-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
  }

  .xgn-repeater-head strong {
    color: #07143A;
    font-family: "Oswald", sans-serif;
    font-size: 20px;
    text-transform: uppercase;
  }

  .xgn-admin-small-danger {
    background: #fff1f0;
    color: #d92d20;
    border: 1px solid #ffd3cd;
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 800;
  }

  .xgn-admin-savebar {
    position: sticky;
    bottom: 0;
    background: rgba(255, 255, 255, .92);
    border: 1px solid #e5e7ef;
    border-radius: 18px 18px 0 0;
    padding: 16px;
    display: flex;
    justify-content: flex-end;
    box-shadow: 0 -10px 30px rgba(16, 24, 40, .08);
    z-index: 20;
  }

  /* XGN Phase 1-7 platform upgrade styles */
  .xgn-section {
    padding: 90px 0;
    position: relative;
  }

  .xgn-page-subtitle {
    max-width: 760px;
    margin-top: 18px;
    color: var(--xgn-muted, #BABABA);
    font-size: 17px;
    line-height: 1.8;
  }

  .xgn-grid {
    display: grid;
    gap: 24px;
  }

  .xgn-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xgn-card {
    padding: 28px;
    overflow: hidden;
  }

  .xgn-card h3,
  .xgn-profile-card h3,
  .news-card h3 {
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    margin: 14px 0 12px;
    text-transform: uppercase;
  }

  .xgn-card p,
  .xgn-profile-card p,
  .news-card p,
  .xgn-detail-card p {
    color: var(--xgn-grey, #D2D2D2);
    line-height: 1.8;
  }

  .xgn-card-img,
  .xgn-detail-banner {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(247, 198, 0, .18);
  }

  .xgn-detail-banner {
    height: 360px;
  }

  .xgn-profile-card {
    text-align: left;
  }

  .xgn-profile-card>img {
    width: 115px;
    height: 115px;
    object-fit: contain;
    padding: 10px;
    border: 1px solid rgba(247, 198, 0, .26);
    border-radius: 22px;
    background: rgba(5, 10, 31, .65);
    box-shadow: 0 0 30px rgba(247, 198, 0, .16);
  }

  .xgn-profile-card small {
    color: var(--xgn-gold, #F7C600);
    font-size: 14px;
  }

  .xgn-profile-card strong {
    display: block;
    color: #fff;
    margin-bottom: 12px;
  }

  .xgn-social-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
  }

  .xgn-social-row a {
    color: var(--xgn-gold, #F7C600);
    border: 1px solid rgba(247, 198, 0, .24);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .xgn-table-card {
    padding: 0;
    overflow-x: auto;
  }

  .xgn-public-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
  }

  .xgn-public-table th,
  .xgn-public-table td {
    padding: 18px 20px;
    border-bottom: 1px solid rgba(247, 198, 0, .16);
    color: var(--xgn-grey, #D2D2D2);
  }

  .xgn-public-table th {
    color: #fff;
    background: rgba(5, 10, 31, .7);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .08em;
  }

  .xgn-public-table strong {
    color: var(--xgn-gold, #F7C600);
  }

  .xgn-home-upgrades .hidden-text,
  .xgn-section .hidden-text {
    margin-left: 0;
    margin-top: 0;
    margin-bottom: -8px;
  }

  .xgn-admin-grid.xgn-admin-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  @media (max-width: 991px) {

    .xgn-grid-3,
    .xgn-admin-grid.xgn-admin-stats {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 575px) {

    .xgn-grid-3,
    .xgn-admin-grid.xgn-admin-stats {
      grid-template-columns: 1fr;
    }

    .xgn-detail-banner {
      height: 220px;
    }
  }