/* 
*  CSS TABLE OF CONTENTS
*   
*  1.0 - Common Styles
*    1.1 - Form Input Color
*    1.2 - Padding Classes
*    1.3 - Background Colors
*    1.4 - Border Classes
*    1.5 - Margin Classes
*    1.6 - Transition Effect
*    1.7 - Scrollbar Style
*    1.8 - Preloader
*    1.9 - Custom Cursor
*    1.10 - Default Button
*    1.11 - Section Heading
*    1.12 - Check List
*  2.0 - Page Header
*  3.0 - Team Details
*  4.0 - Scroll Up
*/

/*** 1.0 - Common Styles ***/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600;700&display=swap');

body {
    background-image: url(../img/body-bg.png);
    background-repeat: repeat;
    background-position: center 0;
    background-blend-mode: multiply;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    line-height: 27px;
    color: #ddd;
    font-weight: 400;
    letter-spacing: -0.2px;
    position: relative;
    overflow-x: hidden;
}

* {
    padding: 0;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #fff;
}

h1 {
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    margin: 0 0 10px;
    color: #fff;
}

h2 {
    font-size: 32px;
    line-height: 42px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px;
}

h3, h4 {
    margin: 0 0 10px;
    font-weight: 500;
    line-height: 1.7;
    color: #fff;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 20px;
}

h4 {
    font-size: 16px;
}

h5, h6 {
    font-size: 14px;
    margin: 0 0 10px;
}

p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 15px;
}

a {
    color: #fff;
}

a, a:hover {
    text-decoration: none;
}

a:hover {
    color: #ffd200;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

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

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*** 1.1 - Form Input Color ***/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ccc !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #ccc !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #ccc !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ccc !important;
}

button {
    border: none;
    background: none;
}

