/*
 * HDX - Hydrox eSports Website
 * main.css - Estilos principais + responsividade
 *
 * Índice:
 * 0.0  Reset & Base
 * 1.0  Tipografia & Fontes
 * 2.0  Utilitários
 * 3.0  Preloader
 * 4.0  Modal / Formulários
 * 5.0  Popup
 * 6.0  Navbar / Header
 * 7.0  Banner / Carousel
 * 8.0  Secção: Streamers (Games)
 * 9.0  Secção: Sobre Nós
 * 10.0 Secção: Contadores
 * 11.0 Secção: Twitch (Match)
 * 12.0 Secção: Parceiros (Brand)
 * 13.0 Secção: Equipas (Player)
 * 14.0 Secção: Produtos
 * 15.0 Secção: Candidatura (Join)
 * 16.0 Secção: Notícias (Blog)
 * 17.0 Secção: Discord CTA (Subscribe)
 * 18.0 Secção: Footer
 * 19.0 Secção: Copyright
 * 20.0 Cards Equipas / Jogos (Game Tabs)
 * 21.0 Página interna (inner-page)
 * 22.0 Collapsible
 * 23.0 Responsividade (Media Queries)
*/

/* =============================================================================
   0.0 Reset & Base
============================================================================= */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
}

#darkmode {
    background: #141414;
}

ul, ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

p {
    line-height: 27px;
}

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

img {
    overflow: hidden;
    border: 0;
    vertical-align: middle;
}

/* =============================================================================
   1.0 Tipografia & Fontes
============================================================================= */
@font-face {
    src: url(../fonts/BarlowCondensed-Bold.ttf);
    font-family: bb;
}

@font-face {
    src: url(../fonts/BarlowCondensed-Regular.ttf);
    font-family: br;
}

/* =============================================================================
   2.0 Utilitários
============================================================================= */
.z-top {
    position: relative;
    z-index: 999;
}

.clr {
    clear: both;
}

.btn-c-white {
    color: white !important;
}

/* Lightbox layers */
.vbox-overlay    { z-index: 999999; }
.lightboxOverlay { z-index: 999999; }
.lightbox        { z-index: 9999999; }

/* Back to top */
.backtotop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: none;
}

.backtotop i {
    color: #fff;
    text-align: center;
    font-size: 21px;
    line-height: 60px;
    width: 60px;
    height: 60px;
    background: rgba(29, 29, 29, 0.8);
    border-radius: 50%;
    transition: all linear .3s;
}

.backtotop:hover { cursor: pointer; }
.backtotop:hover i {
    background: #af1515;
    color: white;
}

/* Select options */
.option-dark {
    color: #787878;
    background: #191919;
}

