:root {
    --dark-grey: #151416;
    --dark-ligher-grey: #302e31;
    --ligher--grey: #4f4b52;
    --main--red: #e84056;
    --dark--red: #980c1f;
    --gold: #e0ad66;
    --white: rgb(255, 255, 255);
}

@font-face {
    font-family: 'Geologica';
    src: url('/fonts/Geologica-VariableFont_CRSV,SHRP,slnt,wght.ttf')
        format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Franklin';
    src: url('/fonts/LibreFranklin-VariableFont_wght.ttf')
        format('truetype-variations');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Libre Franklin';
    src: url('/fonts/LibreFranklin-Italic-VariableFont_wght.ttf')
        format('truetype-variations');
    font-weight: 100 900;
    font-style: italic;
}

* {
    margin: 0;
}

body {
    min-height: 100vh;
    background-color: var(--white);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Libre Franklin', sans-serif;
}

p,
a {
    font-family: 'Geologica', sans-serif;
    text-decoration: none;
}

main {
    background-color: var(--white);
    position: relative;
}

/* Separators are on many pages */
.separators-hr {
    margin: 20px 0;
    height: 3px;
    background: linear-gradient(
        to right,
        transparent,
        var(--main--red),
        transparent
    );
    border: none;
}

body > div[style*='position: fixed'] {
    z-index: 2147483647 !important;
}

.clickable {
    cursor: pointer;
    border-bottom: 1px solid var(--main--red);
    margin-bottom: 2px;
}

.clickable:hover {
    color: var(--main--red);
}

#user-top-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

#badge-container {
    margin-top: 10px;
    display: flex;
    gap: 20px;
}

#edit-profile-container {
    position: absolute;
    top: 40px;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: black;
    font-size: 20px;
    font-family: 'Geologica', sans-serif;
    cursor: pointer;
    z-index: 9999;
}

#user-info {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    position: relative;
}

#user-info h2 {
    font-size: 2.5em;
    font-family: 'Geologica', sans-serif;
    margin-right: 3px;
}

#user-info p {
    font-size: 1em;
    align-self: flex-end;
    margin-bottom: 7px;
}

#user-bottom-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 500px;
    max-height: 100%;
    position: relative;
}

#profile-picture-container {
    position: relative;
    display: inline-block;
    z-index: 500;
}

#validate-actions {
    background-color: var(--main--red);
    color: white;
    padding: 10px 0;
    font-size: 1.7em;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.dark-mode .coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.7em;
    background: linear-gradient(225deg, #363333, #1a1919);
    height: 60px;
    border: 1px solid var(--ligher--grey);
}

#aboutme-container {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

.side-global {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto 20px auto;
    gap: 20px;
    box-sizing: border-box;
    position: relative;
}

.side-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ddd2d2;
    padding: 10px;
    border: none;
    border-radius: 20px;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
}

.dark-mode .side-column {
    background-color: #222222;
}

.aboutme-match {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 80%;
    justify-content: center;
    position: relative;
    margin-top: 20px;
}

.aboutme-match .profile {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.aboutme-match .profile .profile-level {
    position: absolute;
    bottom: 2px;
    z-index: 5000;
    font-size: 20px;
    background: rgba(59, 47, 49, 0.7);
    width: 100px;
    text-align: center;
}

.aboutme-match .profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.aboutme-match .icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.aboutme-match .icons img {
    width: 40px;
    height: 40px;
}

.aboutme-match .match-divider {
    flex-grow: 1;
    height: 1px;
    border-top: 3px dashed #aaa;
    position: relative;
    padding: 0 5px;
}

.aboutme-match .match-divider::before,
.aboutme-match .match-divider::after {
    content: '●';
    position: absolute;
    top: -6px;
    color: #aaa;
    font-size: 25px;
}

.aboutme-match .match-divider::before {
    left: -8px;
    top: -18px;
}

.aboutme-match .match-divider::after {
    right: -8px;
    top: -18px;
}

.aboutme-match .profile-mate {
    background-color: #c89b3e;
    color: white;
    font-size: 50px;
    text-transform: uppercase;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .aboutme-match .champions {
  min-width: 50%; 
} */

.aboutme-match .champions {
    display: flex;
    gap: 5px;
    margin-top: 30px;
    width: 100%;
    justify-content: center;
    align-content: center;
    text-align: center;
}

.aboutme-match .champions img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.aboutme-match .champions.you img {
    border: 3px solid var(--main--red);
}

.aboutme-match .champions.mate img {
    border: 3px solid #c89b3e;
}

.aboutme-match .champions .lol-account {
    color: white;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.aboutme-match .champions .user-rating {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.user-rating-outside {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ddd2d2;
    border: none;
    border-radius: 10px;
    padding: 3px 7px;
}

.dark-mode .user-rating-outside {
    background-color: var(--dark-ligher-grey);
}

.other-data-profile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.btn_updateProfile {
    background: linear-gradient(135deg, var(--main--red), #8e2730);
    border-radius: 11px;
    width: 500px;
    min-height: 50px;
    height: fit-content;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border: none;
    text-shadow: 0.2px 0.2px 0.5px black;
    transition: transform 2s;
    font-size: 0.8rem;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100px;
    position: absolute;
    top: 60px;
    right: 20px;
    cursor: pointer;
}

.btn_updateProfile:hover {
    background: linear-gradient(
        135deg,
        var(--dark-ligher-grey),
        rgba(88, 86, 86, 0.9)
    );
}

.bonusPicture_ctn {
    width: 100%;
}

.bonusPicture_row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    margin-bottom: 20px;
}

.bonusPicture_wrapper {
    position: relative;
    width: 30%;
    overflow: hidden;
    border-radius: 8px;
}

.bonusPicture_delete {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
    width: 40px;
}

.user_bonuspicture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* LOADING INDICATOR */

#loading-indicator img {
    width: 50px;
    height: 50px;
}

.error-message {
    color: var(--main--red);
    font-size: 0.85em;
    margin-top: 5px;
}

/* Create Account Section (Non-user) */
#createURSGAccount {
    padding: 2rem;
    background-color: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 600px;
    margin: 2rem auto;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: black;
}

.dark-mode #createURSGAccount {
    background-color: var(--dark-grey);
    color: black;
}

#createURSGAccount.show {
    display: block;
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Smooth slide-up */
}

#createURSGAccount h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: black;
    text-transform: uppercase;
}

.dark-mode #createURSGAccount h2 {
    color: #f8f9fa;
}

#createURSGAccount p {
    font-size: 1rem;
    color: black;
    margin-bottom: 2rem;
}

.dark-mode #createURSGAccount p {
    font-size: 1rem;
    color: #d1d3d8;
    margin-bottom: 2rem;
}

#createURSGAccount a {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f07070, #87090e);
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

#createURSGAccount a:hover {
    background: linear-gradient(45deg, #87090e, #f07070);
    transform: scale(1.05);
}

#createURSGAccount a:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(0, 50, 255, 0.7); /* Glow effect when focused */
}

/* END OF PERSONALITY TEST */

/* SCROLL BAR */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-button {
    display: none;
}

::-webkit-scrollbar-track {
    background: none;
    margin: 0;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}

/* KOFI SECTION */

.kofi {
    background: linear-gradient(135deg, var(--main--red), #8e2730);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.kofi h2 {
    text-transform: uppercase;
    font-size: 2rem;
    font-family: 'Libre Franklin', sans-serif;
    text-align: center;
    font-weight: 700;
}

.kofi a {
    font-family: 'Geologica', sans-serif;
    color: white;
    text-decoration: none;
}

.kofi_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.kofi img {
    width: 100px;
    height: 80px;
}

/* DISCORD SECTION */

.discord {
    background: linear-gradient(135deg, #7289da, #2e419e);
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 30px;
}

.discord h2 {
    text-transform: uppercase;
    font-size: 2rem;
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 700;
    text-align: center;
}

.discord a {
    font-family: 'Geologica', sans-serif;
    color: white;
    text-decoration: none;
}

.discord_row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.discord i {
    font-size: 3rem;
    color: white;
}

/* SITE MAP PAGE */

section.siteMap {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
section.siteMap h1 {
    text-align: center;
    color: #333;
    margin-bottom: 20px;
}
section.siteMap table {
    width: 100%;
    border-collapse: collapse;
}
section.siteMap th,
section.siteMap td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}
section.siteMap th {
    background-color: #f8f8f8;
}
section.siteMap tr:nth-child(even) {
    background-color: #f9f9f9;
}

.dark-mode section.siteMap p,
.dark-mode section.siteMap h1,
.dark-mode section.siteMap table {
    color: white;
}

.dark-mode section.siteMap,
.dark-mode section.siteMap th {
    background-color: var(--dark-grey);
}

.dark-mode section.siteMap tr:nth-child(even) {
    background-color: var(--ligher--grey);
}

.download_app {
    display: flex;
    flex-direction: row;
    height: 10vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0px;
    background-color: var(--white);
}

.bottom_section {
    padding: 0 0 20px 20px;
}

.bottom_section_ctn {
    width: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottom_section p {
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
}

.download_app p {
    font-size: 1.5em;
    font-family: 'Geologica', sans-serif;
    color: rgb(41, 41, 41);
    text-shadow: 0.5px 0.5px 1px rgb(0, 0, 0);
}

.download_app a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#apple_logo,
#google_logo {
    max-width: 100%;
    height: auto;
    width: 150px;
}

.separator {
    height: 1px;
    background-color: rgb(44, 43, 43);
    margin: auto;
    width: 50%;
    text-align: center;
}

.frequently_asked_question {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 50px;
    background-color: var(--white);
}

.frequently_asked_question h2 {
    font-size: 5vh;
    font-family: 'Geologica', sans-serif;
    text-align: center;
}

.faq_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.faq_row_box {
    font-family: 'Geologica', sans-serif;
    width: 50%;
    height: auto;
    min-height: 200px;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 30px;
    background: linear-gradient(135deg, white, #e0e0e0);
}

.faq_row_box h3 {
    padding-bottom: 20px;
}

.selected-champion {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.selected-champion img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.section_form_signup {
    background-color: var(--white);
    padding: 50px 0px;
    overflow: hidden;
}

.form_container {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0.2px solid rgb(224, 209, 209);
    border-radius: 10px;
    position: relative;
    width: 80%;
    margin: 5% auto;
    background-color: rgb(248, 244, 244);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: column;
}

.checkbox-container input {
    margin: 5px 0 20px 0 !important;
}

.picture_with_form {
    width: 500px;
    height: auto;
}

.form_signup,
#championSelection {
    background-color: rgb(248, 244, 244);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    width: 50%;
    border-radius: 20px;
    position: relative;
    margin: auto;
}

.form_signup_mail {
    background-color: rgb(248, 244, 244);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 50px;
    width: 50%;
    border-radius: 20px;
    position: relative;
    margin: auto;
}

.form_signup img,
.form_signup_mail img,
#championSelection img {
    width: 100px;
    height: 100px;
}

.form_signup label.label-container,
.form_signup_mail label.label-container,
#championSelection label.label-container {
    display: flex;
    align-items: center;
}

.form-step {
    display: none;
    width: 100%;
}

.form-step.active {
    display: flex;
    flex-direction: column;
}

.form-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.form-navigation {
    margin-top: 30px;
    display: flex;
    justify-content: flex-start; /* default: left */
    width: 100%;
    gap: 10px; /* spacing between buttons */
}

.form-navigation button:last-child {
    margin-left: auto; /* push Next to the right */
}

/* When only one button is visible, align it right */
.form-navigation button:only-child {
    margin-left: auto;
}

/* Button base styles */
.form-navigation button {
    background: var(--main--red);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.form-navigation button:hover {
    background: var(--dark--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.form-navigation button:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

/* Previous button styling */
.form-navigation #prevBtn {
    background: #e0e0e0;
    color: #333;
}

.form-navigation #prevBtn:hover {
    background: #cfcfcf;
}

.server-btn {
    padding: 8px 12px;
    margin: 5px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}

.server-btn.selected {
    background-color: var(--main--red);
    color: white;
}
.server-btn.unselected {
    background-color: #6b6666;
    color: white;
}

.updateInterest {
    width: 30px;
    height: 30px;
    background-color: var(--main--red);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.updateInterest:hover {
    background: linear-gradient(
        135deg,
        var(--dark-ligher-grey),
        rgba(88, 86, 86, 0.9)
    );
}

.updateInterest i {
    width: 100%;
    color: white;
    font-size: 16px;
}

#picture_verify {
    border-radius: 50%;
    border: none;
    margin-bottom: 10px;
}

#verification_code {
    text-align: center;
}

#verify-button {
    padding: 10px 15px;
    background-color: rgb(18, 191, 18);
    border-radius: 20px;
    border: 1px solid black;
    color: white;
    cursor: pointer;
    width: 20%;
}

#verify-button:hover {
    background-color: var(--ligher--grey);
    color: white;
}