/*** 1.2 - Padding Classes ***/
.padding {
    padding: 100px 0;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-30 {
    padding-bottom: 30px;
}

.no-padding {
    padding: 0;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

/*** 1.3 - Background Colors  ***/
.bg-white {
    background-color: #fff;
}

.bg-grey {
    background-color: #fafafa;
}

.bg-gradiant {
    background-image: linear-gradient(to right top, #ffd240, #150e3c, #200e43, #2b0d49, #370a4e);
}

.bg-dark {
    background-color: #111 !important;
}

/*** 1.4 - Border Classes  ***/
.bd-top {
    border-top: 1px solid #eee;
}

.bd-bottom {
    border-bottom: 1px solid #eee;
}

.bd-left {
    border-left: 1px solid #eee;
}

.bd-right {
    border-right: 1px solid #eee;
}

/*** 1.5 - Margin Classes  ***/
.mt-10 {
    margin-top: 10px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-35 {
    margin-top: 35px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-35 {
    margin-bottom: 35px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-45 {
    margin-bottom: 45px;
}

.mb-50 {
    margin-bottom: 50px;
}

.ml-40 {
    margin-left: 40px;
}

/*** 1.6 - Transition Effect  ***/
a, a:hover, img, .form-control, .form-control:hover, button {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

/*** 1.7 - Scrollbar Style  ***/
::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0.05);
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ffd200;
}

::selection {
    background-color: #ffd200;
    color: #fff
}

-webkit-::selection {
    background-color: #ffd200;
    color: #fff
}

::-moz-selection {
    background-color: #ffd200;
    color: #fff
}

/*** 1.8 - Preloader  ***/
.loaded .site-preloader {
    opacity: 0;
    visibility: hidden;
}

.site-preloader {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0;
}

.site-preloader .spinner {
    background-color: #ffd200;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*** 1.9 - Custom Cursor  ***/
.dl-cursor {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: fixed;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none;
    transform: translate(50%, 50%);
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all .3s cubic-bezier(.165, .84, .44, 1);
    transition: all .3s cubic-bezier(.165, .84, .44, 1);
}

.dl-cursor:before {
    background: #ffd200;
    opacity: 0.5;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
}

.dl-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
}

.dl-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
}

.dl-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
}

/*** 1.10 - Default Button  ***/
.btn-group {
    align-items: center;
    gap: 20px;
}

.btn-group a {
    margin: 5px;
}

.btn-group-left a {
    margin-right: 10px;
}

.default-btn {
    background: #ffd200;
    background-image: linear-gradient(to right bottom, #ffd200, #ffd200, #ffd200, #ffd200, ##31343f, ##31343f, ##31343f, ##31343f, #dc6976, #dc6976, #dc6976, #dc6976);
    clip-path: polygon(0% 0%, 90% 0, 100% 30%, 100% 100%, 0 100%);
    color: #fff;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: center;
    text-transform: capitalize;
    display: inline-block;
    position: relative;
    min-width: 180px;
    height: 50px;
    line-height: 50px;
    padding: 0 40px;
    border-radius: 2px;
    white-space: nowrap;
    overflow: hidden;
    transition: all ease 700ms;
    -moz-transition: all ease 700ms;
    -webkit-transition: all ease 700ms;
    -ms-transition: all ease 700ms;
    -o-transition: all ease 700ms;
    z-index: 1;
}

.hero-section .default-btn {
    clip-path: polygon(0% 0%, 100% 0, 100% 0, 100% 100%, 0 100%);
}

.default-btn:hover {
    color: #fff;
}

.default-btn span {
    background: #ffd200 none repeat scroll 0 0;
    border-radius: 50%;
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -moz-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -webkit-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -ms-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    -o-transition: width 0.6s ease 0s, height 0.6s ease 0s;
    z-index: -1;
}

.default-btn:hover span {
    height: 550px;
    width: 550px;
}

/*** 1.11 - Section Heading  ***/
.section-heading-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-heading h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
}

.section-heading h2 {
    font-size: 45px;
    line-height: 50px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.section-heading h2 span {
    color: #ffd200;
}

.section-heading h3 span {
    color: #ffd200;
}

.section-heading p {
    margin-bottom: 0;
}

/*** 1.12 - Check List  ***/
.check-list li {
    display: flex;
    align-items: center;
}

.check-list li i {
    font-size: 12px;
    color: #00c16e;
    margin-right: 10px;
}

/*** 2.0 - Page Header  ***/
.page-header {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header.single {
    height: 550px;
}

.page-header.error404 {
    height: 600px;
}

.page-header.match {
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    padding: 100px 0;
}

.match-grid {
    display: grid;
    grid-template-columns: 5fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-template-rows: auto;
    overflow-x: scroll;
    background-color: rgba(0, 0, 0, 0.2);
    font: 400 14px/1.5 "Roboto", sans-serif;
    grid-gap: 15px;
}

.match-grid p.match-grid-item {
    margin-bottom: 0;
    border-bottom: 1px solid black;
    box-sizing: border-box;
    width: 100%;
    white-space: nowrap; /* Ensure text doesn't wrap */
    text-overflow: ellipsis; /* Show ellipsis for long text */
}

.bold-text {
    font-weight: bold;
  }

.match-grid p.match-grid-item:nth-child(7n) {
    border-right: none;
  }

.match-hub {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
}

.match-hero,
.match-tabs-block,
.match-team-card,
.match-overall-card {
    border: 1px solid rgba(255, 210, 0, 0.16);
    background:
        radial-gradient(circle at top, rgba(255, 210, 0, 0.12), transparent 42%),
        linear-gradient(180deg, rgba(26, 29, 37, 0.96), rgba(10, 11, 16, 0.98));
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
    min-width: 0;
}

.match-hero {
    overflow: hidden;
    position: relative;
    padding: 36px;
    border-radius: 28px;
}

.match-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 210, 0, 0.12), transparent 30%),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 12px
        );
    pointer-events: none;
}

.match-hero__eyebrow,
.match-summary-grid,
.match-map-strip,
.match-tabs,
.match-panel__meta,
.match-demo-list,
.match-overall-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.match-tag,
.match-panel__badge,
.match-demo-link,
.match-map-chip {
    border: 1px solid rgba(255, 210, 0, 0.18);
    background: rgba(255, 255, 255, 0.04);
}

.match-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    color: #e5e7eb;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-hero__board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    margin: 24px 0;
}

