/* Google Poppins Font import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap');

/* Import Noto Sans Thai font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Thai:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* Default font is Poppins */
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    background-image: url('media/wallpaper.png');
    /* แทนที่ด้วยพาธของรูปภาพ */
    background-repeat: no-repeat;
    background-size: cover;
    /* ทำให้ภาพเต็มหน้าจอ */
    background-position: center center;
    /* จัดตำแหน่งภาพตรงกลาง */
    background-attachment: fixed;
    /* ทำให้ภาพพื้นหลังอยู่กับที่ */
}

/* Style for Thai text */
.thai-font {
    font-family: 'Noto Sans Thai', sans-serif;
    /* Apply Noto Sans Thai for elements with this class */
}

/* Custom Scroll Bar CSS */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #b74b4b;
    border-radius: 12px;
    transition: all 0.3 ease;
}

::-webkit-scrollbar-thumb:hover {
    background: #b74b4b;
}

::selection {
    background-color: white;
    /* สีพื้นหลังตอนเลือก = สีขาว */
    color: black;
    /* สีตัวหนังสือตอนเลือก = สีดำ */
}

::-moz-selection {
    /* สำหรับ Firefox เวอร์ชั่นเก่า */
    background-color: white;
    color: black;
}

/* --- ควบคุมการเลื่อนหน้าจอ --- */
body.overlay-active {
    overflow: hidden;
    /* ซ่อน scrollbar และป้องกันการเลื่อน */
}

/* --- Overlay แบบใหม่ (Simple Click Overlay) --- */
.click-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0 0 15px #b3b3b3;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.click-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

nav {
    position: fixed;
    z-index: 1000;
}

.volume-control {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1001;
}

/*navbar styling */
nav {
    width: 100%;
    height: 10vh;
}