span.form-error {
    display: block;
    background-color: rgba(255, 100, 100, 1);
    color: white;
    padding: 1em;
    border: 5px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.form-error-message {
    display: none;
    background-color: rgba(255, 100, 100, 1);
    color: white;
    padding: 1em;
    border: 5px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.form_signup p,
.form_signup_mail p {
    font-size: 1.5vh;
    font-family: Arial, Helvetica, sans-serif;
}

.form_signup a,
.form_signup_mail a {
    font-size: 1.5vh;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: rgb(22, 90, 186);
}

.form_signup a:hover,
.form_signup_mail a:hover {
    text-decoration: underline rgb(22, 90, 186);
}

.form_signup label,
.form_signup_mail label {
    margin: 5px 0px;
    font-family: 'Geologica', sans-serif;
    font-size: 3vh;
}

.form_signup select,
.form_signup input,
.form_signup_mail select,
.form_signup_mail input {
    margin: 20px 0px;
    font-family: 'Geologica', sans-serif;
    font-size: 2vh;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
}

.fix_form_padding {
    padding-bottom: 20px;
}

.form_signup input,
.form_signup textarea,
.form_signup select {
    border-radius: 5px;
    text-align: center;
    border: 0.5px solid black;
    width: 100%;
}

.form_signup textarea {
    margin: 10px 0px 30px 0px;
    width: 100%;
    resize: vertical;
}

/* UPDATED CHAMPION SELECTION */

.shadow {
    filter: brightness(0.6);
}

#champion-picker {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

#champion-picker .champions-picker-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

#champion-picker .champions-picker-column img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--main--red);
    cursor: pointer;
}

#champion-picker .champions-picker-column {
    font-size: 1.5rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
}

#champion-picker #skipSelection-btn {
    background-color: var(--main--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 20px;
    border: none;
    font-size: 1.5rem;
    font-family: 'Geologica', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.champion-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.champion-modal .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
    width: 90%;
    position: relative;
}

.dark-mode .champion-modal .modal-content {
    background-color: var(--dark-ligher-grey);
}

.champion-modal .modal-content .close-btn {
    position: absolute;
    top: 5px;
    right: 15px;
    border: none;
    background: none;
    font-size: 40px;
    cursor: pointer;
    color: var(--main--red);
}

.champion-modal .modal-content .champion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 500px;
    overflow-y: auto;
}

.champion-modal .modal-content .champion-list img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
}

.champion-modal .modal-content .champion-search {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    margin-top: 50px;
    font-size: 20px;
}

#selected-champions1,
#selected-champions2,
#selected-champions3,
#selected-agents1,
#selected-agents2,
#selected-agents3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#errorSpan_form {
    color: var(--main--red);
    font-size: 1em;
    font-weight: 600;
}

#send-button,
#skip-preferences-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 8px;
}

/* Primary button (send) */
#send-button {
    background: rgb(43, 121, 199);
}

#send-button:hover {
    background: rgba(43, 121, 199, 0.85);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* Secondary button (skip) */
#skip-preferences-btn {
    background: var(--main--red);
}

#skip-preferences-btn:hover {
    background: var(--dark--red);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.dark-mode #skip-preferences-btn {
    color: white;
}

#selected-roles-valorant,
#selected-ranks-valorant,
#selected-ranks-lol,
#selected-roles {
    display: flex;
    align-items: center;
    justify-content: center;
}

#search {
    padding: 5px 0px;
}

#main {
    padding: 10px 0px;
}

#searchValorant {
    padding: 5px 0px;
}

#main_Valorant {
    padding: 10px 0px;
}

label[for='main1'],
label[for='main2'],
label[for='main3'],
label[for='main_valorant1'],
label[for='main_valorant2'],
label[for='main_valorant3'] {
    display: block;
    margin-bottom: 10px;
    font-size: 2vh;
}

label[for='account_lol'],
label[for='account_valorantt'] {
    display: block;
    margin-bottom: 20px;
}

.button-remove {
    padding: 10px;
    border: 1px solid rgb(203, 82, 66);
    color: #cb5242;
    border-radius: 20px;
}

.button-remove:hover {
    border: 1px solid white;
    color: white;
    background-color: #cb5242;
}

.form_signup h2,
.form_signup_mail h2 {
    font-size: 3vh;
    font-family: 'Geologica', sans-serif;
    margin-bottom: 20px;
}

#title_form_login {
    font-size: 3vh;
}

#popupMain1,
#popupMain2,
#popupMain3 {
    display: none;
    z-index: 100;
    position: relative;
    top: 50%;
    width: 100%;
    height: fit-content;
    max-height: 500px;
    overflow: scroll;
    border-radius: 50px;
}

#popupMain1.open,
#popupMain2.open,
#popupMain3.open {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main1Ul li,
.main2Ul li,
.main3Ul li {
    display: none;
}

.main1Ul,
.main2Ul,
.main3Ul {
    margin-bottom: 20px;
}

.main1Ul img,
.main2Ul img,
.main3Ul img {
    width: 50px;
    height: fit-content;
}

#main1 {
    z-index: 1000;
    position: absolute;
}

#btnMain1,
#btnMain2,
#btnMain3 {
    background-color: rgb(161, 41, 41);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 7px 12px;
    margin-bottom: 10px;
}

#search1,
#search2,
#search3 {
    width: 50%;
}

.google_needed {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.noUserToSee {
    margin-top: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notFound {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.notFound h2 {
    color: var(--main--red);
    font-size: 10vh;
    font-family: 'Libre Franklin', sans-serif;
    padding: 30px;
    text-align: center;
    font-weight: 800;
    text-transform: uppercase;
}

.dark-mode .notFound h2,
.dark-mode .notFound a {
    color: var(--main--red);
}

.notFound p {
    font-size: 4vh;
    font-family: 'Geologica', sans-serif;
    text-align: center;
}

.notFound a {
    text-decoration: none;
    color: var(--main--red);
}

.notFound p a:hover {
    color: var(--ligher--grey);
}

.google_needed h2,
.noUserToSee h2 {
    font-family: 'Libre Franklin', sans-serif;
    font-size: 4vh;
    text-align: center;
    gap: 20px;
}

.google_needed p,
.noUserToSee p {
    font-size: 2vh;
    font-family: 'Geologica', sans-serif;
}

.no_friend {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.no_friend h2 {
    font-family: 'Geologica', sans-serif;
    font-size: 4vh;
    padding: 30px;
}

.img-preview {
    width: auto;
    height: 30px;
}

.btn_uploadPicture {
    background-color: var(--main--red);
    color: white;
    border-radius: 20px;
    padding: 5px 10px;
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    box-sizing: border-box;
}

#friendSearch {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border-radius: 20px;
    border: none;
    box-sizing: border-box;
}

.dark-mode #friendSearch {
    background-color: var(--dark-ligher-grey);
    color: white;
}

.toggle-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
    font-size: 16px;
    color: var(--main--red);
    cursor: pointer;
}

.toggle-label input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border-radius: 50%;
    background-color: var(--light-grey);
    transition: background-color 0.3s, transform 0.3s;
    accent-color: var(--main--red);
}

.toggle-label input:checked {
    background-color: var(--main--red);
    transform: scale(1.1);
}

.toggle-label input:checked + span {
    color: var(--main--red);
}

.dark-mode .toggle-label input {
    background-color: var(--dark-ligher-grey);
}

.dark-mode .toggle-label input:checked {
    background-color: var(--dark-red);
}

.toggle-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: black;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 10px 10px 15px;
    border-radius: 20px;
    background-color: #e9dfdf;
    box-sizing: border-box;
    margin-bottom: 5px;
}

.dark-mode .toggle-wrapper {
    color: white;
    background-color: #2f3136;
}

/* Toggle Text */
.toggle-text {
    margin-right: 15px;
    font-family: 'Open Sans', sans-serif;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 28px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    border-radius: 34px;
    transition: background-color 0.3s;
}

.slider:before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

input:checked + .slider {
    background-color: #4caf50;
}

input:checked + .slider:before {
    transform: translateX(22px);
}

#lol-fields,
#valorant-fields {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.user_page {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    background-color: rgb(243, 237, 237);
    position: relative;
}

.profile-picture-container {
    position: relative;
    display: inline-block;
    width: 220px;
    height: 220px;
}

#image_users {
    height: 200px;
    width: 200px;
    border-radius: 50%;
    word-wrap: break-word;
    display: block;
    border: 10px solid var(--main--red);
}

.frame_around_picture {
    position: absolute;
    top: -49px;
    left: -105px;
    width: 438px;
    height: 320px;
    pointer-events: none;
}

#image_users_small {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

#image_users {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}
#image_users:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

#user_page_username {
    font-family: 'Geologica', sans-serif;
    font-size: 5vw;
    margin-left: 10px;
}

.user_page_update {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0, white);
    width: 95%;
    margin-top: 20px;
    border-radius: 30px;
}

.user_page_update_name {
    text-align: center;
    width: calc(100% - 120px);
    overflow: hidden;
    word-break: break-word;
    margin-left: 10px;
    position: relative;
}

.user_page_main_content_row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 30px;
    position: relative;
}

.report-feedback {
    position: absolute;
    top: 40px;
    right: 150px;
    font-size: 1.2em;
    font-weight: 800;
    color: var(--main--red);
}

/* Report Modal */

#report-modal .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    max-width: 700px;
    min-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    color: black;
    text-align: center;
}

#filter-modal .modal-content,
#filter-modal-no-users .modal-content,
#lookingfor-modal .modal-content,
#signup-modal .modal-content,
#riot-modal .modal-content,
#tournament-modal .modal-content,
#rating-modal .modal-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    width: 90%;
    max-width: 500px;
    min-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    color: black;
    text-align: center;
    z-index: 500000;
}

#rating-score {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: none;
    padding: 10px;
    font-size: 1.2em;
    margin-top: 20px;
    background-color: var(--main--red);
    color: white;
}

#rating-score option {
    color: white;
}

.user-rating,
.user-rating-outside {
    font-size: 1em;
}

.star {
    font-size: 1.5em;
    margin-right: 2px;
}

.user-rating .full-star,
.user-rating-outside .full-star {
    color: var(--main--red) !important;
}

.empty-star {
    color: rgba(96, 91, 91, 0.5) !important;
}

.tournament-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-bottom: 20px;
}

#filter-modal,
#filter-modal-no-users,
#riot_modal {
    display: none;
}

.report-textarea {
    text-align: left;
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.low-opacity {
    opacity: 0.4;
}

.report-textarea label {
    font-size: 1.2em;
    font-weight: 600;
}

#report-modal h2,
#lookingfor-modal h2,
#signup-modal h2,
#riot-modal h2,
#tournament-modal h2,
#rating-modal h2 {
    color: black;
    font-size: 1.5em;
    font-weight: 800;
}

#report-modal .report-modal-p,
#lookingfor-modal .lookingfor-modal-p,
#signup-modal p,
#riot-modal p,
#tournament-modal p,
#rating-modal p {
    color: rgb(77, 73, 73);
    margin-top: 30px;
}

#lookingfor-modal .lookingfor-modal-p a,
#riot-modal p a,
#rating-modal p a {
    color: var(--main--red);
    text-decoration: none;
    cursor: pointer;
}

.dark-mode #report-modal .report-modal-p,
.dark-mode #lookingfor-modal .lookingfor-modal-p,
.dark-mode #signup-modal p,
.dark-mode #riot-modal p,
.dark-mode #tournament-modal p,
.dark-mode #rating-modal p {
    color: rgb(184, 170, 170);
    margin-top: 30px;
}

.dark-mode #report-modal h2,
.dark-mode #lookingfor-modal h2,
.dark-mode #signup-modal h2,
.dark-mode #riot-modal h2,
.dark-mode #tournament-modal h2,
.dark-mode #rating-modal h2 {
    color: white;
}

.dark-mode #report-modal .modal-content,
.dark-mode #filter-modal .modal-content,
.dark-mode #filter-modal-no-users .modal-content,
.dark-mode #lookingfor-modal .modal-content,
.dark-mode #signup-modal .modal-content,
.dark-mode #riot-modal .modal-content,
.dark-mode #tournament-modal .modal-content,
.dark-mode #rating-modal .modal-content {
    background-color: var(--dark-ligher-grey);
    color: white;
}

#report-modal {
    position: relative;
    z-index: 9000;
}

#report-modal .close,
#lookingfor-modal .close,
#signup-modal .close,
#riot-modal .close,
#tournament-modal .close,
#rating-modal .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--main--red);
    font-size: 40px;
    font-weight: 800;
    cursor: pointer;
}

#filter-modal .close,
#filter-modal-no-users .close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: var(--main--red);
    font-size: 40px;
    font-weight: 800;
    cursor: pointer;
}

/* User Info */
#report-modal .user-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    border: 1px solid var(--ligher--grey);
    border-radius: 50px;
    padding: 10px;
}

#report-username {
    font-size: 2em;
    font-weight: 800;
    font-family: 'Libre Franklin', sans-serif;
}

#report-modal .user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Description Box */
#report-modal textarea,
#lookingfor-modal textarea {
    width: 90%;
    height: 120px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    resize: none;
    background-color: #e0e0e0;
    color: black;
}