/* =============================================================================
   3.0 Preloader
============================================================================= */
.preloader {
    min-height: 100vh;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #191919;
    z-index: 999999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =============================================================================
   4.0 Modal / Formulários
============================================================================= */
.modal {
    z-index: 99999999;
    background: rgba(20, 20, 20, 0.8);
}

.modal-content  { background: #141414; }
.modal-header   { border-bottom: 1px solid #191919; }
.modal-body     { padding: 15px 30px; }
.modal-footer   { border-top: 1px solid #191919; padding: 20px 15px; }

.modal-title {
    font-size: 32px;
    font-family: bb;
    color: white;
    position: relative;
    padding-left: 25px;
    text-transform: uppercase;
}

.modal-title b { color: #af1515; }

#contact-modal-contact .modal-title { padding-left: 15px; }

.modal-header .close {
    opacity: 1;
    width: 25px;
    height: 25px;
    line-height: 25px;
    background: #af1515;
    border-radius: 50%;
    position: relative;
    top: -11px;
    right: -9px;
}

.close span {
    color: white;
    position: absolute;
    top: 1px;
    right: 7px;
}

.btn-modal {
    border: 1px solid #af1515;
    padding: 10px 20px !important;
}

.btn-modal:focus { outline: 0; }

/* Cart modal */
.cart-item        { margin-top: 12px; }
.cart-item h3     { font-size: 29px; font-family: bb; color: white; padding-bottom: 15px; padding-top: 17px; }
.cart-item span   { font-size: 19px; font-family: br; color: #787878; }
.cart-img         { position: relative; }
.cart-item a i {
    color: #fff;
    font-size: 14px;
    position: absolute;
    right: 38px; top: 20px;
    width: 25px; height: 25px;
    line-height: 25px;
    background: #af1515;
    border-radius: 50%;
    text-align: center;
}

/* Contact/form inputs */
.form-box input { height: 60px; }

.form-box .form-control {
    font-family: br;
    font-size: 16px;
    border: 2px solid #494949;
    background: transparent;
    margin-top: 15px;
    transition: all linear .3s;
}

.form-box .form-control:hover,
.form-box .form-control:focus {
    box-shadow: none;
    color: white;
}

/* Product select */
.select-size {
    font-family: br;
    font-size: 16px;
    border: 2px solid #494949;
    border-radius: 0.25rem;
    background: transparent;
    margin-top: 15px;
    transition: all linear .3s;
    width: 100%;
    height: 63px;
    color: #6c757d;
}

.qty-input {
    border: 2px solid #494949;
    background: transparent;
    color: white;
    border-radius: 0.25rem;
    text-align: center;
}

.qty-label {
    color: #787878;
    font-family: br;
    font-size: 20px;
    margin-left: 8px;
}

/* =============================================================================
   5.0 Popup
============================================================================= */
.popup {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99999;
}

.popup-content {
    background-color: #141414;
    margin: 15% auto;
    padding: 50px 100px;
    border: 1px solid #191919;
    border-radius: 10px;
    width: 30%;
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-family: bb;
    color: white;
    position: relative;
}

.popup-content .popup-close {
    color: white;
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

.popup-content .popup-close:hover { color: #af1515; }

/* =============================================================================
   6.0 Navbar / Header
============================================================================= */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 999999;
    transition: all linear .3s;
    padding-top: 25px;
    background: transparent !important;
}

.navbar-light .navbar-brand {
    font-size: 28px;
    color: white;
    font-family: bb;
    position: relative;
    letter-spacing: 8px;
    padding-top: 2px;
}

.navbar-light .navbar-brand:focus,
.navbar-light .navbar-brand:hover { color: white; }

.navbar-light .navbar-brand span { color: #af1515; }

.navbar-light .navbar-nav .nav-link i {
    font-size: 16px;
    color: white;
    margin-left: 22px;
}

/* Hamburger button */
.menu-icon { margin-left: 18px; }
.menu-icon:hover { cursor: pointer; }

.menu-icon i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background: #af1515;
    color: #fff;
    border-radius: 50%;
}

/* Navbar scroll state */
.nav-scrolled {
    background: #1414149c !important;
    padding: 25px 0;
    box-shadow: 0 31px 35px rgba(0,0,0,.1);
}

/* Full-screen menu overlay */
.fullscreen-menu {
    position: fixed;
    width: 100%; height: 100%;
    left: 0; top: 0;
    background: #191919;
    display: none;
    z-index: 9999999;
}

.fullscreen-menu ul {
    text-align: center;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.fullscreen-menu ul li {
    display: inline-block;
    margin: 0 40px;
}

.fullscreen-menu .menu-link {
    font-size: 49px;
    font-family: bb;
    color: white;
    text-transform: uppercase;
    transition: all linear .3s;
}

.fullscreen-menu .menu-link:hover {
    color: #af1515;
    cursor: pointer;
}

.menu-close-btn a i {
    font-size: 24px;
    color: #fff;
    width: 55px; height: 55px;
    position: absolute;
    right: 30px; top: 30px;
    background: #af1515;
    line-height: 55px;
    border-radius: 50%;
    text-align: center;
}

/* Cursor helpers */
.js-open-search:hover,
.js-close-menu:hover { cursor: pointer; }

/* Cart badge */
.navbar-light .navbar-nav .nav-link span {
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    background: #af1515;
    color: white;
    font-size: 13px;
    font-family: bb;
    left: 47px; top: 0;
}

.cart { position: relative; }
.cart:hover { cursor: pointer; }

.nl-m-top { margin-top: 12px; }

/* Search overlay */
.search-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.5s ease-in-out;
    transform: translate(0px, -100%) scale(0, 0);
    opacity: 0;
    z-index: 99999999;
}

.search-overlay.open {
    transform: translate(0px, 0px) scale(1, 1);
    opacity: 1;
}

.search-overlay input[type="search"] {
    position: absolute;
    top: 50%;
    width: 100%;
    color: #fff;
    background: transparent;
    font-size: 50px;
    font-weight: 300;
    text-align: center;
    border: 0;
    margin: 0 auto;
    margin-top: -51px;
    padding: 0 30px;
    outline: none;
}

.search-overlay .btn {
    position: absolute;
    top: 50%; left: 50%;
    font-family: bb;
    margin-top: 61px;
    margin-left: -45px;
    background: #af1515;
    border-color: #af1515;
    border-radius: 50px;
    padding: 10px 25px;
    font-size: 20px;
}

.search-overlay .btn-close-search {
    position: fixed;
    top: 15px; right: 14px;
    color: #fff;
    background-color: #af1515;
    border-color: #af1515;
    opacity: 1;
    padding: 5px 15px 10px;
    font-size: 30px;
    cursor: pointer;
}

.search-overlay .btn-close-search:focus { outline: 0; }

/* Mobile nav icons (hidden on desktop) */
.nav-icons-mobile {
    display: none;
    top: 80% !important;
}

.nav-icons-mobile li a i {
    font-size: 16px;
    color: white;
}

.nav-icons-mobile li a span {
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    text-align: center;
    line-height: 19px;
    background: #af1515;
    color: white;
    font-size: 13px;
    font-family: bb;
    left: 30px; top: 0;
}

/* =============================================================================
   7.0 Banner / Carousel
============================================================================= */
#banner {
    position: relative;
}

.carousel {
    width: 100%;
    height: 450px; /* Fixa a altura que tu queres aqui para o site não mexer */
    overflow: hidden;
    position: relative;
}

/* 2. O track que move as fotos */
.carousel-track {
    display: flex;
    height: 100%;
    width: 100%; /* Garante que o track se adapta ao tamanho do ecrã */
    transition: transform 0.5s ease-in-out;
}

/* 3. Aplica DIRETAMENTE nas imagens dentro do track */
.carousel-track img {
    /* Garante que cada imagem ocupa exatamente a largura total do ecrã */
    min-width: 100%; 
    max-width: 100%;
    height: 100%;
    
    /* O segredo para não distorcer nem ampliar a foto à maluca */
    object-fit: cover; 
    object-position: center; 
}

.social-sidebar {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
}

.social-sidebar span {
    color: #787878;
    font-family: br;
    font-size: 18px;
    padding-right: 70px;
    position: relative;
}

.social-sidebar span::after {
    position: absolute;
    content: '';
    top: 50%; right: 30px;
    width: 20px; height: 2px;
    background: #787878;
}

.social-sidebar a i {
    font-size: 18px;
    color: white;
    margin-right: 15px;
    transition: all linear .3s;
}

.social-sidebar a i:hover {
    transform: rotate(-90deg);
}

/* Primary CTA button */
.btn-main {
    padding: 15px 20px;
    color: white;
    font-size: 18px;
    font-family: bb;
    background: #af1515;
    position: relative;
    overflow: hidden;
    transition: all linear .3s;
    border-radius: 50px;
}

.btn-main:hover {
    color: #fff;
    background: #bf000a;
    cursor: pointer;
}

/* =============================================================================
   8.0 Secção: Streamers
============================================================================= */
#streamers-section {
    padding: 70px 0;
}

.section-divider {
    position: relative;
}

.section-divider::after {
    position: absolute;
    content: '';
    bottom: -70px; left: 0;
    width: 100%; height: 2px;
    background: #191919;
}

.divider-line {
    position: absolute;
    bottom: -70px;
    width: 20px; height: 2px;
    background: rgba(229, 9, 20, 0.5);
    z-index: 1;
}

.divider-line--left {
    left: 0;
    animation: lineshine-left 10s infinite alternate;
}

.divider-line--right {
    right: 0;
    animation: lineshine-right 10s infinite alternate;
}

@keyframes lineshine-left {
    from { left: 0; }
    to   { left: 95%; }
}

@keyframes lineshine-right {
    from { right: 0; }
    to   { right: 95%; }
}

.streamers-cta { padding-top: 10px; }

.streamers-cta span {
    font-size: 19px;
    font-family: br;
    color: #af1515;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.streamers-cta h3 {
    font-size: 38px;
    font-family: bb;
    color: white;
    text-transform: uppercase;
    padding: 7px 0 18px;
}

.streamers-cta p {
    font-family: br;
    font-size: 19px;
    color: #787878;
    padding-bottom: 48px;
    padding-right: 15px;
}

.streamer-card { 
    text-align: center;
    padding: 0 8px; 
}

.streamer-card a {
    padding: 30px 0 4px;
    font-size: 25px;
    font-family: bb;
    color: white;
    display: block;
}

.streamer-thumb {
    position: relative;
}

.streamer-thumb .hover-overlay {
    position: absolute;
    width: 100%; height: 100%;
    background: #e509144f;
    left: 0; top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: scale(0);
    transition: all linear .3s;
}

.hover-overlay a {
    position: absolute;
    top: 45%; left: 50%;
    transform: translate(-50%, -50%);
}

.hover-overlay a i {
    font-size: 25px;
    color: white;
}

.streamer-thumb:hover .hover-overlay {
    transform: scale(1);
}

/* =============================================================================
   9.0 Secção: Sobre Nós
============================================================================= */
#about {
    padding: 80px 0;
    position: relative;
}

/* Section headings */
.section-heading h3 {
    font-size: 70px;
    font-family: bb;
    color: white;
    -webkit-text-fill-color: #FFF;
    -webkit-text-stroke-width: 1px;
    text-shadow: 2px 2px 0 #af1515;
    position: relative;
    padding-bottom: 8px;
    text-transform: uppercase;
}

.section-heading h3::before {
    position: absolute;
    content: '';
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: none;
    border: 3px solid #af1515;
}

.about-content { padding-top: 65px; }

.about-text { padding-left: 50px; }

.about-text span {
    font-size: 19px;
    font-family: br;
    color: #af1515;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.about-text h3 {
    font-size: 38px;
    font-family: bb;
    color: white;
    text-transform: uppercase;
    padding: 5px 0 25px;
    line-height: 52px;
}

.about-text h3 b { color: #af1515; }

.about-text p {
    font-family: br;
    font-size: 19px;
    color: #787878;
    padding-bottom: 35px;
    padding-right: 75px;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
    clip-path: polygon(0 0, 89% 0, 100% 10%, 100% 100%, 9% 100%, 0 92%);
    filter: grayscale(100%);
    transition: all linear .3s;
}

.about-img-wrap:hover img { filter: grayscale(0); }

.about-img-wrap::after {
    position: absolute;
    content: '';
    width: 80px; height: 225px;
    background: #af1515;
    left: 11px; top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

.about-counter-badge {
    background: #af1515;
    width: 150px; height: 150px;
    padding: 7px 0;
    position: absolute;
    bottom: 0; right: 16px;
    text-align: center;
    z-index: 1;
}

.about-counter-badge h3 {
    font-size: 80px;
    font-family: bb;
    color: white;
}

.about-counter-badge span {
    font-family: br;
    color: white;
}

/* =============================================================================
   10.0 Secção: Contadores
============================================================================= */
#stats {
    padding: 45px 0;
}

.stat-item {
    padding: 40px 0;
    background: #191919;
    text-align: center;
}

.stat-item h3 {
    font-size: 50px;
    font-family: bb;
    color: white;
    padding-bottom: 6px;
    display: inline-block;
}

.stat-item span {
    font-size: 50px;
    font-family: bb;
    color: white;
}

.stat-item span b { color: #af1515; }

.stat-item p {
    font-family: br;
    font-size: 19px;
    color: #787878;
}

/* =============================================================================
   11.0 Secção: Twitch / Match
============================================================================= */
#twitch-section {
    padding: 80px 0;
    position: relative;
}

.section-label {
    margin-top: 90px;
}

.section-label h3 {
    font-size: 22px;
    font-family: br;
    color: #787878;
    text-transform: uppercase;
    letter-spacing: 12px;
}

.twitch-embed-row {
    /*padding-top: 391px; */
    margin-bottom: 20px;
}

.video-responsive iframe {
    width: 100%;
    height: 450px;
}

/* =============================================================================
   12.0 Secção: Parceiros (Brand)
============================================================================= */
#partners {
    padding: 70px 0;
}

.partners-track {
    margin-bottom: 40px;
}

/* cada slide do Slick */
.partner-slide {
    text-align: center;
    padding: 0 20px;
}

.partners-track img {
    display: inline-block;
    max-width: 100%;
    filter: contrast(0);
    transition: filter linear .3s;
}

.partners-track img:hover {
    filter: contrast(1);
}

/* =============================================================================
   13.0 Secção: Equipas (Player)
============================================================================= */
#teams {
    padding: 0;
    background: #191919;
    position: relative;
}

.teams-grid { padding-top: 70px; }

.team-card-wrap { position: relative; }

.team-card-thumb img {
    filter: grayscale(100%);
}

.team-card-label {
    background: #af1515;
    width: 70%;
    height: 60px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    top: -35px;
    text-align: center;
    transition: opacity linear .3s;
}

.team-card-label h3 {
    font-size: 24px;
    font-family: bb;
    text-transform: uppercase;
    color: #fff;
    line-height: 60px;
}

/* Show name on center slide */
.player-middle.slick-center .team-card-label {
    opacity: 1;
}

.player-middle.slick-center .team-card-thumb img {
    filter: grayscale(0);
}

.team-card-thumb { position: relative; }

.team-card-thumb .team-overlay {
    position: absolute;
    width: 100%; height: 0;
    top: 0; left: 0;
    background: rgba(20, 20, 20, 0.8);
    transition: all linear .3s;
}

.team-overlay a {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.team-overlay a i {
    font-size: 25px;
    color: white;
    opacity: 0;
    transition: all linear .3s;
}

.team-overlay a i:hover { color: #af1515; }

.team-card-wrap:hover .team-overlay { height: 100%; }
.team-card-wrap:hover .team-overlay a i { opacity: 1; }

/* =============================================================================
   14.0 Secção: Produtos
============================================================================= */
#shop {
    padding: 80px 0;
    position: relative;
}

.shop-grid { padding-top: 70px; }

.product-card {
    background: #191919;
    padding: 30px 20px;
    position: relative;
}

.product-card h3 {
    font-size: 40px;
    font-family: bb;
    color: white;
    padding-bottom: 15px;
}

.product-card h4 {
    font-size: 25px;
    font-family: br;
    color: #787878;
    padding: 12px 0;
}

.product-card .inner-link {
    color: #af1515;
    font-family: bb;
    font-size: 17px;
    text-transform: uppercase;
}

.product-card .inner-link:hover { color: #af1515; }

.badge-stock {
    width: 50px; height: 50px;
    line-height: 50px;
    background: #af1515;
    text-align: center;
    border-radius: 50%;
    position: absolute;
    right: 45px; top: 135px;
}

.badge-stock span {
    font-family: bb;
    color: white;
    font-size: 18px;
}

/* =============================================================================
   15.0 Secção: Candidatura (Join)
============================================================================= */
#join {
    padding: 40px 0;
    position: relative;
}

.join-card {
    background: #191919;
    padding: 70px 60px;
    border-radius: 8px;
    margin: 40px 0 0;
    position: relative;
}

.join-text span {
    font-size: 18px;
    font-family: br;
    color: #af1515;
    text-transform: uppercase;
    letter-spacing: 6px;
}

.join-text h3 {
    font-size: 38px;
    font-family: bb;
    color: white;
    text-transform: uppercase;
    line-height: 52px;
    padding: 5px 0 18px;
}

.join-text p {
    font-family: br;
    font-size: 19px;
    color: #787878;
    padding-bottom: 48px;
}

.join-image img {
    position: absolute;
    bottom: -68px;
    left: -4px;
}

/* =============================================================================
   16.0 Secção: Notícias (Blog)
============================================================================= */
#news {
    padding: 80px 0;
    position: relative;
}

.news-grid { padding-top: 70px; }

.news-card-text {
    background: #191919;
    padding: 30px;
}

.news-card-text a {
    font-size: 25px;
    font-family: bb;
    color: white;
    line-height: 37px;
    padding-top: 8px;
    display: block;
}

.news-card-text span {
    font-size: 18px;
    font-family: br;
    color: #787878;
}

.news-card img {
    filter: grayscale(100%);
    transition: all linear .3s;
}

.news-card.slick-center img,
.news-card:hover img {
    filter: grayscale(0);
}

/* =============================================================================
   17.0 Secção: Discord CTA (Subscribe)
============================================================================= */
#discord-cta {
    padding: 80px 0;
    background: url(../images/subscribe.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(100%);
}

#discord-cta::after {
    position: absolute;
    content: '';
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(20, 20, 20, 0.5);
}

.cta-text h3 {
    font-size: 38px;
    font-family: bb;
    color: white;
    text-transform: uppercase;
    line-height: 52px;
}

.btn-discord {
    padding: 15px 20px;
    color: #af1515;
    font-size: 18px;
    font-family: bb;
    background: white;
    border-radius: 50px;
    position: relative;
    top: 39px;
    text-transform: uppercase;
    display: inline-block;
}

/* =============================================================================
   18.0 Secção: Footer
============================================================================= */
#footer {
    padding: 80px 0;
    background: #191919;
}

.footer-brand p {
    font-family: br;
    font-size: 19px;
    color: #ffffff;
    padding-top: 20px;
    padding-right: 80px;
    padding-bottom: 20px;
}

.footer-social a i {
    font-size: 16px;
    color: white;
    background: #262525;
    width: 45px; height: 45px;
    line-height: 46px;
    margin-right: 16px;
    border-radius: 50%;
    text-align: center;
    padding-left: 8px;
    transition: all linear .3s;
}

.footer-social a i:hover { background: #af1515; }

.footer-links h3 {
    font-size: 24px;
    font-family: bb;
    color: white;
    padding-top: 12px;
    padding-bottom: 8px;
}

.footer-links a {
    display: block;
    font-size: 19px;
    font-family: br;
    color: #787878;
    margin-top: 15px;
    transition: all linear .3s;
}

.footer-links a:hover {
    padding-left: 4px;
    color: #af1515;
}

/* =============================================================================
   19.0 Secção: Copyright
============================================================================= */
#copyright {
    padding: 25px 0;
    background: #191919;
    position: relative;
}

#copyright::after {
    position: absolute;
    content: '';
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 1112px; height: 1px;
    background: #313131;
}