.match-team-panel {
    position: relative;
    padding: 24px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.match-team-panel.align-right {
    text-align: right;
}

.match-team-panel__label,
.match-team-card__eyebrow,
.match-panel__eyebrow,
.match-summary-card__label {
    display: block;
    margin-bottom: 8px;
    color: #9ca3af;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.match-team-panel h2,
.match-hero__score,
.match-panel__topline h3,
.match-team-card__header h4,
.match-overall-card strong {
    margin: 0;
    color: #ffffff;
}

.match-team-panel h2 {
    font-size: 34px;
    line-height: 1;
}

.match-team-panel__stat,
.match-hero__caption,
.match-hero__subcaption,
.match-panel__topline p,
.match-overall-card small {
    margin: 0;
    color: #c6cad4;
}

.match-hero__scoreboard {
    position: relative;
    padding: 26px 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 210, 0, 0.28);
    background: linear-gradient(180deg, rgba(255, 210, 0, 0.16), rgba(255, 210, 0, 0.05));
    text-align: center;
}

.match-hero__score {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 0 22px rgba(255, 210, 0, 0.18);
}

.match-hero__score .divider {
    color: rgba(255, 255, 255, 0.72);
}

.match-map-strip {
    margin-bottom: 20px;
}

.match-map-chip,
.match-demo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    border-radius: 14px;
    color: #f8fafc;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.match-map-chip:hover,
.match-map-chip.is-active,
.match-demo-link:hover {
    color: #ffffff;
    border-color: rgba(255, 210, 0, 0.48);
    background: rgba(255, 210, 0, 0.12);
    transform: translateY(-1px);
}

.match-map-chip__name {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #cfd5df;
}

.match-map-chip__score {
    font-size: 15px;
    font-weight: 700;
}

.match-summary-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.match-summary-card,
.match-overall-card {
    padding: 16px 18px;
    border-radius: 18px;
}

.match-summary-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.match-summary-card strong,
.match-overall-card strong {
    display: block;
    font-size: 28px;
    line-height: 1.05;
}

.match-tabs-block {
    padding: 24px;
    border-radius: 28px;
}

.match-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.match-tab-button {
    flex: 0 0 auto;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.match-tab-button:hover,
.match-tab-button.is-active {
    color: #ffffff;
    border-color: rgba(255, 210, 0, 0.42);
    background: linear-gradient(180deg, rgba(255, 210, 0, 0.22), rgba(255, 210, 0, 0.08));
    box-shadow: 0 0 24px rgba(255, 210, 0, 0.12);
}

.match-panel {
    display: none;
    flex-direction: column;
    gap: 22px;
}

.match-panel.is-active {
    display: flex;
}

.match-panel__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.match-map-score {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #f3f4f6;
}

.match-map-score strong {
    font-size: 20px;
}

.match-panel__badge {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    color: #f8fafc;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-overall-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.match-overall-card {
    padding: 18px 20px;
    border-radius: 20px;
}

.match-overall-card span {
    display: block;
    margin-bottom: 6px;
    color: #9ca3af;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.match-team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
}

.match-team-card {
    padding: 18px;
    border-radius: 24px;
    min-width: 0;
}

.match-team-card__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.match-team-card__header span {
    color: #f5d348;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.match-table-shell {
    overflow-x: auto;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(7, 9, 14, 0.76);
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

.match-stats-table {
    width: 100%;
    min-width: 960px;
    border-collapse: separate;
    border-spacing: 0;
    color: #e5e7eb;
}

.match-stats-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    padding: 14px 12px;
    background: rgba(255, 210, 0, 0.1);
    color: #fef3c7;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.match-stats-table tbody td {
    padding: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.015);
    font-size: 14px;
}

.match-stats-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.04);
}

.match-stats-table tbody tr.is-leader td {
    background: rgba(255, 210, 0, 0.06);
}