.dark-mode #report-modal textarea,
.dark-mode #lookingfor-modal textarea {
    background-color: white;
}

.label-container {
    width: 100%;
    text-align: left;
    padding-left: 20px;
    padding-bottom: 10px;
}

.dark-mode #report-modal textarea,
.dark-mode #lookingfor-modal textarea {
    background-color: var(--dark-grey);
    color: white;
}

/* Report Button */
#report-modal #submit-report,
#lookingfor-modal #submit-lookingfor,
.tournament-button,
#rating-modal #submit-rating {
    margin-top: 15px;
    background-color: var(--main--red);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    width: 30%;
}

.btn-update-Riot,
#submit-riot {
    background-color: var(--main--red);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
    width: fit-content;
    display: block;
}

.riot-modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.btn-update-Riot:hover,
#submit-riot:hover {
    background-color: var(--dark--red);
}

#report-modal #submit-report:hover,
#lookingfor-modal #submit-lookingfor:hover,
.tournament-button:hover,
#rating-modal #submit-rating:hover {
    opacity: 0.9;
}

#lookingfor-modal #lookingfor-account {
    margin-top: 10px;
    width: 80%;
    padding: 5px 20px;
    border-radius: 20px;
    border: none;
    font-size: 14px;
    resize: none;
    background-color: #e0e0e0;
    color: black;
    text-align: center;
    box-sizing: border-box;
}

.dark-mode #lookingfor-modal #lookingfor-account {
    background-color: var(--dark-grey);
    color: white;
}

#lookingfor-modal #lookingfor-message {
    margin-top: 10px;
}

.report-modal-hidden,
.lookingfor-modal-hidden,
.signup-modal-hidden,
.riot-modal-hidden,
.tournament-modal-hidden,
.rating-modal-hidden {
    display: none;
}

/* End report modal */

.user_page_update_row,
.user_page_update_row_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 20px;
    width: 100%;
}

.user_page_update_row a,
.user_page_update_row_buttons a {
    text-decoration: none;
}

.user_page_update_row a:hover,
.user_page_update_row_buttons:hover {
    color: red;
}

.user_page_picture {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-shrink: 0;
}

.user_page_main_league,
.user_page_main_valorant {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 0.5vh;
}

.user_page_discord {
    display: flex;
    flex-direction: column;
}

#hidden_p {
    display: none;
    padding-top: 5px;
}

#popup_user_picture {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.top-part-about {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-users-containers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: fit-content;
    margin: 10px 0;
}

.about-uses-title {
    font-size: 2vh;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    color: black;
}

.about-users-box p {
    color: rgb(107, 101, 101);
}

.dark-mode .about-users-box p {
    color: rgb(48, 47, 47);
}

.about-users-box .about-users-selected {
    color: black;
    font-weight: 600;
    font-size: 1.75vh;
}

.dark-mode .about-users-box .about-users-selected {
    color: white;
}

.dark-mode .about-uses-title {
    font-size: 2vh;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
    color: white;
}

.about-users-box {
    background-color: #e0e0e0;
    padding: 10px 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 300px;
}
.about-users-box-bio {
    background-color: #ddd2d2;
    height: fit-content;
    padding: 10px 10px;
    border-radius: 20px;
    border: none;
}

.about-users-bio-mobile .about-users-box-bio {
    width: 100%;
}

.about-users-low-opacity {
    opacity: 0.3;
}

.about-users-bio-desktop {
    margin-top: 10px;
    display: block;
}

.about-users-bio-mobile {
    margin-top: 10px;
    display: none;
}

.dark-mode .about-users-box,
.dark-mode .about-users-box-bio {
    background-color: var(--dark-grey);
}

.about-users-box img {
    width: 30px;
    height: 30px;
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-users-box .about-users-selected {
    opacity: 1;
    transform: scale(1.2);
}

.about-users-box img:hover {
    opacity: 0.7;
    cursor: pointer;
}

/* Style pour le bouton de fermeture */
#closeButton_user_picture,
#closeButton_social_links,
#closeButton,
.closeButton,
#closeButton_user_picture_bonus {
    position: absolute;
    top: 5px;
    right: 10px;
    color: #fff;
    background-color: var(--main--red);
    border: none;
    border-radius: 50%;
    padding: 5px 9px;
    cursor: pointer;
}

#closeButton_user_picture:hover,
#closeButton_social_links:hover,
#closeButton:hover,
.closeButton:hover,
#closeButton_user_picture_bonus:hover {
    background-color: var(--ligher--grey);
}

/* General styling for the pictures row */
.pictures-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
}

.pictures-rowTest {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    align-items: center;
}

/* Styling for each picture wrapper */
.picture-wrapper,
.picture-wrapper-swiping {
    position: relative;
    width: calc(50% - 10px); /* Two pictures per row with space between */
    border-radius: 8px;
}

.pictures-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Styling for the image */
.user-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

#bonus-picture-container {
    display: none;
}

/* Styling for the delete button */
.delete-picture {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.delete-picture:hover {
    background-color: rgba(0, 0, 0, 0.8); /* Darker background on hover */
}

#discord_picture {
    width: 64px;
    height: 64px;
}

.social_picture {
    transition: transform 2s;
}

.social_picture:hover {
    transform: scale(1.5);
}

.btn_user_updates {
    background: linear-gradient(135deg, var(--main--red), #8e2730);
    border-radius: 11px;
    width: 500px;
    min-height: 50px;
    height: fit-content;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border: none;
    text-shadow: 0.2px 0.2px 0.5px black;
    transition: transform 2s;
    font-size: 0.8rem;
    padding: 0 10px;
    box-sizing: border-box;
}

.btn_addPicture {
    background: linear-gradient(135deg, var(--main--red), #8e2730);
    border-radius: 11px;
    width: 500px;
    min-height: 50px;
    height: fit-content;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border: none;
    text-shadow: 0.2px 0.2px 0.5px black;
    transition: transform 2s;
    font-size: 0.8rem;
    padding: 0 10px;
    box-sizing: border-box;
    width: 100px;
}

.btn_addPicture:hover,
.btn_addPictureTest:hover {
    background: linear-gradient(
        135deg,
        var(--dark-ligher-grey),
        rgba(88, 86, 86, 0.9)
    );
    transform: scale(1.05);
    cursor: pointer;
}

.btn_user_updates > i {
    padding-right: 5px;
    display: flex;
    align-items: center;
}

.btn_user_updates:hover {
    background: linear-gradient(
        135deg,
        var(--dark-ligher-grey),
        rgba(88, 86, 86, 0.9)
    );
    transform: scale(1.05);
    cursor: pointer;
}

.form_signup img.images_update,
.form_signup_mail img.images_update,
#championSelection img.images_update {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    padding: 0 5px;
}

.user_page_main_content,
.user_page_main_content-swiping {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 95%;
    gap: 50px;
}

.league_of_legends_user {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.league_of_legends_user_column {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 5px;
}

#league_champions_user,
.league_champions_user {
    border-radius: 1000px;
    display: flex;
    flex-direction: column;
    width: 3vh;
    height: auto;
}

.about_you_users p {
    font-size: 1.5vh;
    font-family: Arial, Helvetica, sans-serif;
}

.about_you_users .font-weight-600 {
    font-weight: 600;
}

.font-weight-600 {
    font-weight: 600;
}

.no_display_phone {
    color: #504e4e;
    font-size: 10px;
}

#no_display_phone {
    color: #504e4e;
}
.user_box .title_generalbox,
dialog .title_generalbox,
.friendrequest_box .title_generalbox,
.friendlist-page .title_generalbox {
    font-size: 3vh;
    font-family: 'Geologica', sans-serif;
    color: #cb5242;
    text-shadow: 0.5px 0.5px 1px black;
}

#age_user {
    font-family: 'Geologica', sans-serif;
    font-size: 2vh;
}

#friendrequest-backend {
    color: var(--main--red);
    padding: 10px;
    font-size: 1.5em;
    font-weight: 600;
}

.friend_request_ctn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 95%;
    padding: 10px 20px;
    box-sizing: border-box;
    background-color: #e1d0d0;
    border-radius: 20px;
    width: 95%;
    margin: 0 auto 10px auto;
}

.dark-mode .friend_request_ctn {
    background-color: #474242;
}

.friend_request_ctn p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.friend_request_ctn p a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

.friend_request_ctn p a:hover {
    color: var(--dark--red);
}

.friend_request_ctn_btn {
    display: flex;
    gap: 10px;
}

.user_box {
    padding: 10px 20px;
    background: linear-gradient(135deg, white, #e0e0e0);
    margin-top: 20px;
    margin-bottom: 20px;
    width: 40%;
    border-radius: 20px;
}

.general_box {
    padding: 10px 20px;
    background: linear-gradient(135deg, white, #e0e0e0);
    margin-top: 20px;
    width: 40%;
    border-radius: 20px;
}

#message_text {
    width: 95%;
    border: 2px solid rgb(36, 34, 34);
    padding: 10px;
    border-radius: 50px;
    max-width: 60%;
    position: relative;
}

.discord-link {
    color: black !important;
    font-weight: bold;
    text-decoration: none;
    padding: 5px 10px;
    background-color: white; /* Dark background to match Discord theme */
    border-radius: 5px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.dark-mode .discord-link {
    background-color: #36393f; /* Dark background to match Discord theme */
    color: white !important;
}

.discord-link:hover {
    background-color: #5865f2; /* Lighter blue on hover */
    transform: scale(1.05); /* Slight zoom effect */
    color: white !important;
}

#discord-create {
    background: none;
    border: none;
    cursor: pointer;
}

#discord-create i {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 5px;
}

.dark-mode #discord-create i {
    color: white;
}

#confirmationModalDiscord {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* Basic Modal Styles */
#confirmationModalDiscord .modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#confirmationModalDiscord .modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.dark-mode #confirmationModalDiscord .modal-content {
    background: var(--dark-grey);
    color: white;
}

#confirmationModalDiscord .modal-footer {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    gap: 20px;
}

#confirmationModalDiscord .btn {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#confirmationModalDiscord .btn-primary {
    background-color: #4caf50; /* Green */
    color: white;
}

#confirmationModalDiscord .btn:hover {
    opacity: 0.8;
}

#confirmationModalDiscord .btn-primary:hover {
    background-color: #45a049; /* Darker green */
}

#reply-preview {
    display: none;
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translate(-50%, -10px);
    background: #b2a0a0;
    color: white;
    padding: 10px;
    border-radius: 5px;
    white-space: nowrap;
}

.replied-message {
    background: #b2a0a0;
    color: white;
    border: none;
    border-radius: 20px;
    cursor: pointer;
}

.replied-message.inverted {
    background-color: var(--main--red);
}

.dark-mode .replied-message.inverted {
    background-color: var(--main--red);
}

.dark-mode .replied-message {
    background: #565151;
}

.hover-menu {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
    z-index: 1002;
}

.hover-menu .menu-button {
    position: relative;
    z-index: 1002;
    font-size: 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 40px;
}

.hover-options {
    display: none; /* Initially hidden */
    position: absolute;
    top: 100%; /* Position below the hover menu */
    left: 0;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 150px;
    z-index: 1001;
    margin-top: 5px;
    padding: 5px 0;
}

.dark-mode .hover-options {
    background-color: var(--dark-ligher-grey);
}

/* Individual Option Styling */
.hover-options button {
    width: 100%;
    padding: 10px;
    text-align: left;
    border: none;
    background-color: transparent;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
    border-radius: 4px;
}

.dark-mode .hover-options button {
    color: white;
}

/* Hover Effect on Buttons */
.hover-options button:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

/* Option Divider */
.hover-options button + button {
    border-top: 1px solid #eee;
}

.message-to-user .hover-menu {
    margin-left: 5px;
}

.message-from-user .hover-menu {
    margin-right: 20px;
}

.dark-mode #reply-preview {
    background-color: #565151;
}

#username_message {
    padding-top: 20px;
}

.message-text {
    display: inline-block;
    border-radius: 20px;
    background-color: var(--main--red);
    border: none;
    padding: 7px 35px 7px 14px;
    color: white;
    margin-bottom: 5px;
    max-width: 70%;
    word-wrap: break-word;
    position: relative;
    line-height: 30px;
}

.message-status {
    font-size: 12px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.7);
    align-self: flex-end;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.message-status i {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.message-sender {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 5px;
}

.message-receiver {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 5px;
}

#toggleEmotePicker i {
    font-size: 1.5rem;
}

.avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 5px;
}

.send-message-button {
    display: none;
}

.reply-box {
    margin-top: 10px;
    text-align: center;
    width: 100%;
    position: relative;
    padding-bottom: 10px;
}

.messages-container {
    min-height: 87.5vh;
    width: 100%;
    display: block;
    margin: 20px auto 0px auto;
    overflow: hidden;
    max-width: 100%;
    padding-right: 20px;
    background-color: #f4eeee;
}