.copyright-text p {
    font-family: br;
    color: #787878;
    font-size: 19px;
}

.copyright-text p a {
    font-family: bb;
    color: white;
}

/* =============================================================================
   20.0 Cards Equipas / Jogos (Game Tabs)
============================================================================= */
.game-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 50px 0 40px;
}

.game-tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #191919;
    border: 2px solid #333;
    border-radius: 50px;
    color: #787878;
    font-family: bb;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all .3s;
}

.game-tab-btn svg {
    width: 22px;
    height: 22px;
    fill: #787878;
    transition: fill .3s;
}

.game-tab-btn:hover,
.game-tab-btn.active {
    border-color: #af1515;
    color: white;
    background: #1a0000;
}

.game-tab-btn.active {
    background: #af1515;
    border-color: #af1515;
}

.game-tab-btn.active svg,
.game-tab-btn:hover svg {
    fill: white;
}

/* ── Painéis de jogo ─────────────────────────────── */
.game-panel {
    display: none;
    animation: fadeIn .4s ease;
}

.game-panel.active {
    display: block;
}

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

/* ── Banner do jogo ──────────────────────────────── */
.game-banner {
    position: relative;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    background: #191919;
    border-left: 4px solid #af1515;
}

.game-banner-icon {
    flex: 0 0 80px;
}

