/* ===== FONTS ===== */
@font-face {
    font-family: 'Kapra Neue Pro';
    src: url('../fonts/kapra-neue-pro-regular.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy Extra Bold';
    src: url('../fonts/Gilroy Extra Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy Light';
    src: url('../fonts/Gilroy-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy Extra Bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background-image: url('../../assets/image/fond.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-direction: column;
}

.hero-content h2 {
    font-family: 'Kapra Neue Pro', sans-serif;
    font-size: 2rem;
    color: #ff5c00;
    margin-bottom: 20px;
}

/* ===== NAVBAR ===== */
.navbar {
    width: 100%;
    padding: 20px 0px;
    position: absolute;
    top: 0;
    left: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

.navbar .logo {
    position: absolute;
    left: 30px;
}

.navbar .logo img {
    width: 150px;
    margin-left: 40px;
}

.navbar .menu {
    list-style: none;
    display: flex;
    gap: 80px;
    margin-left: 50px;
}

.navbar .menu li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Kapra Neue Pro', sans-serif;
    font-size: 1.5rem;
    transition: color 0.3s, border-bottom 0.3s;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.navbar .menu li a:hover,
.navbar .menu li a.active {
    color: #ff5c00;
    border-bottom: 2px solid #ff5c00;
}

/* Menu hamburger - amélioré */
.mobile-menu-toggle {
    display: none;
    width: 35px;
    height: 35px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    background: rgba(255, 92, 0, 0.1);
    border: 2px solid #ff5c00;
    border-radius: 8px;
    padding: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 92, 0, 0.2);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(45deg, #ff5c00, #e65100);
    position: absolute;
    transition: all 0.3s ease;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 8px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 15px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 22px;
}

.mobile-menu-toggle.active {
    background: rgba(255, 92, 0, 0.3);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 15px;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 15px;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
    height: 100vh;
    background-color: #fff;
}

.team-section {
    width: 100%;
    background-color: #ffffff;
    box-sizing: border-box;
}

.team-title-container {
    width: 100%;
    background-color: #111;
    padding: 50px;
    margin-bottom: 60px;
    text-align: center;
}

.team-title {
    color: #fff;
    font-family: 'Gilroy Extra Bold', sans-serif;
    font-size: 2rem;
    letter-spacing: 1px;
    margin: 0;
}

.team-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    padding: 0 100px 50px;
}

.team-logo img {
    width: 650px;
    height: auto;
    margin-top: 20px;
}

.team-text {
    font-family: 'Gilroy Light', sans-serif;
    font-size: 1.2rem;
    line-height: 1.3;
    color: #333;
    max-width: 700px;
    margin-left: 300px;
}

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

.team-quote {
    font-family: 'Gilroy Light', sans-serif;
    font-style: italic;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    width: 100%;
    padding: 0 20px;
}

.team-quote small {
    font-size: 0.8rem;
}

/* ===== BUTTONS ===== */
.scroll-button {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 30px;
    background-color: #ff5c00;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Kapra Neue Pro', sans-serif;
    font-size: 1.1rem;
    transition: background-color 0.3s;
}

.scroll-button:hover {
    background-color: #e65100;
}

/* ===== GAMES SECTION ===== */
.games-section {
    background-color: #fff;
    padding: 40px 0 200px 0;
    text-align: center;
}

.games-title {
    font-family: 'Gilroy Extra Bold', sans-serif;
    font-size: 3rem;
    margin-bottom: 80px;
}

.black-text {
    color: #000;
}

.orange-text {
    color: #ff5c00;
}

.games-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 0 140px;
    padding: 0 20px;
}

.game-card {
    position: relative;
    width: 600px;
    height: 798px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.game-card:hover {
    transform: translateY(-10px);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.game-name {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: 'Gilroy Extra Bold', sans-serif;
    font-size: 1.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    width: 80%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background-color: #111;
    height: 200px;
    padding: 30px 0;
    color: white;
    font-family: 'Gilroy Extra Bold', sans-serif;
}

.stats-title {
    text-align: center;
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: normal;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    align-items: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.orange-number {
    color: #ff5c00;
}

.stat-label {
    font-size: 1rem;
    text-transform: lowercase;
}

/* ===== SHOP SECTION ===== */
.logo-background-section {
    height: 100vh;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.logo-background-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2500px;
    height: 2500px;
    background-image: url('../image/logo_nb.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%) rotate(310deg);
    opacity: 0.15;
    z-index: 1;
}

.shop-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 50px;
}

.collection-title {
    font-family: 'Gilroy';
    font-size: 48px;
    color: #000;
    margin-bottom: 15px;
}

.shop-subtitle {
    font-family: 'Gilroy';
    font-size: 32px;
    color: #FF6B00;
    text-decoration: underline;
    margin-bottom: 50px;
}

.shop-images {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0 20px;
}

.shop-item {
    flex: 0 1 400px;
    transition: transform 0.3s ease;
}

.shop-item:hover {
    transform: scale(1.05);
}

.shop-item img {
    width: 100%;
    height: auto;
    border-radius: 0;
}

/* ===== LOGO BANNER ===== */
.logo-banner {
    width: 100%;
    background-color: #fff;
    padding: 20px 0;
}

.logo-banner-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 130px;
    flex-wrap: nowrap;
}

.logo-banner-content img {
    height: 22px;
    width: auto;
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.partners-title {
    font-family: 'Gilroy Extra Bold', sans-serif;
    color: #000;
    font-size: 32px;
    margin-bottom: 40px;
}

.partner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 20px;
}

.partner-logo {
    max-width: 200px;
    height: auto;
}

.partner-description {
    font-family: 'Gilroy Light', sans-serif;
    color: #000;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    margin-top: 100px;
}

/* ===== TWITCH SECTION ===== */
.twitch-section {
    background-color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.twitch-title {
    font-family: 'Gilroy Extra Bold', sans-serif;
    color: #000;
    font-size: 32px;
    margin-bottom: 40px;
}

.twitch-embed {
    max-width: 854px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    width: 100%;
    padding: 40px 0 20px 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-title {
    font-family: 'Gilroy-Light', sans-serif;
    color: #FFFFFF;
    font-size: 24px;
    margin-bottom: 30px;

}

.social-section {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.media-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-link {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-family: 'Gilroy Light', sans-serif;
    color: #ccc;
    font-size: 14px;
}

.legal-link {
    color: #ff5c00;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: #e65100;
}

/* ===== MEDIA ROOM BUTTON ===== */
.Btn {
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background-color: rgb(27, 27, 27);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.11);
}

.svgIcon {
    fill: rgb(214, 178, 255);
}

.icon2 {
    width: 18px;
    height: 5px;
    border-bottom: 2px solid rgb(182, 143, 255);
    border-left: 2px solid rgb(182, 143, 255);
    border-right: 2px solid rgb(182, 143, 255);
}

.tooltip {
    position: absolute;
    right: -105px;
    opacity: 0;
    background-color: rgb(12, 12, 12);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-duration: .2s;
    pointer-events: none;
    letter-spacing: 0.5px;
}

.tooltip::before {
    position: absolute;
    content: "";
    width: 10px;
    height: 10px;
    background-color: rgb(12, 12, 12);
    background-size: 1000%;
    background-position: center;
    transform: rotate(45deg);
    left: -5%;
    transition-duration: .3s;
}

.Btn:hover .tooltip {
    opacity: 1;
    transition-duration: .3s;
}

.Btn:hover {
    background-color: rgb(150, 94, 255);
    transition-duration: .3s;
}

.Btn:hover .icon2 {
    border-bottom: 2px solid rgb(235, 235, 235);
    border-left: 2px solid rgb(235, 235, 235);
    border-right: 2px solid rgb(235, 235, 235);
}

.Btn:hover .svgIcon {
    fill: rgb(255, 255, 255);
    animation: slide-in-top 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-10px);
        opacity: 0;
    }
    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #ff5c00;
}

.modal-title {
    font-family: 'Gilroy Extra Bold', sans-serif;
    font-size: 24px;
    color: #333;
    margin: 0;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ff5c00;
}

.modal-body {
    font-family: 'Gilroy Light', sans-serif;
    line-height: 1.6;
    color: #333;
}

.modal-body h1, .modal-body h2, .modal-body h3 {
    font-family: 'Gilroy Extra Bold', sans-serif;
    color: #ff5c00;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h1 {
    font-size: 22px;
}

.modal-body h2 {
    font-size: 18px;
}

.modal-body h3 {
    font-size: 16px;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-body ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* ===== HALL OF FAME ===== */
.hall-of-fame {
    font-family: 'Gilroy Extra Bold', sans-serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 400px;
    position: relative;
}

.hall-of-fame .black-text {
    color: #FF5C00;
    position: relative;
}

.hall-of-fame .black-text::before {
    content: "HALL OF";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(8px);
    color: #FF5C00;
    opacity: 0.5;
}

.hall-of-fame .orange-text {
    color: #FF5C00;
    position: relative;
}

.hall-of-fame .orange-text::before {
    content: "FAME";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    filter: blur(8px);
    color: #FF5C00;
    opacity: 0.5;
}

/* ===== LANGUAGE SELECTOR ===== */
.language-selector {
    position: relative;
    margin-left: 30px;
}

.language-btn {
    background: transparent;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 16px;
    font-family: 'Kapra Neue Pro', sans-serif;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: none;
    min-width: 160px;
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: #000;
    font-family: 'Kapra Neue Pro', sans-serif;
}

.lang-option:hover {
    background: #f5f5f5;
}

.lang-option img {
    width: 20px;
    height: 20px;
}

/* ===== RAJOUT TEXT ===== */
.rajout-text {
    text-align: center;
    margin-bottom: 60px;
}

.rajout-text .white-text {
    font-size: 2.5rem;
    color: #fff;
    font-family: 'Gilroy Extra Bold', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: block;
    margin-bottom: 10px;
}

.rajout-text .orange-text {
    font-size: 2.5rem;
    line-height: 1.2;
    font-family: 'Gilroy Extra Bold', sans-serif;
    color: #ff5c00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    display: block;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Grand écran (1440px et plus) */
@media screen and (min-width: 1440px) {
    .team-title-container {
        width: 100%;
        max-width: 100%;
    }
}

/* Écrans moyens (1024px à 1439px) */
@media screen and (max-width: 1439px) {
    .team-title-container {
        width: 100%;
        max-width: 100%;
        padding: 50px 20px;
    }

    .team-container {
        padding: 0 50px;
    }

    .team-text {
        margin-left: 150px;
    }

    .games-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 0 20px;
    }

    .game-card {
        width: 40%;
        height: auto;
        margin-bottom: 20px;
    }

    .team-quote {
        margin-left: 50px;
        padding-right: 20px;
    }
}

/* Tablettes (768px à 1023px) */
@media screen and (max-width: 1023px) {
    .navbar .menu {
        gap: 30px;
    }

    .navbar .logo img {
        width: 120px;
        margin-left: 20px;
    }

    .team-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .team-logo img {
        width: 300px;
        margin-top: 40px;
    }

    .team-text {
        margin-left: 0;
        padding: 0 20px;
        max-width: 100%;
    }

    .team-text br {
        display: none;
    }

    .team-quote {
        margin-left: 0;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }

    .team-quote br {
        display: none;
    }

    .content-section {
        height: auto;
    }

    .games-section {
        height: auto;
        padding: 30px 0;
    }

    .game-card {
        width: 45%;
        max-width: 350px;
        height: auto;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 30px;
    }

    .logo-background-section {
        height: auto;
        padding-bottom: 50px;
    }

    .shop-images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .shop-item {
        flex: 0 1 45%;
        margin-bottom: 20px;
    }

    .scroll-button {
        position: absolute;
        bottom: 40px;
    }

    .logo-banner-content {
        gap: 60px;
        flex-wrap: nowrap;
        justify-content: center;
    }
}

/* Mobile (jusqu'à 767px) */
@media screen and (max-width: 767px) {
    .navbar {
        justify-content: space-between;
        padding: 15px 20px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .navbar .logo {
        position: static;
        left: auto;
    }

    .navbar .logo img {
        width: 100px;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block;
        position: relative;
        margin-right: 0;
    }

    .navbar .menu {
        display: flex;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(255, 92, 0, 0.1));
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        margin: 0;
        z-index: 999;
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-bottom: 3px solid #ff5c00;
    }

    .navbar .menu.active {
        transform: translateY(0);
    }

    .navbar .menu li {
        margin: 10px 0;
        opacity: 0;
        animation: fadeInUp 0.6s ease forwards;
    }

    .navbar .menu.active li {
        animation-delay: calc(var(--i) * 0.1s);
    }

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

    .scroll-button {
        position: absolute;
        bottom: 80px;
        left: 50%;
        transform: translateX(-50%);
    }

    .rajout-text {
        margin-bottom: 50px;
    }

    .rajout-text .white-text,
    .rajout-text .orange-text {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        text-align: center;
        padding: 0 20px;
    }

    .team-title-container {
        width: 100%;
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .team-title {
        font-size: 1.6rem;
    }

    .team-logo img {
        width: 200px;
        margin-top: 20px;
    }

    .team-text {
        font-size: 1rem;
        padding: 0 20px;
        text-align: left;
    }

    .games-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .games-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin: 0 10px;
    }

    .game-card {
        width: 45%;
        max-width: 180px;
        margin-bottom: 20px;
        height: auto;
    }

    .game-name {
        font-size: 1.1rem;
        bottom: 15px;
        white-space: normal;
    }

    .stats-section {
        height: auto;
        padding: 30px 0;
    }

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

    .stats-title {
        padding: 0 15px;
    }

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

    .shop-item {
        flex: 0 1 100%;
        max-width: 350px;
        margin-bottom: 20px;
    }

    .collection-title {
        font-size: 32px;
        padding: 0 15px;
    }

    .shop-subtitle {
        font-size: 24px;
    }

    .logo-banner-content {
        gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-around;
        padding: 0 15px;
    }

    .logo-banner-content img {
        height: 18px;
        flex-shrink: 0;
    }

    .partners-title {
        font-size: 26px;
    }

    .partner-description {
        padding: 0 20px;
        font-size: 16px;
    }

    .twitch-embed {
        width: 100%;
    }

    #twitch-embed iframe {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16/9;
    }

    .footer {
        height: auto;
        padding: 30px 0 20px 0;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-title {
        margin-bottom: 15px;
        font-size: 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 20px;
        width: 95%;
    }

    .modal-title {
        font-size: 20px;
    }
}


@media screen and (max-width: 360px) {
    .navbar .logo img {
        width: 80px;
    }

    .team-title {
        font-size: 1.2rem;
    }

    .team-logo img {
        width: 150px;
    }

    .games-title {
        font-size: 1.5rem;
    }

    .collection-title {
        font-size: 22px;
    }

    .shop-subtitle {
        font-size: 18px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .rajout-text .white-text,
    .rajout-text .orange-text {
        font-size: 1.2rem;
    }

    .scroll-button {
        bottom: 60px;
    }
}


@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }

    .scroll-button {
        position: absolute;
        bottom: 20px;
    }

    .content-section,
    .games-section,
    .logo-background-section {
        height: auto;
        min-height: 100vh;
        padding: 50px 0;
    }

    .team-container {
        padding: 0 20px 30px;
    }

    .games-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .game-card {
        width: 45%;
        max-width: 300px;
    }
}

@media screen and (min-width: 1024px) and (max-height: 768px) {
    .content-section,
    .games-section,
    .logo-background-section {
        height: auto;
        min-height: 100vh;
    }
}


@media screen and (max-width: 768px) {
    .hall-of-fame {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .hall-of-fame {
        font-size: 2rem;
    }

    .rajout-text .white-text,
    .rajout-text .orange-text {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 375px) {
    .rajout-text .white-text,
    .rajout-text .orange-text {
        font-size: 1rem;
    }

    .rajout-text {
        margin-bottom: 30px;
    }
}