.unread-separator span {
    display: block;
    text-align: center;
    font-size: 1.2em;
    color: var(--main--red) !important;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

.unread-separator hr {
    border: none;
    border-top: 2px solid var(--main--red);
    margin: 5px 0;
    width: 100%;
}

.friendrequest_box {
    padding: 10px 20px;
    background: linear-gradient(135deg, #ede9e9, white);
    margin-top: 20px;
    width: 85%;
    border-radius: 20px;
    box-sizing: border-box;
}

.main_box {
    width: 100%;
    padding: 10px 0;
    border-radius: 20px;
    position: relative;
}

.box_league_account {
    width: 100%;
    font-family: 'Geologica', sans-serif;
    position: relative;
}

#lolUserText {
    cursor: pointer;
    user-select: none; /* Prevent text selection */
    position: relative;
}

.accountBinded {
    position: absolute;
    top: 0px;
    right: 0px;
}

.rank-container img {
    width: 50px;
    height: 50px;
}

.fa-copy {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s;
}

.fa-copy.visible {
    opacity: 1;
}

.box_league_account_main_row {
    display: flex;
    flex-direction: row;
    gap: 2vh;
}

.box_league_account_main_row_column {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-top: 10px;
}

.box_pictureLevel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.box_usernameChampions {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.box_league_account_main_row_column .small_text {
    color: rgb(72, 69, 69);
}

#lolServer {
    padding: 0 0 10px 0;
}

#myForm {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.notification-span {
    display: none;
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: var(--main--red);
    color: white;
    border-radius: 20px;
    padding: 5px;
    font-size: 1.5vh;
}

.emote-picker {
    position: relative;
    display: inline-block;
}

.emote-container {
    position: absolute;
    bottom: 100%;
    left: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 2px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 90px;
    border-radius: 5px;
}

.dark-mode .emote-container {
    background: var(--dark-grey);
    border: 1px solid var(--dark-ligher-grey);
}

.emote {
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin: 2px;
}

.replied-message .emote {
    width: 20px;
    height: 20px;
    margin: unset;
}

#toggleEmotePicker {
    background: none;
    border: none;
    cursor: pointer;
}

.box_pictureLevel #profilepicture_lol {
    width: 50px;
    height: 50px;
    border-radius: 50px;
}

.friend-list {
    width: 100%;
    position: relative;
}

.friend {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    cursor: pointer;
}

.friend-details-top {
    display: flex;
    align-items: center;
    margin-right: 20px;
}

.friend-details-top p {
    font-size: 0.8em;
    font-weight: 600;
}

.friends-lol-username {
    cursor: pointer;
    user-select: none;
    position: relative;
}

.friend-details img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
}

.friend-details-top img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.friend-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.friend-avatar {
    position: relative;
}

.looking-game-status {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #722084, #b026cf);
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#looking-for-button {
    background: linear-gradient(135deg, #722084, #b026cf);
    border-radius: 20px;
    padding: 10px 10px 10px 15px;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: left;
    border: none;
    cursor: pointer;
    margin: 10px 0px;
    width: 100%;
    font-size: 14px;
}

.friend-name {
    font-weight: bold;
}

.friend-last-message {
    color: #888888;
    overflow-y: auto;
}

#messages {
    height: 73vh;
    min-height: calc(var(--vh, 1vh) * 65);
    overflow-y: auto;
    padding: 10px;
    scroll-behavior: smooth;
}

#friendTop {
    padding: 10px;
    border-bottom: 1px solid rgb(219, 207, 207);
    border-radius: 10px 10px 0 0;
    background-color: #bcb7b7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
}

.dark-mode #friendTop {
    border-bottom: 1px solid var(--dark-ligher-grey);
    background-color: var(--dark-ligher-grey);
}

.dark-mode #friendTop {
    color: white;
}

.message-to-user {
    width: 100%;
}

.preview-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.preview-name {
    font-weight: bold;
}

.preview-last-message {
    color: #888888;
}

.accept_friend_button {
    background: #93c47d;
    border-radius: 11px;
    font-size: 20px;
    padding: 7px 10px;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border: none;
    cursor: pointer;
}

.accept_friend_button button,
.refuse_friend_button button {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
}

.refuse_friend_button {
    background: #e06666;
    border-radius: 11px;
    font-size: 20px;
    padding: 7px 10px;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    border: none;
    cursor: pointer;
}

.refuse_friend_button:hover,
#accept_friend_button:hover {
    background-color: var(--dark-ligher-grey);
}

.timestamp {
    font-size: 1vh;
}

.strong_text {
    font-size: 2.2vh;
    font-family: 'Geologica', sans-serif;
}

.last-message .timestamp-hover {
    font-weight: 200;
    padding: 0 10px;
    color: grey;
}

.last-message {
    font-family: Arial, Helvetica, sans-serif;
    word-wrap: break-word;
    display: flex;
    align-items: center;
}

.last-message.normal .timestamp-hover {
    order: 1;
}

.last-message.normal .message-text {
    order: 2;
}

.last-message.inverted .timestamp-hover {
    order: 2;
}

.last-message.inverted .message-text {
    order: 1;
    background-color: #bcb7b7;
}

.last-message.inverted .hover-menu {
    order: 3;
}

.dark-mode .last-message.inverted .message-text {
    background-color: var(--dark-ligher-grey);
}

.popup-content {
    padding: 20px;
}

.confirmation-button {
    display: inline-block;
    margin-right: 10px;
    border-radius: 20px;
    padding: 7px 10px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}

.confirmation-button:hover {
    background-color: var(--ligher--grey);
}

.button_container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

#confirmationPopup {
    gap: 20px;
}

.blocked-users-image {
    max-width: 100%;
    max-height: 100%;
}

/* DARK MODE */

.dark-mode .user_page {
    background-color: var(--dark-grey);
}

.dark-mode #legalNotice,
.dark-mode #termsOfService,
.dark-mode #CSAE {
    color: white;
}

.dark-mode #legalNotice h1,
.dark-mode #legalNotice h2,
.dark-mode #termsOfService h1,
.dark-mode #termsOfService h2,
.dark-mode #CSAE h1,
.dark-mode #CSAE h2 {
    color: var(--dark--red);
}

.dark-mode #legalNotice a,
.dark-mode #termsOfService a,
.dark-mode #CSAE a {
    color: var(--dark--red);
}

.dark-mode .user_page_update {
    background: linear-gradient(135deg, #171616, var(--dark-ligher-grey));
}

.dark-mode .user_page_main_content,
.dark-mode .user_page_main_content-swiping {
    background-color: var(--dark-grey);
}

.dark-mode .user_page_main_content_row {
    background: linear-gradient(135deg, #171616, var(--dark-ligher-grey));
    border-radius: 20px;
}

.dark-mode .general_box,
.dark-mode .user_box {
    background: linear-gradient(135deg, var(--dark-ligher-grey), #1e1d1d);
    border-radius: 20px;
}

.dark-mode p {
    color: white;
}

.dark-mode span {
    color: white;
}

.dark-mode a {
    color: white;
}

.dark-mode h2 {
    color: white;
}

.dark-mode .messages-container {
    background-color: var(--dark-grey);
}

.dark-mode .message_text {
    background-color: var(--dark-ligher-grey);
    color: grey;
}

.dark-mode .user_page {
    background-color: var(--dark-grey);
}

.dark-mode .lookingfor_box {
    background: linear-gradient(135deg, var(--dark-ligher-grey), #171616);
}

.dark-mode .friendrequest_box {
    background: linear-gradient(135deg, #242323, var(--dark-ligher-grey));
}

.dark-mode .download_app {
    background-color: var(--dark-grey);
}

.dark-mode .separator {
    background-color: rgb(93, 83, 83);
}

.dark-mode .frequently_asked_question {
    background-color: var(--dark-grey);
}

.dark-mode .faq_row {
    background-color: var(--dark-grey);
}

.dark-mode .faq_row_box {
    background: linear-gradient(135deg, var(--dark-ligher-grey), #171616);
}

.dark-mode .faq_row_box h3 {
    color: white;
}

.dark-mode .section_form_signup {
    background-color: var(--dark-grey);
}

.dark-mode .form_signup,
.dark-mode .form_signup_mail,
.dark-mode #championSelection {
    background-color: var(--dark-ligher-grey);
}

.dark-mode .form_signup input,
.dark-mode .form_signup_mail input,
.dark-mode #championSelection input {
    background-color: var(--ligher--grey);
    color: white;
}

.dark-mode .form_signup textarea,
.dark-mode .form_signup_mail textarea,
.dark-mode #championSelection textarea {
    background-color: var(--ligher--grey);
    color: white;
}

.dark-mode .form_signup select,
.dark-mode .form_signup_mail select,
.dark-mode #championSelection select {
    background-color: var(--ligher--grey);
    color: white;
}

.dark-mode .form_signup option,
.dark-mode .form_signup_mail option,
.dark-mode #championSelection option {
    background-color: var(--ligher--grey);
    color: white;
}

.dark-mode .form_signup label,
.dark-mode .form_signup_mail label,
.dark-mode #championSelection label {
    color: white;
}

.dark-mode {
    background-color: var(--dark-grey);
}

.dark-mode .form_signup input,
.dark-mode .form_signup textarea,
.dark-mode .form_signup select,
.dark-mode #championSelection option {
    border: 0.5px solid white;
}

.dark-mode .reply-box input[type='text']:focus,
.dark-mode .reply-box textarea:focus {
    color: rgb(194, 181, 181);
}

.dark-mode .no_display_phone {
    color: rgb(218, 207, 207);
}

.dark-mode #no_display_phone {
    color: rgb(218, 207, 207);
}

.dark-mode .user_page_update_name {
    color: white;
}

.dark-mode span.friendlist-name a {
    color: white;
}

/* LEGAL NOTICE PAGE */

#legalNotice,
#termsOfService,
#CSAE {
    padding: 20px;
    max-width: 1100px;
    margin: auto;
}

#legalNotice h1,
#legalNotice h2,
#termsOfService h1,
#termsOfService h2,
#CSAE h1,
#CSAE h2 {
    color: var(--main--red);
    text-transform: uppercase;
    font-family: 'Libre Franklin', sans-serif;
}

#legalNotice h1,
#termsOfService h1,
#CSAE h1 {
    text-align: center;
    margin: 20px 0;
    font-size: 2rem;
}

#legalNotice h2,
#termsOfService h2,
#CSAE h2 {
    border-bottom: 2px solid #ccc;
    border-top: 2px solid #ccc;
    padding-bottom: 10px;
    padding-top: 10px;
    margin: 20px 0;
    font-size: 1.5rem;
}

#legalNotice h3 {
    margin: 20px 0;
    font-size: 1.3rem;
    font-family: 'Libre Franklin', sans-serif;
}

#legalNotice h4 {
    margin: 10px 0;
    font-size: 1.2rem;
    font-family: 'Libre Franklin', sans-serif;
}

#legalNotice ul {
    margin: 20px 0;
    padding-left: 30px;
}

#legalNotice ul li {
    margin: 10px 0;
    font-family: 'Geologica', sans-serif;
}

#legalNotice .date,
#termsOfService .date {
    font-style: italic;
    font-weight: 200;
    margin-bottom: 3px;
}

#legalNotice p,
#termsOfService p {
    padding: 5px 0;
    font-family: 'Geologica', sans-serif;
}

#legalNotice a,
#termsOfService a,
#CSAE a {
    text-decoration: none;
    color: var(--main--red);
}

/* BLOCKLIST PAGE */