.match-stats-table .player-cell {
    min-width: 180px;
    font-weight: 600;
}

.match-stats-table .player-cell a,
.match-stats-table .player-cell span {
    color: #ffffff;
}

.match-empty {
    text-align: center;
    color: #94a3b8;
}

@media (max-width: 1199px) {
    .match-hero__board,
    .match-team-grid,
    .match-summary-grid,
    .match-overall-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .page-header.match {
        padding: 80px 0;
    }

    .match-hub,
    .match-hero,
    .match-tabs-block,
    .match-panels,
    .match-panel,
    .match-team-grid,
    .match-team-card,
    .match-overall-info,
    .match-overall-card,
    .match-summary-grid,
    .match-summary-card,
    .match-map-strip,
    .match-panel__topline,
    .match-panel__meta {
        min-width: 0;
        max-width: 100%;
    }

    .match-hero,
    .match-tabs-block {
        padding: 14px;
        border-radius: 20px;
    }

    .match-hero__eyebrow {
        gap: 8px;
    }

    .match-tag {
        padding: 7px 10px;
        font-size: 10px;
    }

    .match-hero__board {
        gap: 12px;
        margin: 18px 0;
    }

    .match-team-panel,
    .match-hero__scoreboard,
    .match-summary-card,
    .match-overall-card,
    .match-team-card {
        padding: 14px;
        border-radius: 16px;
    }

    .match-hero__score {
        font-size: 38px;
    }

    .match-team-panel h2 {
        font-size: 24px;
    }

    .match-team-panel,
    .match-team-panel.align-right {
        text-align: left;
    }

    .match-map-strip,
    .match-summary-grid,
    .match-overall-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        display: grid;
        gap: 10px;
    }

    .match-map-chip,
    .match-demo-link {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
        gap: 8px;
    }

    .match-tabs {
        gap: 8px;
        margin-bottom: 14px;
    }

    .match-tab-button {
        padding: 10px 12px;
        font-size: 11px;
    }

    .match-panel__topline,
    .match-team-card__header {
        flex-direction: column;
        align-items: stretch;
    }

    .match-map-score {
        width: 100%;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .match-map-score strong {
        font-size: 16px;
    }

    .match-panel__badge {
        padding: 8px 10px;
        font-size: 10px;
    }

    .match-team-card__header span,
    .match-overall-card span,
    .match-summary-card__label,
    .match-panel__eyebrow {
        font-size: 10px;
    }

    .match-summary-card strong,
    .match-overall-card strong {
        font-size: 22px;
    }

    .match-stats-table {
        min-width: 720px;
    }

    .match-stats-table thead th,
    .match-stats-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .match-stats-table .player-cell {
        min-width: 130px;
    }
}

@media (max-width: 479px) {
    .match-map-strip,
    .match-summary-grid,
    .match-overall-info {
        grid-template-columns: 1fr;
    }

    .match-hero,
    .match-tabs-block {
        padding: 12px;
    }

    .match-hero__score {
        font-size: 34px;
    }

    .match-team-panel h2 {
        font-size: 22px;
    }

    .match-tab-button {
        font-size: 10px;
        padding: 9px 10px;
    }

    .match-stats-table {
        min-width: 660px;
    }
}

.page-header.about {
    height: 600px;
}