.game-banner-icon svg {
    width: 80px;
    height: 80px;
    fill: #af1515;
    opacity: .9;
}

.game-banner-info span {
    font-family: br;
    font-size: 14px;
    color: #af1515;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.game-banner-info h2 {
    font-family: bb;
    font-size: 42px;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    margin: 4px 0 8px;
}

.game-banner-info p {
    font-family: br;
    font-size: 17px;
    color: #787878;
    margin: 0;
}

.game-banner-badge {
    margin-left: auto;
    padding: 8px 20px;
    border: 2px solid #af1515;
    border-radius: 50px;
    font-family: bb;
    font-size: 13px;
    color: #af1515;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

/* ── Cards de jogadores ──────────────────────────── */
.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.player-card {
    background: #191919;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #222;
    transition: border-color .3s, transform .3s;
}

.player-card:hover {
    border-color: #af1515;
    transform: translateY(-4px);
}

.player-card-img {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #111;
}

.player-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter .3s;
}

.player-card:hover .player-card-img img {
    filter: grayscale(0);
}

.player-card-role {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 3px 10px;
    background: #af1515;
    border-radius: 50px;
    font-family: bb;
    font-size: 11px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.player-card-info {
    padding: 14px 16px;
}

.player-card-info h4 {
    font-family: bb;
    font-size: 18px;
    color: white;
    text-transform: uppercase;
    margin: 0 0 2px;
}

.player-card-info span {
    font-family: br;
    font-size: 14px;
    color: #787878;
}

.player-card-info .player-social {
    margin-top: 10px;
}

.player-card-info .player-social a {
    color: #555;
    font-size: 15px;
    margin-right: 10px;
    transition: color .3s;
}

.player-card-info .player-social a:hover {
    color: #af1515;
}

/* ── Vaga aberta ─────────────────────────────────── */
.player-card.vaga {
    border: 2px dashed #333;
    background: transparent;
}

.player-card.vaga .player-card-img {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111;
}

.player-card.vaga .player-card-img i {
    font-size: 36px;
    color: #333;
}

.player-card.vaga .player-card-info h4 {
    color: #444;
}

.player-card.vaga .player-card-info span {
    color: #333;
}


/* =============================================================================
   21.0 Página interna (inner-page)
============================================================================= */
.inner-page #inner-banner {
    padding: 150px 0;
    background: #191919;
}