.block_user {
    color: #e06666;
    border: 1px solid #e06666;
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

.unfriend_user {
    color: #e0ad66;
    border: 1px solid #e0ad66;
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

.unblock_user {
    color: #93c47d;
    border: 1px solid #93c47d;
    background-color: white;
    border-radius: 10px;
    padding: 5px 10px;
    cursor: pointer;
}

.person_button {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.friend-details {
    width: 100%;
}

/* USER FLOW PAGE */

.userflow {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.userflow > h2 {
    padding: 20px;
    font-family: sans-serif;
}

.userflow > h3 {
    padding: 20px;
    font-family: sans-serif;
}

.userflow > h4 {
    padding: 15px;
    font-family: sans-serif;
}

.userflow > p {
    padding: 15px;
    font-family: sans-serif;
}

.userflow > h1 {
    padding: 30px;
    font-family: sans-serif;
    color: rgb(164, 51, 25);
}

/* HEADER FOOTERS */

.logo_ursg {
    transition: transform 0.5s;
}

.logo_ursg:hover {
    transform: scale(1.2);
}

header button {
    transition: transform 1s;
}

header button:hover {
    transform: scale(1.1);
}

nav img,
nav i {
    transition: transform 1s;
}

.signup_buttonPopup {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    font-family: 'Google Sans', Arial, sans-serif;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    border: 1.5px solid #dadce0;
    background-color: white;
    color: #202124;
    padding: 0 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    height: 44px;
    letter-spacing: 0.5px;
    min-width: 280px;
    max-width: 320px;
    margin: auto;
    gap: 12px;
    box-shadow: 0 2px 6px rgb(60 64 67 / 0.3);
    transition: background-color 0.25s ease, box-shadow 0.25s ease,
        transform 0.15s ease;
}

.signup_buttonPopup:hover {
    background-color: #f7f8f8;
    box-shadow: 0 4px 12px rgb(60 64 67 / 0.4);
    transform: translateY(-2px);
}

.signup_buttonPopup img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.dark-mode .signup_buttonPopup {
    background-color: var(--dark-grey);
    color: white;
    border-color: #5f6368;
    box-shadow: 0 2px 6px rgb(0 0 0 / 0.6);
}

.dark-mode .signup_buttonPopup:hover {
    background-color: #3c4043;
    box-shadow: 0 4px 12px rgb(0 0 0 / 0.8);
}

.dark-mode .L5Fo6c-sM5MNb {
    color: white !important;
    background-color: var(--dark-grey) !important;
}

.signup_button {
    background: linear-gradient(45deg, #df4b1a 10%, #e74057 100%);
    border-radius: 1000px;
    border: none;
    width: fit-content;
    height: 50px;
    color: #666666;
    display: inline-block;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    font-size: 2vh;
    padding: 10px 25px;
    white-space: nowrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.signup_button:hover {
    background: rgba(255, 255, 255, 0.7);
}

.social-button_dialog {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 100px;
}

.social_buttons2 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.social-button_dialog:hover {
    background-color: #d1cccc;
}

.user_page #favDialogPicture,
.user_page #favDialogSocialLinks {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

dialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    border: none;
    text-align: center;
    width: fit-content;
    padding: 30px;
    min-width: 500px;
    z-index: 50000;
}

.form-picture {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 100%;
}

dialog .title_generalbox {
    font-size: 2em;
    font-family: 'Geologica', sans-serif;
    font-weight: 600;
}

.download_app_dialog {
    display: flex;
    flex-direction: column;
    height: 10vh;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 20px 0px;
}

.download_app_dialog_logos {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.download_app_dialog p {
    font-size: 1.5em;
    font-family: 'Geologica', sans-serif;
    padding-left: 20px;
    color: rgb(41, 41, 41);
    text-shadow: 0.5px 0.5px 1px rgb(0, 0, 0);
}

#dialogCookie {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: unset;
    top: 0;
    left: 0;
    transform: unset;
    width: 100%;
    padding: 30px;
    border-radius: 0 0 10px 10px;
    border: none;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10;
    display: none;
}

.dialogCookieRow {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.dialogCookieRowButtons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

#aboutCookies {
    display: none;
}

#btn_optionsCookie,
#btn_aboutCookie {
    border: 1px solid var(--main--red);
    color: var(--main--red);
    background-color: white;
    border-radius: 20px;
    padding: 7px 10px;
    cursor: pointer;
}

#btn_optionsCookie:hover,
#btn_aboutCookie:hover {
    border: 1px solid var(--ligher--grey);
    color: var(--ligher--grey);
}

#dialogCookie h2 {
    color: var(--main--red);
    font-size: 3rem;
}

#dialogCookie h3 {
    color: var(--main--red);
}

#dialogCookie p {
    color: #707070;
}

#saveCookies {
    background-color: var(--main--red);
    border-radius: 20px;
    border: none;
    color: white;
    cursor: pointer;
    padding: 10px 15px;
}

#optionsCookies .cookieState {
    font-weight: 600;
}

#saveCookies:hover {
    background-color: var(--ligher--grey);
}

.file-input-container {
    position: relative;
    display: inline-block;
}

.file-input {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    border-radius: 4px;
}

.file-label:hover {
    background-color: var(--ligher--grey);
}

.file-name {
    margin-left: 10px;
}

.picture_frame_ctn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.picture_frame {
    width: 50%;
}

.picture_frame img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.picture_frame p {
    font-size: 1.5em;
    text-shadow: 0.5px 0.5px 1px rgb(0, 0, 0);
}

.btn_picture_frame {
    background-color: #007bff !important;
    border-radius: 20px;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: capitalize;
    margin-top: 10px;
}

.btn_picture_frame_remove {
    background-color: var(--main--red);
    border-radius: 20px;
    border: none;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    text-transform: capitalize !important;
    margin-top: 10px;
}

#favDialogSocialLinks form input:not([id='send-button']) {
    border-radius: 20px;
    border: none;
    padding: 10px 20px;
    text-align: center;
}

#favDialogPicture form #send-button,
#favDialogSocialLinks form #send-button {
    width: 50%;
    min-width: fit-content;
    background-color: #007bff;
    cursor: pointer;
    border: none;
    text-transform: capitalize !important;
}

#favDialogPicture form #send-button:hover,
#favDialogSocialLinks form #send-button:hover {
    background-color: var(--ligher--grey);
}

#cancelBtn {
    padding: 10px 20px;
    background: rgb(213, 60, 60);
    color: white;
    border-radius: 50px;
    border: none;
}

#cancelBtn:hover {
    background: rgb(146, 27, 27);
}

.google-logo {
    width: 24px;
    margin-right: 10px;
}

.button-text {
    font-size: 14px;
}

.currency {
    border: 1px solid #b2a0a0;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #b2a0a0;
    position: relative;
}

.currency:hover {
    background-color: var(--main--red);
}

.currency img {
    width: 40px;
    height: 40px;
}

.currency p {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    color: white;
    gap: 10px;
}

#displayMoneyWon {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--main--red);
    font-size: 1em;
    font-weight: 900;
    text-shadow: 0 0 4px var(--main--red), 0 0 7px var(--main--red),
        0 0 10px var(--main--red);
    background: rgba(0, 0, 0, 0.6);
    padding: 0.1em 0.8em;
    border-radius: 12px;
    border: 2px solid var(--main--red);
    opacity: 0;
    pointer-events: none;
    display: none;
    z-index: 9999;
    animation: rewardBounce 2s ease-out forwards;
    width: fit-content;
    box-sizing: border-box;
    white-space: nowrap;
}

@keyframes rewardBounce {
    0% {
        transform: translate(-50%, 20px) scale(0.9);
        opacity: 0;
    }
    20% {
        transform: translate(-50%, -10px) scale(1.1);
        opacity: 1;
    }
    40% {
        transform: translate(-50%, -20px) scale(1.05);
    }
    60% {
        transform: translate(-50%, -30px) scale(1.1);
    }
    80% {
        transform: translate(-50%, -40px) scale(1);
    }
    100% {
        transform: translate(-50%, -50px) scale(1);
        opacity: 0;
    }
}

.rotate {
    transform: rotate(180deg);
}

#notification-center-ctn {
    position: absolute;
    bottom: 0%;
    left: 0%;
}

.clear-all-btn {
    padding: 5px 7px;
    background: var(--main--red);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 15px;
}

.fa-bell {
    font-size: 24px !important;
    cursor: pointer;
    position: relative;
}

.notif-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--main--red);
    color: white;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 50%;
    display: none; /* Hidden by default */
}

.notif-badge-profile {
    position: absolute;
    top: -15px;
    background: var(--main--red);
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
}

.notif-modal {
    position: absolute;
    left: -70px;
    top: 100%; /* Ensures the modal appears below the bell */
    width: 250px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100001;
    color: black;
    text-align: center;
}

.dark-mode .notif-modal {
    background: var(--dark-ligher-grey);
    color: white;
}

.notif-modal.hidden {
    display: none;
}

.notif-title {
    color: var(--main--red);
    font-size: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.notif-item {
    padding: 15px 8px;
    border-bottom: 1px solid #eee;
    display: flex;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: rgba(240, 240, 240, 0.7);
    cursor: pointer;
}

.dark-mode .notif-item:hover {
    background: rgba(240, 240, 240, 0.3);
}

.notif-modal .close-btn {
    margin-left: 10px;
    color: var(--main--red) !important;
    cursor: pointer;
    font-size: 25px;
    transition: 0.2s;
}

.notif-modal .close-btn:hover {
    color: rgb(67, 0, 0);
    transform: scale(1.1);
}

#open_menu_profile {
    position: relative;
    width: 15px;
    height: 15px;
}

#menu_profile {
    display: none;
}

#menu_profile.visible {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 0px;
    background-color: #e56f6f;
    font-weight: 500;
    border-bottom: 1px solid #d8d3d3;
}

#menu_profile a {
    color: white;
    font-size: 2vh;
    text-decoration: none;
    font-family: 'Geologica', sans-serif;
    padding-left: 5px;
    text-shadow: 0.5px 0.5px 1px black;
}

.menu-option {
    transition: transform 1s;
}

.menu-option:hover {
    transform: scale(1.1);
}

#menu_profile a:not(:last-child) {
    margin-bottom: 5px;
}

#menu_profile hr {
    display: none;
    border: none;
    margin: 5px 0 0 0;
}

/* FOOTER */

.social_footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mid_footer a {
    text-decoration: none;
    color: white;
}

.mid_footer a:hover {
    text-decoration: underline white;
}

.bot_footer a {
    text-decoration: none;
    color: white;
}

.bot_footer a:hover {
    text-decoration: underline white;
}

#signup_button {
    display: inline-block;
    font-size: 2vh;
    background: #ffffff;
    border-radius: 1000px;
    border: none;
    color: #666666;
    font-weight: bold;
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    width: fit-content;
    height: 50px;
    cursor: pointer;
}

#signup_button:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hat-easter-egg {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 70px;
    z-index: 10;
}

.hat-message {
    text-align: center;
    color: #f472b6;
    font-size: 14px;
    font-style: italic;
}

.ahris-easter-egg {
    display: none;
    position: fixed;
    top: 25%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #222222;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
    max-width: 90%;
    width: 350px;
}

.ahris-easter-egg img {
    width: 80px;
    margin-top: 10px;
}

.ahris-easter-egg .close-easter-egg {
    padding: 5px 15px;
    border: none;
    border-radius: 8px;
    background-color: #fda4af;
    color: white;
    cursor: pointer;
    font-size: 14px;
}

.dark-mode .ahris-easter-egg {
    background: #1e1e1e;
    color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.dark-mode .ahris-easter-egg .close-easter-egg {
    background-color: #fb7185;
    color: #fff;
}

/* PAGE DELETE ACCOUNT */

#deleteGoogle_div {
    display: none;
    width: 100%;
}

#deleteRiot_div {
    display: none;
    width: 100%;
}

.delete_selecter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.deleteAccount_ctn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.deleteAccount_ctn h1 {
    font-size: 3vh;
    font-family: 'Geologica', sans-serif;
    color: #cb5242;
    padding-left: 20px;
    text-shadow: 0.5px 0.5px 1px black;
    margin-bottom: 15px;
}

.deleteAccount_ctn p {
    font-size: 1.5vh;
    margin-bottom: 15px;
}

/* PAGE LEADERBOARD */

.leaderboard-section {
    text-align: center;
    margin: 20px;
}

.leaderboard-wrapper {
    overflow-x: auto;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    background-color: var(--white);
}

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

.leaderboard-table th,
.leaderboard-table td {
    padding: 15px;
    text-align: left;
    font-size: 1.5rem;
    border-bottom: 1px solid var(--ligher--grey);
}

.leaderboard-table th {
    background-color: var(--main--red);
    color: white;
    font-weight: bold;
}

.leaderboard-table tr {
    transition: background-color 0.3s;
}

.leaderboard-table tr:hover {
    background-color: var(--light-grey);
}

.leaderboard-table td img {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

.leaderboard-table td a {
    color: black;
}

.gold-badge,
.regular-badge {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 20px;
}

.your-rank {
    background-color: var(--main--red);
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 20px auto;
    max-width: 400px;
    box-shadow: 0 0 10px rgba(200, 35, 51, 0.5);
    font-family: 'Poppins', sans-serif;
}

.your-rank h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #e0e0e0;
    padding: 2px;
    gap: 5px;
    width: 20%;
    margin: auto;
    border-radius: 20px;
}

.swiping-buttons-report {
    background-color: rgba(240, 233, 233, 0.5);
    border: 1px solid rgb(97, 96, 96);
    border-radius: 5px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
}

.swiping-buttons-report img {
    width: 20px;
    height: 20px;
}

.dark-mode .swiping-buttons-report {
    background-color: rgba(42, 40, 40, 0.5);
    border: 1px solid rgb(97, 96, 96);
}

.badge-container-swiping img {
    width: 30px;
    height: 30px;
}

.badge-container-swiping {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2px;
    gap: 5px;
    width: fit-content;
    border-radius: 20px;
}

.dark-mode .badge-container {
    background-color: var(--dark-grey);
}

.gold-badge {
    color: black;
}

.regular-badge {
    background-color: var(--light-grey);
    color: black;
}

/* Rounded borders for the table */
.leaderboard-table th:first-child,
.leaderboard-table td:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.leaderboard-table th:last-child,
.leaderboard-table td:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.pagination {
    text-align: center;
    margin: 20px 0;
}

.pagination a,
.pagination button,
.pagination-button {
    display: inline-block;
    padding: 10px 12px;
    margin: 0 5px;
    border: 1px solid var(--main--red);
    color: var(--main--red);
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
}