.nav-container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo {
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.logo span {
    color: #b74b4b;
    text-shadow: 0 0 10px #b74b4b;
}

nav {
    background-color: transparent;
    color: white;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container .links a.active {
    color: #b74b4b;
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

.hamburg,
.cancel {
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
    color: white;
    opacity: 0;
    pointer-events: none;
    font-size: clamp(2.5rem, 0.5rem + 5vw, 3rem);
}

@media (max-width: 968px) {
    .hamburg {
        opacity: 1;
        pointer-events: auto;
        top: 20px;
        right: 20px;
        text-shadow: 0 0 15px #b3b3b3;
    }

    .nav-container .logo {
        font-size: 40px;
        top: 11px;
    }
}

@media (max-width: 768px) {
    .hamburg {
        opacity: 1;
        pointer-events: auto;
        top: 20px;
        right: 20px;
        text-shadow: 0 0 15px #b3b3b3;
    }

    .nav-container .logo {
        font-size: 35px;
        top: 10px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-container .links {
    display: flex;
}

.nav-container .links a {
    position: relative;
    font-size: 1.2rem;
    color: white;
    margin: 0 20px;
    text-decoration: none;
    font-weight: 550;
    transition: 0.3s linear;
}

.nav-container .links a::before {
    position: absolute;
    content: "";
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: #b74b4b;
    transition: 0.2s linear;
}

.nav-container .links a:hover::before {
    width: 100%;
}

.nav-container .links a:hover {
    color: #b74b4b;
}

.dropdown {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: auto;
    background-color: rgba(0, 0, 0, 0.9);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 60px;
}

.dropdown.open {
    transform: translateY(0);
}

.dropdown a {
    display: block;
    color: white;
    font-size: 25px;
    text-decoration: none;
    padding: 15px 20px;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
}

.dropdown a:hover {
    background-color: #b74b4b;
}

.dropdown .cancel {
    opacity: 1;
    pointer-events: auto;
    position: absolute;
    top: 15px;
    right: 15px;
}

/*main*/
section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 90vh;
    padding-top: 120px;
    padding-bottom: 5vh;
    box-sizing: border-box;

}

section .main-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
    padding-left: 450px;
    padding-right: 450px;
    align-items: center;
}

.main-container .image {
    width: 380px;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 50px #b74b4b;
    flex-shrink: 0;
    position: relative;
    background-color: #1a1a1a;
}

.ellipse-switcher .media-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.ellipse-switcher .media-item.active {
    opacity: 1;
}

.main-container .image:hover {
    animation: animate 1.5s ease-in-out infinite;
}

@keyframes animate {
    0% {
        scale: 1;
    }

    50% {
        scale: 1.05;
    }

    100% {
        scale: 1;
    }
}

.main-container {
    text-align: center;
}

.content-and-player-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 500px;
    max-width: 100%;
    transition: transform 0.3s ease-out;
    transform-style: preserve-3d;
}

.main-container .content {
    backdrop-filter: blur(5px);
    width: 500px;
    min-height: 200px;
    border: 4px solid #161616;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    color: white;
    transition: transform 0.2s ease-out;
    transform-style: preserve-3d;
    text-align: left;
    line-height: 1;
    padding: 20px;
    margin-bottom: 10px;
}

.content h1 {
    font-size: clamp(2rem, 2rem + 5vw, 2rem);
    margin-bottom: 8px;
}

.content h1 span {
    color: #b74b4b;
    text-shadow: 0 0 10px #b74b4b;
}

.content h2 {
    font-size: clamp(0.5rem, 0.5rem + 5vw, 1.6rem);
    ;
}

.content .changing-text {
    color: #fc7100;
    text-shadow: 0 0 10px #b74b4b;
    font-weight: bold;
}

.content p {
    font-size: clamp(0.4rem, 0.2rem + 9vw, 1rem);
    margin: 10px 0;
    line-height: 1.5rem;
}

.social-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    border-radius: 50%;
    color: #b74b4b;
    margin: 5px 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.social-links i:hover {
    scale: 1.3;
    color: black;
    background-color: #b74b4b;
    filter: drop-shadow(0 0 10px #b74b4b);
}

.btn-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    height: 50px;
    padding: 0 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #b74b4b;
    background-color: #b74b4b;
    color: white;
    transition: all 0.2s ease-out;
}

.btn-main:hover {
    transform: scale(1.05);
    background-color: transparent;
    color: #b74b4b;
    box-shadow: 0 0 20px #b74b4b;
}

.sponsor-btn {
    background-color: #282c34;
    border-color: #4a4f58;
    color: white;
}

.sponsor-btn i {
    color: #e781a4;
    margin-right: 8px;
}

.sponsor-btn:hover {
    border-color: #e781a4;
    background-color: #3c4049;
    color: #e781a4;
    box-shadow: 0 0 20px #e781a4;
}

section .content {
    backdrop-filter: blur(5px);
    width: 80%;
    margin: 0px auto;
    font-family: 'poppins', sans-serif;
}

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

section .title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

section .title span {
    color: white;
    font-size: 30px;
    font-weight: 600;
    position: relative;
    padding-bottom: 8px;
}

section .title span::before,
section .title span::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background: #b74b4b;
    left: 0;
    bottom: 0;
}

section .title span::after {
    bottom: -7px;
    width: 70%;
    left: 50%;
    transform: translateX(-50%);
}

.about .about-details .left {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about .about-details .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 32px;
}

.about-details .right {
    width: 40%;
    text-align: left;
}

section .topic {
    color: white;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
    text-shadow: 0 0 15px;
}

.about-details .right p {
    text-align: justify;
    color: white;
    font-size: 16px;
    text-shadow: 0 0 10px;
}

.about-details .right p .intro {
    font-size: 18px;
    color: #4070F4;
    font-weight: bold;
}

.skills .boxes .Educational {
    font-size: 33px;
    color: #fff;
    text-shadow: 0 0 10px;
}

.skills .boxes .box-skills {
    display: block;
    width: 100%;
    font-size: 33px;
    color: #fff;
    text-shadow: 0 0 10px;
    margin-top: 20px;
}

.skills .text .topic {
    font-size: 33px;
    color: #fff;
}

.skills .content {
    padding: 40px 0;
}

.skills .skills-details {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.skills-details .text {
    width: 50%;
    text-align: left;
}

.skills-details p {
    color: white;
    text-align: left;
    font-size: 17px;
}

.skills-details .text p .day {
    color: #4070F4;
    font-size: 20px;
}

.skills .skills-details .experience {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.skills-details .experience .num {
    color: white;
    font-size: 80px;
}

.skills-details .experience .exp {
    color: white;
    margin-left: 20px;
    font-size: 18px;
    font-weight: 500;
    margin: 0 6px
}

.skills-details .boxes {
    width: 45%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.skills-details .box {
    width: calc(100% / 2 - 20px);
    margin: 20px 0;
}

.skills-details .boxes .topic {
    font-size: 25px;
    color: #b74b4b;
}

.skills-details .boxes .per {
    font-size: 40px;
    color: #b74b4b;
}

.skills-details .boxes .topic-s {
    font-size: 20px;
    color: #b77f4b;
}

.skills-details .boxes .per-s {
    font-size: 35px;
    color: #b77f4b;
}

.services .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services .boxes .box {
    margin: 20px 0;
    width: calc(100% / 3 - 20px);
    text-align: center;
    border-radius: 12px;
    padding: 30px 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.12);
    cursor: default;
    color: white;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    position: relative;
    padding-bottom: 60px;
}

/* 2. สไตล์ของปุ่ม 'more' */
.more-button {
    position: absolute;
    /* จัดตำแหน่งเทียบกับ .box */
    bottom: 20px;
    /* ระยะห่างจากขอบล่าง */
    right: 20px;
    /* ระยะห่างจากขอบขวา */

    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* 3. สไตล์เมื่อนำเมาส์ไปชี้ */
.more-button:hover {
    background-color: #b97272;
    /* ใช้สีเดียวกับ .icon หรือสีที่คุณต้องการ */
    color: #fff;
    transform: scale(1.05);
    /* ขยายเล็กน้อยเมื่อชี้ */
}

.services .boxes .box:hover {
    background: #b74b4b;
    color: #f1f1f1;
    transform: scale(1.03);
}

.services .boxes .box .icon {
    height: 50px;
    width: 50px;
    background: #b74b4b;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 18px;
    color: #fff;
    margin: 0 auto 10px auto;
    transition: background-color 0.3s ease-in-out;
}

.services .boxes .box:hover .icon {
    background-color: #983a3a;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
    color: white;
    transition: color 0.3s ease-in-out;
}

.services .boxes .box:hover .topic,
.services .boxes .box:hover p {
    color: #fff;
}

.services .boxes .box .topic .thai-font {
    color: white;
    font-size: 25px;
}

.services .boxes .box .mc-ip {
    color: #b77f4b;
}

.contact .content {
    margin: 0 auto;
    padding: 30px 0;
}

.contact .text {
    width: 80%;
    text-align: center;
    margin: auto;
}

.contact .text p {
    color: white;
    font-size: 20px;
}

.contact .text .contact-links {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact .text .contact-links i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: 0.2rem solid #b74b4b;
    border-radius: 50%;
    color: #b74b4b;
    margin: 5px 15px;
    font-size: 1.5rem;
    transition: 0.2s linear;
}

.contact .text .contact-links i:hover {
    scale: 1.3;
    color: black;
    background-color: #b74b4b;
    filter: drop-shadow(0 0 10px #b74b4b);
}

.contact .text .contact-links .contact-links-tooltip {
    position: relative;
    display: inline-block;
}

.contact .text .contact-links-tooltip-text {
    visibility: hidden;
    width: 100px;
    background-color: rgb(133, 46, 46);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 6px 0;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 1px;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.contact .text .contact-links-tooltip:hover .contact-links-tooltip-text {
    visibility: visible;
    opacity: 1;
}

.contact .text .contact-links-tooltip a .roblox {
    font-size: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/6/6c/Roblox_Logo.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    line-height: 1.5rem;
    vertical-align: middle;
}

.contact .text .contact-links-tooltip a .osu {
    font-size: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/1e/Osu%21_Logo_2016.svg');
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    width: 3rem;
    height: 3rem;
    line-height: 1.5rem;
    vertical-align: middle;
}

.contact .text .address {
    color: white;
    font-size: 20px;
}

footer {
    background: #b74b4b;
    padding: 15px 0;
    text-align: center;
    font-family: 'poppins', sans-serif;
    margin-top: 100px;
}

footer .text span {
    font-size: 17px;
    font-weight: 400;
    color: #fff;
}

footer .text span a {
    font-weight: 500;
    color: #fff;
}

footer .text span a:hover {
    text-decoration: underline;
}

.scroll-button a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    color: #fff;
    background: #b74b4b;
    padding: 7px 12px;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.15);
    display: none;
}

/* Discord Profile Card Styles */
.discord-profile-card {
    background: #18191c;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #dcddde;
    min-height: 70px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-sizing: border-box;
}

.discord-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.discord-avatar {
    margin-top: -10px;
    width: 140%;
    height: 140%;
    border-radius: 50%;
    object-fit: cover;
}

.discord-avatar-decoration {
    position: absolute;
    top: 50%;
    left: 80%;
    transform: translate(-50%, -50%) scale(1.18);
    width: 150%;
    height: 150%;
    pointer-events: none;
    z-index: 2;
}

.discord-status {
    position: absolute;
    right: -15px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #18191c;
    box-sizing: border-box;
    z-index: 3;
}

.discord-status.online {
    background-color: #43b581;
}

.discord-status.idle {
    background-color: #faa61a;
}

.discord-status.dnd {
    background-color: #f04747;
}

.discord-status.offline {
    background-color: #747f8d;
}

.discord-info-wrapper {
    display: flex;
    margin-left: 15px;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
    min-width: 0;
    gap: 2px;
}

.discord-username {
    font-weight: 600;
    font-size: 1rem;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discord-activity {
    font-size: 0.8rem;
    line-height: 1.3;
    color: #b9bbbe;
}

/* --- เพิ่มสไตล์สำหรับ Timestamp --- */
.discord-activity-timestamp {
    font-size: 0.8rem;
    color: #a0a2a5;
    /* สีเทาจางๆ */
    margin-top: 4px;
    /* ระยะห่างจากข้อความกิจกรรมด้านบน */
}

/* --- CSS ที่แก้ไขสำหรับ Activity (เพื่อให้เต็ม) --- */
.discord-activity div {
    white-space: normal;
    /* อนุญาตให้ขึ้นบรรทัดใหม่ */
    word-break: break-word;
    /* ตัดคำยาวๆ ที่ไม่สามารถขึ้นบรรทัดใหม่ได้ */
}

/* --- จบส่วนแก้ไข --- */

.discord-activity-asset {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    margin-left: 8px;
}

/* Back to Top Button */
#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#backToTopBtn:hover {
    opacity: 1;
    transform: scale(1.2);
}

#backToTopBtn img {
    width: 150px;
    height: 150px;
    border: none;
    transition: transform 0.3s ease-in-out;
}


@media (max-width:1000px) {
    .about .about-details {
        justify-content: center;
        flex-direction: column;
    }

    .about .about-details .left {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .about-details .right {
        width: 90%;
        margin: 40px 0;
        text-align: center;
    }

    .about-details .right p {
        text-align: left;
        display: block;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .services .boxes .box {
        margin: 20px 0;
        width: calc(100% / 2 - 20px);
    }
}


@media (max-width: 968px) {
    nav .logo {
        position: absolute;
        top: 16px;
        left: 15px;
        font-size: 1.5rem;
    }

    section .main-container {
        padding-left: 0px;
        display: flex;
        flex-direction: column;
    }

    .nav-container .links {
        display: none;
    }

    .hamburg,
    .cancel {
        opacity: 1;
        pointer-events: visible;
    }

    .main-container .content {
        margin-top: 20px;
        width: 80%;
    }

    .social-links i {
        width: 2.5rem;
        height: 2.5;
        font-size: 1.5rem;
    }

    .main-container .image {
        z-index: -1;
        width: 300px;
        height: 375px;
        border-radius: 50%;
    }


    .skills .skills-details {
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .skills-details .text {
        justify-content: center;
        margin-bottom: 50px;
    }

    .skills-details .boxes {
        justify-content: center;
        align-items: center;
        width: 100%;
        margin-top: 20px;
    }

    .skills .boxes .box-skills {
        align-items: center;
    }

    .skills-details .boxes .Educational,
    .skills-details .boxes .box-skills {
        width: 100%;
        text-align: center;
        font-size: 33px;
        margin-bottom: 10px;
    }

    .services .boxes .box {
        margin: 20px 0;
        width: 100%;
    }

    .contact .text {
        width: 100%;
    }

    .contact-links {
        width: 100%;
    }

    nav .logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        font-size: 1.5rem;
    }

    .nav-container .links {
        display: none;
    }

    .hamburg {
        opacity: 1;
        pointer-events: auto;
    }

    section .main-container {
        padding-left: 20px;
        padding-right: 20px;
        flex-direction: column;
        gap: 25px;
    }

    .main-container .image {
        width: 200px;
        height: 250px;
        border-radius: 50%;
        margin-bottom: 0;
    }

    .content-and-player-wrapper {
        display: flex;
        flex-direction: column;
        width: 500px;
        align-items: stretch;
        max-width: 90%;
    }

    .main-container .content {
        width: 100%;
        margin-top: 0;
        text-align: center;
        padding: 15px;
        font-size: 15px;
        border-radius: 12px;
        margin-bottom: 10px;
        transition: none;
        transform-style: unset;
    }

    .main-container .content h1 {
        font-size: 1.6rem;
    }

    .main-container .content h2 {
        font-size: 1.1rem;
    }

    .main-container .content p {
        font-size: 0.9rem;
        text-align: center;
        margin: 10px 0;
    }

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

    .social-links i {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
        margin: 5px 8px;
    }

    .content .btn {
        margin-top: 15px;
    }

    .content button {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    .discord-profile-card {
        width: 100%;
        min-width: auto;
        max-width: 100%;
    }
}