.page-header:before {
    background: linear-gradient(90deg, rgba(225, 210, 0, 0.5) 0%, rgba(225, 210, 0, 1) 50%, rgba(225, 210, 0, 0.5) 100%);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.page-header .page-header-shape .shape {
    background: #ffd200;
    background-image: linear-gradient(to right bottom, #ffd200, #ffd200, #ffd200, #ffd200, ##31343f, ##31343f, ##31343f, ##31343f, #dc6976, #dc6976, #dc6976, #dc6976);
    clip-path: polygon(0 0, 100% 0%, 85% 100%, 0 100%);
    width: 200px;
    height: 60px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.page-header .page-header-shape .shape:before {
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25) 1px, transparent 1px, transparent 6px);
    background-size: 4px 4px;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.page-header .page-header-shape .shape.right {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
    position: absolute;
    left: auto;
    right: 0;
    bottom: 0;
}

.page-header .page-header-shape .shape.center {
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    border-radius: 5px;
}

.page-header .page-header-shape .shape.center.back {
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    width: 400px;
    height: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    opacity: 0.5;
    border-radius: 2px;
    z-index: -1;
}

.page-header-info {
    text-align: center;
}

.page-header-info h4 {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: center;
    color: #ffd200;
    display: inline-block;
}

.page-header-info h2 {
    color: #fff;
    font-size: 46px;
    margin-bottom: 20px;
}

.page-header.single .page-header-info h2 {
    line-height: 52px;
}

.page-header-info h3 {
    color: #ddd;
    margin: 0;
}

.page-header-info a {
    color: #ffd200;
    margin: 0;
}

.page-header-info a:hover {
    color: #ff00b7;
    margin: 0;
}

.page-header-info a.default-btn {
    color: #ddd
}

.page-header-info p {
    color: #ddd;
    margin: 0;
}

.page-header .post-meta {
    margin-top: 20px;
}

/*** 3.0 - Team Details  ***/
.team-details .shape {
    display: none;
}

.team-details .page-header-info {
    margin-top: -50px;
}

.team-details .page-header-info img {
    max-width: 150px;
    margin-bottom: 20px;
}

.team-details .page-header-info h2 {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
}

.team-details .page-header-info h2 span {
    display: block;
    color: #ffd200;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-top: 10px;
}

.player-details .player-thumb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0px 2px 5px 0px rgb(0 0 0 / 20%);
    border: 15px solid rgba(225, 210, 0, 0.3);
    margin: 0 auto;
    margin-bottom: 20px;
    position: relative;
}

.player-details .player-thumb:before {
    border: 7px solid rgba(225, 210, 0, 0.5);
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% + 14px);
    height: calc(100% + 14px);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.player-details .player-thumb img {
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*Overlay*/
.overlay {
    background-color: rgba(147, 65, 255, 0.2);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

/* Ratings */
.rating li {
    display: inline-block;
    color: #FF9529;
    font-size: 14px;
    margin: 0 -2px;
}

/*** 4.0 - Scroll Up  ***/
#scrollup {
    width: 50px;
    height: 50px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    clip-path: polygon(0% 0%, 70% 0, 100% 30%, 100% 100%, 0 100%);
    overflow: hidden;
    z-index: 999;
}

.scroll-to-top {
    background: #ffd200;
    background-image: linear-gradient(to right bottom, #ffd200, #ffd200, #ffd200, #ffd200, ##31343f, ##31343f, ##31343f, ##31343f, #dc6976, #dc6976, #dc6976, #dc6976);
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 20px;
    padding: 0;
    line-height: 50px;
    color: #fff;
    border-radius: 2px;
    outline: none;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}

#scrollup.show {
    opacity: 1;
}

#scrollup.show .scroll-to-top {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

/* max-width 1024px */
@media (max-width: 1024px) {}

/* max-width 992px */
@media (max-width: 992px) {
    .padding {
        padding: 50px 0;
    }

    .sm-padding {
        padding: 15px;
    }

    p br {
        display: none;
    }

    span br {
        display: none;
    }

    .default-btn {
        padding: 0 30px;
    }

    .post-card .post-content h3 {
        font-size: 20px;
        line-height: 26px;
    }
}

/* max-width 768px */
@media all and (max-width: 768px) {
    .padding {
        padding: 50px 0;
    }

    .xs-padding {
        padding: 15px;
    }

    p br {
        display: none;
    }

    .page-header-info h2 {
        font-size: 32px;
        line-height: 36px;
    }

    .post-details p {
        font-size: 17px;
        line-height: 27px;
    }
}

/* max-width 580px */
@media all and (max-width: 580px) {
    #scrollup {
        bottom: 20px;
        right: 20px;
    }
}