.dark-mode .pagination button,
.dark-mode .pagination-button {
    background-color: var(--dark-ligher-grey);
}

.pagination a.active,
.pagination button.active,
.pagination-button.active {
    background-color: var(--main--red);
    color: white;
    border: none;
}

.pagination a:hover,
.pagination button:hover,
.pagination-button:hover {
    background-color: var(--main--red);
    color: white;
}

#placeholderMessage {
    margin-top: 10px;
    color: green; /* You can style it as needed */
}

/* ARCANE */
#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

#arcane_picker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background-color: rgba(255, 255, 255);
    border-radius: 30px;
    padding: 20px;
    color: black;
    z-index: 1000;
}

.dark-mode #arcane_picker {
    background-color: var(--dark-grey);
    color: white;
}

#arcane_picker h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--main--red);
}

.side_ctn {
    display: flex;
    width: 100%;
    height: 100%;
    background: url('../images/ursg-background-temporary.jpg') no-repeat center
        center;
    background-size: cover;
    background-position: center;
    background-color: #000;
    border-radius: 20px;
    margin: 20px 0;
}

.side_ctn > div {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* GAME */

.hidden {
    display: none;
}

.minigame-window {
    width: 50%;
    height: auto;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%);
    z-index: 1000;
    overflow: hidden;
    color: black;
    display: none;
}

.minigame-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
    max-height: 130%;
    width: 100%;
}

.dark-mode .minigame-window {
    background-color: #1e1e1e;
    color: white;
}

.minigame-window .exit-button {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    border: none;
    outline: none;
    color: var(--main--red);
    font-size: 30px;
    transition: color 0.3s, transform 0.2s;
    user-select: none;
    line-height: 1;
    z-index: 1;
}

.minigame-window .exit-button:hover {
    color: #a83636;
    transform: scale(1.1);
}

.minigame-window .exit-button:active {
    color: #8b2c2c;
    transform: scale(0.95);
}

.minigame-window .guess-text-title {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    font-size: 40px;
    color: black;
    text-align: center;
    user-select: none;
}

.dark-mode .minigame-window .guess-text-title {
    color: white;
}

.minigame-window .guess-text-subtitle {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: lighter;
    font-size: 24px;
    color: #8e8e8e;
    text-align: center;
    user-select: none;
}

.minigame-window .guess-text-subtitle .subtitle-icon {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    vertical-align: middle;
    user-select: none;
    object-fit: cover;
}

.minigame-window .player-img {
    width: 150px;
    height: 150px;
    border: none;
    border-radius: 50%;
    box-shadow: 0 0 0 4px #2d2d2d;
    object-fit: cover;
    user-select: none;
    pointer-events: none;
}

.minigame-window .character-img {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    user-select: none;
    pointer-events: none;
}

.top-hint {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.bottom-hint {
    display: flex;
    justify-content: center;
    align-items: center;
}

.minigame-window .affiliation-container,
.minigame-window .guess-hint-container,
.minigame-window .guess-hint-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    user-select: none;
}

.minigame-window .affiliation-header,
.minigame-window .gender-header,
.minigame-window .guess-hint-header {
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: #5d5757;
    font-weight: normal;
    white-space: nowrap;
}

.minigame-window .affiliation-hint,
.minigame-window .gender-hint,
.minigame-window .guess-hint {
    margin-top: 10px;
    font-family: Arial, sans-serif;
    font-size: 24px;
    color: black;
    font-weight: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: center;
    width: 100%;
}

.minigame-window #ignore-permanently-btn {
    width: 40%;
    min-width: fit-content;
    background-color: rgba(142, 142, 142, 0.5);
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 0 1px #2d2d2d;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    line-height: 52px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    margin-bottom: 20px;
    white-space: nowrap;
    padding: 3px 10px;
}

.button-game-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 20px;
    flex-wrap: wrap;
}

.minigame-window #ignore-permanently-btn:hover {
    background-color: rgba(142, 142, 142, 0.7);
    transform: scale(1.05);
}

#ingame-result {
    text-align: center;
    color: var(--main--red);
    font-size: 1.2em;
    font-weight: 600;
    font-family: Arial, sans-serif;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }
    20% {
        transform: translateX(-10px);
    }
    40% {
        transform: translateX(10px);
    }
    60% {
        transform: translateX(-10px);
    }
    80% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}

.minigame-inner.shake {
    animation: shake 0.6s ease;
}

.dark-mode .minigame-window .affiliation-header,
.dark-mode .minigame-window .gender-header,
.dark-mode .minigame-window .guess-hint-header {
    color: #9b9b9b;
}

.dark-mode .minigame-window .affiliation-hint,
.dark-mode .minigame-window .gender-hint,
.dark-mode .minigame-window .guess-hint {
    color: white;
}

.player-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.minigame-window .submit-button {
    width: 40%;
    background-color: #c89b3e;
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 0 1px #2d2d2d;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    line-height: 52px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    margin-bottom: 20px;
}

.dark-mode .minigame-window .submit-button {
    box-shadow: 0 0 0 4px #2d2d2d;
    color: #ffffff;
}

.minigame-window .submit-button:hover {
    background-color: #ae7b32;
    transform: scale(1.05);
}

.minigame-window .submit-button:active {
    background-color: #8d6530;
    transform: scale(0.95);
}

.hints-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.minigame-window .name-input {
    width: 90%;
    background-color: #e6e6e6;
    box-shadow: 0 0 0 1px #2d2d2d;
    border: none;
    border-radius: 25px;
    padding: 0 16px;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: black;
    text-align: center;
    line-height: 58px;
    outline: none;
    box-sizing: border-box;
}

.dark-mode .minigame-window .name-input {
    background-color: #131313;
    color: #ffffff;
}

.minigame-window .name-input::placeholder {
    color: #7a7a7a;
    font-weight: bold;
    text-align: center;
}

#restore-game-container {
    display: none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

#restore-game-btn {
    background-color: #c89b3e;
    font-size: 1.5em;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 5px 10px;
    cursor: pointer;
}

#restore-game-btn:hover {
    background-color: #866115;
}

.rules-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 70%;
}

.rules-button {
    background-color: var(--main--red);
    font-size: 2em;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    padding: 5px 15px;
    cursor: pointer;
}

.rules-text {
    font-size: 20px;
}

.result-container {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.result-title {
    font-weight: bold;
    font-size: 3em;
    color: black;
}

.dark-mode .result-title {
    color: white;
}

.result-text {
    font-weight: 500;
    font-size: 1.5em;
    color: black;
}

.dark-mode .result-text {
    color: white;
}

/* ADMIN PANEL */

.admin-users-container {
    width: 95%;
    margin: 2rem auto;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
}

.dark-mode .admin-users-container {
    background-color: var(--ligher--grey);
}

.admin-users-container h1,
.admin-container h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.dark-mode .admin-users-container h1,
.dark-mode .admin-container h1 {
    color: white;
}

.admin-users-container table,
.reports-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.admin-users-container table th,
.reports-table th {
    text-align: left;
    padding: 1rem;
    border: 1px solid #ddd;
}

.admin-users-container table td,
.reports-table td {
    text-align: left;
    padding: 1rem;
    background-color: var(--dark-ligher-grey);
    color: white;
    border: 1px solid #ddd;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-users-container table td.bio,
.reports-table td.bio,
.reports-table td.reasons {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-users-container table td:hover.bio,
.reports-table td:hover.bio,
.reports-table td:hover.reasons {
    white-space: normal;
    overflow: visible;
    z-index: 1;
    position: relative;
}

.admin-users-container table th,
.reports-table th {
    background-color: var(--main--red);
    color: white;
    font-weight: bold;
}

.admin-users-container table tr:nth-child(even),
.reports-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.admin-users-container table tr:hover,
.reports-table tr:hover {
    background-color: #f1f1f1;
}

.admin-users-container .actions {
    display: flex;
    gap: 0.5rem;
}

.admin-users-container .actions button,
.admin-users-container form button,
.reports-table button {
    padding: 0.5rem 0.75rem;
    border: none;
    background-color: var(--main--red);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.admin-users-container .actions button.delete {
    background-color: #dc3545;
}

.admin-users-container .actions button:hover {
    opacity: 0.85;
}

.admin-users-container form input[type='number'] {
    width: 60px;
    padding: 0.3rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.admin-users-container img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.admin-users-container {
    padding: 20px;
}

.search-filter-container {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
}

.search-filter-form input,
.search-filter-form select,
.search-filter-form button {
    padding: 8px;
    font-size: 14px;
}

/* Admin analytics */

.returning-explain {
    font-size: 10px !important;
    color: #666363 !important;
}

.admin-container-row {
    display: flex;
}

.ga4-page-views {
    max-width: 800px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 8px;
}

.ga4-page-views h2 {
    margin-bottom: 1rem;
    color: var(--main--red);
    text-align: center;
    font-weight: 700;
    font-size: 1.8rem;
}

.ga4-page-views table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.ga4-page-views th,
.ga4-page-views td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #ddd;
}

.ga4-page-views th {
    background-color: var(--dark--red);
    color: var(--white);
    border-bottom: 1px solid var(--main--red);
    font-weight: 600;
}

.ga4-page-views tbody tr:hover {
    background-color: #f0f8ff;
}

.ga4-page-views td:first-child {
    font-weight: 500;
    color: white;
}

.funnel-step {
    margin-bottom: 1rem;
}

.funnel-label {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.funnel-bar-container {
    background-color: #e0e0e0;
    border-radius: 8px;
    height: 20px;
    overflow: hidden;
}

.funnel-bar {
    background-color: #3498db;
    height: 100%;
}

/* Dark mode overrides */

.dark-mode .funnel-label {
    color: var(--white);
}

.dark-mode .ga4-page-views {
    color: var(--white);
}

.dark-mode .ga4-page-views h2 {
    color: var(--main--red);
}

.dark-mode .ga4-page-views td,
.dark-mode .ga4-page-views th {
    border-color: var(--main--red);
}

.dark-mode .ga4-page-views tbody tr:hover {
    background-color: var(--dark-ligher-grey);
}

/* Admin Header */
.admin-header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border-bottom: 2px solid var(--main--red);
}

.admin-header .admin-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.admin-header .admin-nav ul li {
    display: inline;
}

.admin-header .admin-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.admin-header .admin-nav ul li a:hover {
    text-decoration: underline;
}

/* Admin Panel Main Page */
.admin-title {
    text-align: center;
    font-size: 28px;
    margin: 20px 0;
    color: #333;
}

.dark-mode .admin-title {
    color: white;
}

.admin-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px;
}

.admin-dashboard > div {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.dark-mode .admin-dashboard > div {
    background-color: var(--ligher--grey);
    border: 1px solid #666363;
}

.admin-dashboard h2 {
    margin-bottom: 10px;
    color: var(--main--red) !important;
}

.admin-dashboard p {
    font-size: 18px;
    color: #333;
}

.dark-mode .admin-dashboard p {
    color: white;
}

.admin-dashboard button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: var(--main--red);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.online-users-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin-top: 20px;
}

.online-users-container-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.online-users-graph-container {
    position: relative;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
}

.dark-mode .online-users-graph-container {
    background-color: var(--ligher--grey);
    color: white;
}

.online-users-graph-container h2 {
    text-align: center;
    margin-bottom: 10px;
    color: var(--main--red);
}

.dark-mode #userActivityGraph {
    color: white;
}

.admin-dashboard button:hover {
    background-color: var(--main--red);
}

#banUserModal,
#censorBioModal,
#censorPictureModal,
#requestBanModal,
#censorBothModal,
#dismissModal,
#addPartnerModal,
#removePartnerModal {
    width: 50%;
    height: auto;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    overflow: hidden;
    color: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
}

.dark-mode #banUserModal,
.dark-mode #censorBioModal,
.dark-mode #censorPictureModal,
.dark-mode #requestBanModal,
.dark-mode #censorBothModal,
.dark-mode #dismissModal,
.dark-mode #addPartnerModal,
.dark-mode #removePartnerModal {
    background-color: var(--dark-ligher-grey);
    color: white;
}

#banUserTitle,
#censorBioTitle,
#censorPictureTitle {
    font-size: 2em;
    color: var(--main--red);
    text-align: center;
}

.admin-form-btn-yes {
    padding: 5px 20px;
    background-color: #08bc26;
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 0 1px #2d2d2d;
    font-family: Arial, sans-serif;
    font-size: 36px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    line-height: 52px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    margin-bottom: 20px;
}

.admin-form-btn-no {
    background-color: #cb1919;
    border: none;
    border-radius: 25px;
    box-shadow: 0 0 0 1px #2d2d2d;
    font-family: Arial, sans-serif;
    padding: 5px 20px;
    font-size: 36px;
    font-weight: normal;
    color: #ffffff;
    text-align: center;
    line-height: 52px;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
    margin-bottom: 20px;
}