.inner-page #inner-banner h3 {
    font-size: 52px;
    font-family: bb;
    color: white;
    padding-bottom: 18px;
}

.inner-page #inner-banner a {
    color: #af1515;
    font-family: bb;
    font-size: 19px;
}

.inner-page #inner-banner span {
    color: #787878;
    font-family: br;
    font-size: 19px;
}

.inner-page #cart-view { padding: 80px 0 15px; }

.inner-page .cart-items {
    background: #191919;
    padding: 30px 20px;
    position: relative;
    margin-bottom: 30px;
}

.inner-page .cart-items h3 {
    font-size: 38px;
    color: white;
    font-family: bb;
}

.inner-page .cart-items h4 {
    font-size: 25px;
    font-family: br;
    color: #787878;
    text-transform: capitalize;
    padding: 12px 0;
}

.inner-page .cart-items a i {
    width: 25px; height: 25px;
    line-height: 25px;
    background: #af1515;
    color: white;
    position: absolute;
    top: 0; right: 0;
}

.inner-page .checkout-box {
    background: #191919;
    padding: 40px;
    margin-bottom: 15px;
}

.inner-page .checkout-item { margin-bottom: 25px; }

.inner-page .checkout-box h3,
.inner-page .checkout-box h4 {
    font-size: 21px;
    font-family: br;
}