.modal-buttons-admin {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

/* Admin Actions Section */
.admin-actions-container {
    width: 95%;
    margin: 2rem auto;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    box-sizing: border-box;
}

.dark-mode .admin-actions-container {
    background-color: var(--ligher--grey);
}

.admin-actions-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.dark-mode .admin-actions-container h2 {
    color: white;
}

.admin-actions-container .actions-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.admin-actions-container .actions-toggle label {
    margin-right: 0.5rem;
    font-size: 1rem;
    color: #555;
}

.dark-mode .admin-actions-container .actions-toggle label {
    color: #ddd;
}

.admin-actions-container .actions-toggle input[type='checkbox'] {
    transform: scale(1.2);
    cursor: pointer;
}

.admin-actions-container #admin-actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-actions-container #admin-actions-list li {
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 0.5rem;
    background-color: #f9f9f9;
    font-size: 1.5rem;
    color: #333;
}

.dark-mode .admin-actions-container #admin-actions-list li {
    background-color: var(--dark-ligher-grey);
    color: white;
}

.admin-actions-container #admin-actions-list li strong {
    color: var(--main--red);
}

.admin-actions-container #admin-actions-list li em {
    font-style: italic;
    color: #555;
}

.dark-mode .admin-actions-container #admin-actions-list li em {
    color: #ccc;
}

/* Add hover effect for better interaction */
.admin-actions-container #admin-actions-list li:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

.dark-mode .admin-actions-container #admin-actions-list li:hover {
    background-color: #444;
}

/* Game Management Page */
.game-admin-container {
    width: 95%;
    margin: 2rem auto;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 2rem;
}

.dark-mode .game-admin-container {
    background-color: var(--ligher--grey);
}

.game-admin-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.dark-mode .game-admin-container h1 {
    color: white;
}

/* Discord Bot Controls */

#discord-bot-controls {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto 2rem auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 20px;
}

#discord-bot-controls h2 {
    text-align: center;
    color: var(--main--red);
    margin-bottom: 1rem;
}

.dark-mode #discord-bot-controls {
    background-color: var(--ligher--grey);
}

#discord-bot-controls button {
    align-self: flex-start;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    background-color: var(--main--red);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#discord-bot-controls button:hover {
    opacity: 0.85;
}

#discordCommandInput {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.dark-mode #discordCommandInput {
    background-color: #333;
    color: white;
    border: 1px solid #555;
}

#discordBotResponse {
    font-size: 0.9rem;
    color: #444;
    margin-top: 1rem;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.dark-mode #discordBotResponse {
    color: #ccc;
}

/* Statistics Section */
.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.game-stats .stat {
    text-align: center;
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    width: 30%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dark-mode .game-stats .stat {
    background-color: var(--dark-ligher-grey);
}

.game-stats .stat h2 {
    font-size: 1.25rem;
    color: var(--main--red);
    margin-bottom: 0.5rem;
}

.game-stats .stat p {
    font-size: 1.5rem;
    color: #333;
}

.dark-mode .game-stats .stat p {
    color: white;
}

.form-group small {
    font-size: 0.75rem;
    color: black;
    margin-top: 4px;
}

.dark-mode .form-group small {
    color: white;
}

/* Form Section */
.add-character-form {
    width: 100%;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.dark-mode .add-character-form {
    background-color: var(--dark-ligher-grey);
}

.add-character-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--main--red);
}

.add-character-form .form-group {
    margin-bottom: 1.5rem;
}

.add-character-form .form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

.dark-mode .add-character-form .form-group label {
    color: #ddd;
}

.add-character-form .form-group input {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.dark-mode .add-character-form .form-group input {
    background-color: var(--dark-ligher-grey);
    border: 1px solid #666363;
    color: white;
}

.add-character-form .submit-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    color: white;
    background-color: var(--main--red);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.add-character-form .submit-btn:hover {
    opacity: 0.9;
}

.add-character-form .form-group input[type='file'] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.dark-mode .add-character-form .form-group input[type='file'] {
    background-color: var(--dark-ligher-grey);
    border: 1px solid #666363;
    color: white;
}

.actions button {
    margin: 5px;
    padding: 5px 10px;
    cursor: pointer;
}

/* Report Guideline Container */
.report-guideline-container {
    width: 90%;
    margin: 1.5rem auto;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem;
}

.dark-mode .report-guideline-container {
    background-color: var(--ligher--grey);
}

.report-guideline-container h2 {
    text-align: center;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.8rem;
}

.dark-mode .report-guideline-container h2 {
    color: white;
}

.guidelines-list {
    list-style-type: disc;
    padding-left: 1rem;
    font-size: 0.9rem;
    line-height: 1.3rem;
    color: #333;
    margin: 0;
}

.dark-mode .guidelines-list {
    color: white;
}

.guidelines-list li {
    margin-bottom: 0.4rem;
}

/* DARK MODE */

.dark-mode .social-logo {
    filter: brightness(0.8);
}

.dark-mode .call-to-action {
    color: white;
}

.dark-mode .social-logo:hover {
    filter: brightness(0.6);
}

/* DARK MODE */

.dark-mode .old-price {
    color: gray;
}

.dark-mode .leaderboard-table td a {
    color: white;
}

.dark-mode .item-info p {
    color: white;
}

.dark-mode .filter-section label {
    color: white;
}

.dark-mode .filter-section option {
    color: white;
    background-color: var(--dark-ligher-grey);
}

.dark-mode #category-filter {
    color: white;
    background-color: var(--ligher--grey);
}

.dark-mode .leaderboard-wrapper {
    background-color: var(--dark-ligher-grey);
}

.dark-mode .leaderboard-table th {
    background-color: var(--main--red);
}

.dark-mode .leaderboard-table td {
    color: white;
}

.dark-mode .leaderboard-table tr:hover {
    background-color: var(--dark-grey-hover);
}

.dark-mode .gold-badge {
    color: white;
}

.toggle-container,
.toggle-container-filter,
.toggle-container-sound {
    width: 80px;
    height: 40px;
    background-color: #ccc;
    border-radius: 25px;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.toggle-button {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: transform 0.3s;
}

.filter-button,
#toggle-button-sound {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s, transform 0.3s;
}

.filter-button.active,
#toggle-button-sound.active {
    background-color: #ddd;
    transform: translateX(40px);
}

.toggle-container-filter.active,
.toggle-container.active,
.toggle-container-sound.active {
    background-color: rgb(128, 211, 128) !important;
}

.dark-mode .toggle-container,
.dark-mode .toggle-container-filter,
.dark-mode .toggle-container-sound {
    background-color: var(--ligher--grey);
}

.dark-mode .toggle-button {
    transform: translateX(40px);
    background-color: #ddd;
}

.dark-mode .filter-button,
.dark-mode #toggle-button-sound {
    background-color: #ddd;
}

.light-mode .toggle-container,
.light-mode .toggle-container-filter,
.light-mode .toggle-container-sound {
    background-color: #ccc; /* Couleur de fond pour le mode clair */
}

/* HEADER DARK MODE */

.dark-mode body,
.dark-mode main {
    background-color: var(--dark-grey);
}

.dark-mode #signup_button {
    background: linear-gradient(135deg, #171616, var(--dark-ligher-grey));
    color: white;
}

.dark-mode .signup_button {
    background: linear-gradient(135deg, #171616, var(--dark-ligher-grey));
    color: white;
}

.dark-mode .signup_button:hover {
    background: linear-gradient(
        135deg,
        var(--dark-ligher-grey),
        var(--ligher--grey)
    );
}

.dark-mode #menu_profile.visible {
    background-color: #504c4c;
    border-bottom: 1px solid #3d3a3a;
}

.dark-mode .file-label {
    color: white;
}

.dark-mode .file-name {
    color: white;
}

.dark-mode .box_league_account_main_row_column .small_text {
    color: rgb(193, 184, 184);
}

/* FOOTER DARK MODE */

.dark-mode .footer_grey {
    background: #51040e;
}

.dark-mode dialog {
    background-color: var(--dark-ligher-grey);
}

.dark-mode .download_app_dialog p {
    color: rgb(255, 255, 255);
}

.dark-mode .form_container {
    background-color: var(--dark-ligher-grey);
}

.dark-mode #favDialogSocialLinks form input {
    color: white;
    background-color: var(--ligher--grey);
}

.dark-mode #favDialogSocialLinks form label {
    color: white;
}

.dark-mode #verify-button {
    border: 1px solid white;
}

.dark-mode #toggleEmotePicker i {
    color: white;
}

.dark-mode .friend_request_ctn p a {
    color: white;
}

.dark-mode .block_user,
.dark-mode .unfriend_user {
    background-color: var(--ligher--grey);
}

.dark-mode dialog .title_generalbox {
    color: #cb5242;
}

.dark-mode .currency {
    border: 1px solid #565151;
    background-color: #565151;
}

.dark-mode .currency:hover {
    background-color: var(--main--red);
}

@media only screen and (max-width: 1420px) {
    .badge-container {
        width: 30%;
    }

    .btn_user_updates {
        width: 250px;
    }

    .user_box {
        width: 60%;
    }

    .friendrequest_box {
        width: 95%;
    }
}

@media only screen and (max-width: 1300px) {
    .form_container {
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0.2px solid rgb(224, 209, 209);
        border-radius: 10px;
        position: relative;
        width: 80%;
        margin: 5% auto;
        background-color: rgb(248, 244, 244);
    }

    .picture_with_form {
        width: 400px;
        height: auto;
    }

    .btn_user_updates {
        width: 250px;
        margin: 0 10px;
    }

    .messages-container {
        transform: translateX(0px);
    }

    .picture-wrapper {
        width: 45%;
    }

    .user_page_main_content,
    .user_page_main_content-swiping {
        gap: 20px;
    }
}

@media only screen and (max-width: 1150px) {
    #champion-picker .champions-picker-column img {
        width: 70px;
        height: 70px;
    }

    footer img {
        width: 40px;
        height: 40px;
    }

    .btn_updateProfile {
        font-size: 0.8rem;
        width: 100px;
    }

    .user_page_main_content {
        padding: 0;
        width: 100%;
        align-items: center;
        flex-direction: column;
        gap: 0px;
    }
}

@media only screen and (max-width: 1018px) {
    #messages {
        height: unset;
        max-height: 68vh;
    }

    .messages-container {
        margin: unset;
        min-height: 92.5vh;
    }

    .friend-details-top {
        margin-left: -5px;
    }

    .friend-details-top p {
        font-size: 0.6em;
    }

    .minigame-window .guess-text-title {
        font-size: 32px;
    }

    .minigame-window .guess-text-subtitle {
        font-size: 20px;
    }

    .minigame-window .submit-button {
        font-size: 28px;
        line-height: 40px;
        width: 60%;
    }

    .minigame-window .name-input {
        font-size: 18px;
        line-height: 50px;
    }

    .minigame-window .player-img {
        width: 120px;
        height: 120px;
    }

    .minigame-window .character-img {
        width: 60px;
        height: 60px;
        top: 100px;
    }

    .minigame-window .affiliation-header,
    .minigame-window .gender-header,
    .minigame-window .guess-hint-header {
        font-size: 20px;
    }

    .minigame-window .affiliation-hint,
    .minigame-window .gender-hint,
    .minigame-window .guess-hint {
        font-size: 20px;
    }

    .picture_with_form {
        width: 300px;
        height: auto;
    }

    .messages-container {
        display: none;
        width: 100%;
    }

    .friendrequest_box {
        width: 80%;
    }

    .user_box {
        width: 80%;
    }

    .top-part-about {
        justify-content: center;
    }
}