.inner-page .checkout-box h3 { color: #787878; }
.inner-page .checkout-box h4 { color: white; }
.inner-page .checkout-button { margin-top: 25px; }

.btn-coupon {
    height: 59px;
    width: 100%;
    font-size: 19px;
    font-family: bb;
    background: #af1515;
    border: 1px solid #af1515;
    margin-top: 15px;
    color: white;
    cursor: pointer;
}

.btn-coupon:hover {
    background: #bf000a;
    border-color: #bf000a;
}

/* =============================================================================
   22.0 Collapsible (acordeão de produto)
============================================================================= */
.collapsible-btn {
    background-color: transparent;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border-radius: 0.25rem;
    border: 2px solid #494949;
    text-align: left;
    outline: none;
    font-size: 16px;
    font-family: br;
}

.collapsible-btn:hover,
.collapsible-btn.active {
    background-color: transparent;
}

.collapsible-btn::after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.collapsible-btn.active::after {
    content: "\2212";
}

.collapsible-content {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    background-color: transparent;
    font-family: br;
    font-size: 16px;
    color: white;
}

/* =============================================================================
   23.0 Responsividade (Media Queries)
============================================================================= */

/* --- Tablet landscape e abaixo (≤ 991px) --- */
@media (max-width: 991px) {
    .desktop-only,
    .section-divider::after,
    .divider-line {
        display: none;
    }

    .divider-line { animation: none; }

    .nav-scrolled { padding: 20px 0; }

    .fullscreen-menu ul { top: 20%; }

    .fullscreen-menu ul li {
        display: block;
        margin: 8px 0;
    }

    .menu-close-btn a i {
        font-size: 21px;
        width: 40px; height: 40px;
        right: 10px; top: 20px;
        line-height: 40px;
    }

    .nav-icons-mobile {
        display: block;
        top: 93% !important;
    }

    .nav-icons-mobile li { margin: 0 10px; }
}

/* --- Tablet retrato (768px–991px) --- */
@media (min-width: 768px) and (max-width: 991px) {
    .social-sidebar,
    .join-image img { display: none; }

    .tab-center { margin: 0 auto; }

    #banner { padding: 130px 0 350px; }

    .about-text { margin-top: 50px; }

    .stat-item { margin-top: 30px; }

    .team-card-thumb img { filter: grayscale(0); }
    .team-card-label { opacity: 1; }

    .sale { right: 65px; }

    .join-text p { padding-right: 99px; }

    #join { padding: 20px 0; }
    .join-card { margin: 20px 0 0; }

    .cta-text h3 { font-size: 30px; line-height: 46px; }

    .footer-links h3 { margin-top: 45px; }

    #copyright::after { width: 100%; height: 2px; }
}

/* --- Smartphone landscape (576px–767px) --- */
@media (min-width: 576px) and (max-width: 767px) {
    .fullscreen-menu .menu-link { font-size: 32px; }

    .social-sidebar,
    .join-image img { display: none; }

    #banner { padding: 140px 0 345px; }

    #streamers-section { padding: 20px 0; }

    .streamers-cta {
        margin-top: 60px;
        background: #191919;
        padding: 40px;
        margin-bottom: 50px;
    }

    .about-text { padding-left: 0; margin-top: 35px; }
    .about-text h3 { font-size: 32px; }

    #stats { padding: 0 0 20px; }
    .stat-item { margin-top: 30px; }

    #join { padding: 0; }
    .join-card { padding: 70px 45px; }
    .join-text h3 { font-size: 32px; }

    .cta-text { text-align: center; }
    #discord-cta { padding: 60px 0 115px; }

    .team-card-thumb img { filter: grayscale(0); }
    .team-card-label { opacity: 1; width: 74%; height: 55px; }
    .team-card-label h3 { font-size: 21px; line-height: 55px; }

    .footer-links h3 { margin-top: 40px; }

    #copyright::after { width: 100%; }
}

@media (max-width: 576px) {
    .game-banner { flex-direction: column; text-align: center; }
    .game-banner-badge { margin: 0 auto; }
    .game-banner-icon { margin: 0 auto; }
    .players-grid { grid-template-columns: repeat(2, 1fr); }
    .game-tab-btn { font-size: 13px; padding: 10px 16px; }
}

/* --- Smartphone (≤ 575px) --- */
@media (max-width: 575px) {
    .social-sidebar,
    .join-image img,
    .join-text p { display: none; }

    .modal-body { padding: 0 30px 30px; }
    .modal-title { padding-left: 0; }
    .modal-header .close { top: 24px; right: 5px; }

    #banner { padding: 120px 0 260px; text-align: center; }

    #streamers-section { padding: 30px 0; }

    .streamer-card img { display: inline-block; width: 100%; }

    .streamers-cta {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 55px;
    }

    #about { padding: 65px 0; }

    .section-heading h3 {
        font-size: 55px;
        text-align: center;
    }

    .section-heading h3::before {
        left: 50%;
        border: 2px solid #e50914;
        transform: translateX(-50%);
    }

    .about-content { padding-top: 50px; }

    .about-text {
        padding-left: 0;
        text-align: center;
        margin-top: 50px;
    }

    .about-text h3 { font-size: 27px; padding: 10px 0 25px; line-height: 45px; }
    .about-text p { padding-right: 0; }

    #stats { padding: 40px 0 0; }

    .stat-item { margin-top: 20px; }

    .section-label { margin-top: 45px; }
    .section-label h3 { font-size: 20px; letter-spacing: 6px; }

    #teams .section-heading h3 { padding-bottom: 25px; }

    .teams-grid { padding-top: 50px; }

    #shop { padding: 80px 0 70px; }

    #join { padding: 0; }

    .join-card {
        padding: 40px 20px;
        text-align: center;
    }

    .join-text h3 { font-size: 29px; padding: 9px 0 40px; }
    .join-text span { font-size: 12px; }

    #news .section-heading h3 { padding-bottom: 15px; }
    .news-grid { padding-top: 65px; }

    #discord-cta { padding: 70px 0 110px; }
    .cta-text { text-align: center; }
    .cta-text h3 { font-size: 31px; }

    #footer { padding: 60px 0; }
    .footer-brand p { padding-right: 0; }
    .footer-links h3 { margin-top: 30px; }

    .copyright-text p { font-size: 18px; }
    .copyright-text { text-align: left !important; padding-top: 5px; }

    #copyright::after { width: 100%; }

    .inner-page .checkout-box { padding: 40px 30px; }

    .login-box { margin: 0 auto; max-width: 400px; }

    .popup-content { width: 90%; padding: 30px 20px; }
}

/* --- Smartphone maior (375px–575px) --- */
@media (min-width: 375px) and (max-width: 575px) {
    #banner { padding: 130px 0 360px; }
    .about-text h3 { font-size: 31px; }
}

@media (max-width: 991px) {
    .navbar [href*="login"], 
    .navbar .login-btn,
    .fullscreen-menu [href*="login"] {
        display: none !important;
    }
    .navbar [type="search"],
    .navbar .search-form,
    .navbar .search-btn,
    .navbar [class*="search"] {
        display: none !important;
    }
}

/* --- Desktop médio (992px–1199px) --- */
@media (min-width: 992px) and (max-width: 1199px) {
    .fullscreen-menu .menu-link { font-size: 42px; }
    .fullscreen-menu ul li { margin: 0 25px; }

    .about-text h3 { font-size: 32px; line-height: 46px; }

    .join-text h3 { font-size: 33px; }

    .news-card-text a { font-size: 24px; }

    .cta-text h3 { font-size: 30px; padding-left: 20px; }

    #copyright::after { width: 100%; }
}