@media only screen and (max-width: 900px) {
    .hide-mobile {
        display: none;
    }

    .notif-modal {
        position: absolute;
        left: -200px;
    }

    .rank-container img {
        width: 35px;
        height: 35px;
    }

    #league_champions_user,
    .league_champions_user {
        width: 4vh;
    }

    .gold-badge,
    .regular-badge {
        justify-content: center;
        width: 15px;
        height: 15px;
    }

    .frame_around_picture {
        top: -49px;
        left: -109px;
        width: 444px;
        height: 320px;
    }

    .profile-picture-container {
        margin: 60px 0px;
        width: unset;
        height: unset;
    }

    .currency {
        padding: 5px 15px;
    }

    .currency img {
        width: 20px;
        height: 20px;
    }

    .currency p {
        font-size: 1.5em;
        gap: 5px;
    }

    .picture_with_form {
        display: none;
    }

    .faq_row {
        flex-direction: column;
    }

    .download_app {
        width: 100%;
        align-items: center;
        justify-content: center;
    }

    .download_app p {
        font-size: 1em;
    }

    #apple_logo,
    #google_logo {
        max-width: 100%;
        height: auto;
        width: 100px;
    }

    .form_signup,
    .form_signup_mail {
        width: 70%;
    }

    .picture_with_form {
        display: none;
    }

    .user_page_main_league {
        padding-left: 0;
    }

    .about_you_users {
        padding-left: 0;
    }

    .title_generalbox {
        padding-left: 0;
    }

    .user_page_update {
        padding-left: 0;
        margin-top: 15px;
    }

    #user_page_username {
        font-size: 50px;
        overflow: hidden;
        white-space: break-word;
        max-width: 100%;
    }

    .user_page {
        padding: 10px;
    }

    .user_page_picture {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }

    .friendlist-page {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 90vh;
    }

    .friendlist-page .friend-avatar img {
        width: 30px;
        height: 30px;
    }

    .friendlist-page .friend-info {
        margin-left: 5px;
    }

    .friendlist-pag .unfriend_user {
        padding: 5px 7px;
        font-size: 12px;
    }

    .friendlist-page .friend-name {
        font-size: 12px;
    }

    .friendlist-page .friendlist-section.active {
        width: 95%;
    }

    .user_page_update_name {
        display: flex;
        flex-direction: column;
        padding-top: 20px;
        text-align: center;
        width: 100%;
        word-break: break-word;
    }

    #no_display_phone {
        display: none;
    }

    .no_display_phone {
        display: none;
    }

    .league_of_legends_user {
        gap: 10px;
    }

    .btn_user_updates {
        width: fit-content;
        height: 40px;
    }

    .lookingfor_box {
        width: 80%;
    }

    .general_box {
        width: 80%;
    }

    .signup_button {
        padding: 10px;
        font-size: 25px !important;
        width: fit-content;
        height: fit-content;
        white-space: nowrap;
        text-overflow: clip;
    }

    #signup_button {
        font-size: 1.5vh;
        height: 40px;
    }

    .toggle-container,
    .toggle-container-filter {
        background-color: #ccc;
        border-radius: 25px;
        width: 40px;
        height: 15px;
        position: relative;
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .toggle-button,
    .filter-button,
    .toggle-button-sound {
        width: 20px;
        height: 15px;
        background-color: #fff;
        border-radius: 50%;
        transition: transform 0.3s;
    }

    .filter-button {
        width: 20px;
        height: 15px;
        background-color: #fff;
        border-radius: 50%;
    }

    .dark-mode .toggle-button {
        transform: translateX(20px);
    }

    .toggle-container-filter.active .filter-button {
        transform: translateX(20px);
    }

    .toggle-container-filter .filter-button {
        transform: translateX(unset);
    }

    #open_menu_profile {
        width: 25px;
        height: 25px;
    }

    .send-message-button {
        margin: unset;
        border-radius: 50%;
        display: inline-block;
        background-color: var(--main--red);
        padding: 8px;
        border: none;
    }

    .send-message-button i {
        color: white;
        font-size: 1rem;
    }

    #dialogCookie {
        width: unset;
    }

    dialog {
        min-width: 80%;
    }

    .form_signup h2,
    .form_signup_mail h2,
    #championSelection h2 {
        font-size: 3vh;
    }

    .form_signup p,
    .form_signup_mail p,
    #championSelection p {
        font-size: 2vh;
    }

    #currency {
        font-size: 20px;
    }

    .about-users-box {
        width: 95%;
        display: flex;
        flex-wrap: wrap;
        box-sizing: border-box;
        gap: 10px;
    }

    .about-users-box p {
        font-size: 1vh;
    }
}

@media (max-width: 768px) {
    .admin-container-row {
        flex-direction: column;
        align-items: center;
    }

    .admin-container-row .admin-actions-container {
        width: 100%;
    }

    .hat-easter-egg {
        top: -20px;
        width: 70px;
        height: 30px;
    }

    .form_container {
        width: 95%;
    }

    .form_signup {
        width: 100%;
    }

    #send-button {
        font-size: 1.2rem;
    }

    #skip-preferences-btn {
        font-size: 1.2rem;
    }

    .swipe-home-card {
        max-height: 150px;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-group {
        flex-direction: column;
        align-items: center;
    }

    .footer-links,
    .footer-socials,
    .footer-creators,
    .footer-languages {
        text-align: center;
        align-items: center;
    }

    .footer-nav-links,
    .footer-nav-creators {
        align-items: center;
    }

    .footer-nav-links a,
    .footer-nav-creators a {
        font-size: 0.9em;
    }

    .footer-socials a i {
        font-size: 1.3em;
    }

    .footer-languages select {
        font-size: 0.9em;
    }

    .footer-copyright .legal {
        font-size: 0.8em;
        width: 90%;
    }

    .header nav {
        flex-direction: column;
        gap: 10px;
    }

    .header .nav-rest {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-right: 0;
    }

    .header .nav-rest a {
        font-size: 0.95em;
    }

    .interested-button {
        top: 50px;
    }

    #filterVoiceChat {
        margin-bottom: 40px;
    }

    .filter-container #filterVoiceChat {
        margin-bottom: 0px;
    }

    #savePreferencesBtn {
        font-size: 0.8em;
        padding: 5px 10px;
        position: absolute;
        right: 5px;
        bottom: 5px;
        margin: unset;
        width: 100%;
        border-radius: unset;
    }

    .filter-container #savePreferencesBtn {
        position: relative;
        right: unset;
        bottom: unset;
        width: 100px;
        border-radius: 8px;
    }

    .interested-btn {
        top: 45px;
        right: 10px;
    }

    #toggleFilter {
        cursor: pointer;
    }

    .hidden-on-mobile {
        display: none;
    }

    .filter-container #savePreferencesBtn {
        width: 100px;
        margin-left: unset;
    }

    #friendTop {
        flex-direction: column;
        align-items: unset;
    }

    #friendTop .online-status {
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .minigame-window {
        width: 70%;
        gap: 10px;
        padding: 10px;
    }

    .minigame-window .guess-text-title {
        font-size: 24px;
    }

    .minigame-window .guess-text-subtitle {
        font-size: 16px;
    }

    .minigame-window .submit-button {
        font-size: 20px;
        line-height: 36px;
        width: 80%;
    }

    .minigame-window .name-input {
        font-size: 16px;
        line-height: 40px;
    }

    .minigame-window .player-img {
        width: 100px;
        height: 100px;
    }

    .minigame-window .character-img {
        width: 50px;
        height: 50px;
        top: 80px;
    }

    .minigame-window .affiliation-header,
    .minigame-window .gender-header,
    .minigame-window .guess-hint-header {
        font-size: 16px;
    }

    .minigame-window .affiliation-hint,
    .minigame-window .gender-hint,
    .minigame-window .guess-hint {
        font-size: 16px;
    }

    .top-hint,
    .bottom-hint {
        flex-direction: column;
        gap: 10px;
    }

    .affiliation-container {
        margin-top: 30px;
    }

    .gender-container {
        margin-bottom: 15px;
    }

    .minigame-window .guess-text-subtitle .subtitle-icon {
        width: 10px;
        height: 10px;
    }

    .minigame-window .exit-button {
        position: relative;
        top: unset;
        right: unset;
    }

    .exit-button-container {
        display: flex;
        justify-content: flex-end;
        width: 100%;
    }
}

@media only screen and (max-width: 600px) {
    .star {
        font-size: 1em;
    }

    .user-rating-outside {
        bottom: 5px;
        padding: 1px 3px;
    }

    #champion-picker #skipSelection-btn {
        padding: 10px 15px;
        font-size: 1rem;
    }

    .swipe-home-card {
        max-height: 175px;
    }

    #user-top-content {
        min-height: 300px;
        margin-bottom: 0;
    }

    #restore-game-btn {
        font-size: 20px;
        padding: 5px 15px;
    }

    .picture_frame_ctn {
        flex-wrap: wrap;
    }

    .picture_frame {
        width: 20%;
    }

    .user_page #favDialogPicture {
        min-width: 90%;
    }

    .signup_button,
    #signup_button {
        padding: 5px 5px;
        font-size: 10px !important;
    }

    #signup_button {
        height: 25px;
    }

    #popup_user_picture {
        width: 250px;
        padding: 15px;
    }

    .top-part-about {
        gap: 0px;
    }

    .about-users-box img {
        width: 20px;
        height: 20px;
        opacity: 0.3;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .about-users-box .about-users-selected {
        transform: scale(1.1);
    }

    .profile-picture-container {
        margin: 0px 0px;
        width: unset;
        height: unset;
    }

    .user_box {
        padding: 20px;
    }
}

@media only screen and (max-width: 600px) {
    .side-global {
        flex-direction: column;
    }
    .about-users-bio-mobile {
        display: flex;
    }

    .about-users-bio-desktop {
        display: none;
    }

    .hat-message {
        margin-left: 50px;
    }

    .notif-badge {
        font-size: 8px;
        padding: 2px 3px;
    }

    #badge-container {
        margin-top: 0px;
    }

    #notification-bell {
        font-size: 10px !important;
    }

    .aboutme-match .profile {
        width: 70px;
        height: 70px;
    }

    .aboutme-match .icons.you {
        top: 70px;
        left: 40px;
    }

    .aboutme-match .icons.mate {
        top: 70px;
        right: 40px;
    }

    .aboutme-match .icons img {
        width: 20px;
        height: 20px;
    }

    .aboutme-match .champions img {
        width: 40px;
        height: 40px;
    }

    .aboutme-match .icons {
        flex-direction: column;
    }

    .frame_around_picture {
        top: -27px;
        left: -20px;
        width: 180px;
        height: 140px;
    }

    #league_champions_user,
    .league_champions_user {
        width: 3vh;
    }

    .page-header a {
        font-size: 1rem;
    }

    .leaderboard-table th,
    .leaderboard-table td {
        padding: 5px;
        font-size: 1rem;
    }

    .leaderboard-wrapper {
        padding: 10px;
    }

    .leaderboard-section {
        margin: 0;
    }

    .currency p {
        font-size: 1em;
        gap: 5px;
    }

    .currency {
        padding: 2px 2px;
    }

    .currency img {
        width: 15px !important;
        height: 15px !important;
    }

    .kofi {
        padding: 0px;
    }

    .kofi h2 {
        font-size: 1.2rem;
    }

    .kofi img {
        width: 80px;
        height: 60px;
    }

    .discord {
        padding: 10px;
    }

    .discord h2 {
        font-size: 1.2rem;
    }

    .discord i {
        font-size: 2rem;
    }

    .separator {
        height: 2px;
    }

    .download_app {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        height: fit-content;
    }

    .box_league_account_main_row {
        gap: 20px;
    }

    .user_page_update_row_buttons {
        flex-direction: column;
    }

    /* SITE MAP */

    section.siteMap {
        margin: 20px 10px;
        padding: 10px;
    }

    section.siteMap tbody {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    section.siteMap h1 {
        font-size: 1.5em;
        margin-bottom: 10px;
    }

    section.siteMap th,
    section.siteMap td {
        padding: 8px;
        font-size: 0.9em;
    }

    section.siteMap table,
    section.siteMap th,
    section.siteMap td {
        display: block;
    }

    section.siteMap th {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    section.siteMap td {
        border: none;
        position: relative;
        text-align: center;
    }

    section.siteMap td:before {
        display: none;
    }

    section.siteMap tr {
        margin-bottom: 10px;
        display: block;
        border-bottom: 1px solid #ddd;
    }

    .badge-container {
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #e0e0e0;
        padding: 2px;
        gap: 1px;
        width: fit-content;
        border-radius: 20px;
    }

    #edit-profile-container {
        top: 0px;
        gap: 5px;
        font-size: 15px;
    }

    #badge-container {
        left: 20px;
    }

    #image_users {
        width: 100px;
        height: 100px;
        margin-left: 15px;
        border-radius: 1000px;
        border: 1px solid var(--main--red);
    }

    #user_page_username {
        font-size: 30px;
    }

    #age_user {
        font-size: 15px;
    }

    .notif-badge-profile {
        top: 5px;
        font-size: 8px;
        padding: 2px 3px;
    }
}

@media only screen and (max-width: 500px) {
    #champion-picker .champions-picker-column img {
        width: 30px;
        height: 30px;
    }
    .swipe-home-card {
        height: 150px;
    }

    .axisLabel {
        font-size: 14px;
    }

    .about-users-containers {
        width: 100%;
    }

    .about-users-box .about-users-selected {
        font-size: 1.2vh;
    }

    .btn_updateProfile {
        top: 50px;
    }
}

@media only screen and (max-width: 400px) {
    .hide-small-mobile {
        display: none;
    }

    #currency {
        font-size: 15px;
    }

    .currency img {
        display: none;
    }

    #restore-game-btn {
        font-size: 15px;
        padding: 5px 10px;
    }

    .box_league_account_main_row {
        flex-direction: column;
        gap: 20px;
    }

    #open_menu_profile {
        width: 20px;
        height: 20px;
    }

    #menu_profile a {
        font-size: 1.5vh;
    }

    .badge span {
        display: inline;
    }
}

@media only screen and (max-width: 350px) {
    .hat-message {
        margin-left: 0px;
    }

    .badge span {
        display: none;
    }

    #image_users {
        width: 75px;
        height: 75px;
        margin-left: 15px;
    }

    .frame_around_picture {
        top: -20px;
        left: -20px;
        width: 150px;
        height: 120px;
    }

    .profile-picture-container {
        height: fit-content;
        text-align: center;
        width: unset;
    }

    .btn_updateProfile {
        top: 55px;
    }
}
