﻿@font-face {
    font-family: 'Nunito';
    src: url('/landing_font/font_nunito/Nunito-ExtraLight.ttf') format('truetype');
    font-weight: 300; /* ExtraLight */
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('/landing_font/font_nunito/Nunito-Light.ttf') format('truetype');
    font-weight: 400; /* Light */
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('/landing_font/font_nunito/Nunito-Regular.ttf') format('truetype');
    font-weight: 500; /* Regular */
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('/landing_font/font_nunito/Nunito-Medium.ttf') format('truetype');
    font-weight: 600; /* Medium */
    font-style: normal;
}

@font-face {
    font-family: 'Nunito';
    src: url('/landing_font/font_nunito/Nunito-SemiBold.ttf') format('truetype');
    font-weight: 700; /* Semibold */
    font-style: normal;
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Nunito', sans-serif;
    background-color: #FAFAFA;
}

.menu-container {
    height: 416px;
    background-image: url(/landing_images/header_background_scatch.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.custom-header {
    background: rgba(255, 255, 255, 0.4); 
    backdrop-filter: blur(12px); 
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    height: 88px;
    position: relative;
    z-index: 10;
}

.logo {
    margin-left: 80px;
}

.logo img {
    height: 48px;
}

.menu .nav-link {
    font-size: 16px;
    color: #141414;
    font-weight: 500;
}

    .menu .nav-link:hover {
        color: #f57c00;
    }

.highlight {
    color: #FF6B00 !important;
}

.icons {
    margin-right: 80px;
    display: flex;
    gap: 40px;
}

.user-menu{
    display:flex;
    gap: 11px;
}

.icon {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.user-icon {
    width: 36px;
    height: 36px;
    cursor: pointer;
}

.dropdown-icon {
    width: 24px;
    height: 24px;
}

.scratch-title h1 {
    font-size: 42px;
    font-weight: 700;
    color: #252525;
    margin-top: 80px;
}


.contact-section {
    width: 100%;
    background-image: url(/landing_images/background_dep.png);
    box-sizing: border-box;
}

.contact-header {
    padding-top: 64px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .contact-header h2 {
        font-size: 20px;
        font-weight: 700;
        color: #FF6B00;
        margin-bottom: 0 !important;
    }

    .contact-header p {
        font-size: 32px;
        font-weight: 700;
        color: #141414;
        margin-bottom: 0 !important;
    }

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin: 54px 160px 0 160px;
}

.contact-description {
    flex: 1;
}

    .contact-description h3 {
        font-size: 64px;
        font-weight: 700;
        color: #141414;
        margin-bottom: 0 !important;
    }

    .contact-description p {
        font-size: 20px;
        line-height: 30px;
        font-weight: 500;
        color: #3A3A3C;
        margin-bottom: 0 !important;
    }

    .contact-description img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

.contact-form {
    flex: 1;
    background: #FFFFFF;
    padding: 30px;
    border: 2px solid #FF8C00; 
    border-radius: 12px;
    display: flex;
    flex-direction:column;
    gap: 30px;
}

    .contact-form h3 {
        font-size: 32px;
        font-weight: 700;
        color: #252525;
        margin-bottom: 0 !important;
        text-align: center;
    }

.form-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 20px; 
}

    .form-row .form-group {
        flex: 1; 
    }

.form-group{
    margin-bottom: 0 !important;
}
.contact-form label {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #141414;
}

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        font-weight: 400;
        color: #949499;
        border: 1px solid #DDDDE5;
        border-radius: 12px;
        outline: none;
        transition: border-color 0.3s;
        background-color: #FDFDFD;
    }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #F57C00;
        }

    .contact-form textarea {
        resize: none;
    }

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border: 1px solid #ff6600;
}

button:focus {
    outline: none;
    border: 1px solid #ff6600;
}

.contact-form .submit-btn {
    width: 35%;
    margin: 0 auto;
    gap: 12px;
    padding: 16px 16px 16px 16px;
    font-size: 20px;
    font-weight: 700;
    border-radius: 8px;
    color: #FFF;
    background: #F57C00;
    border: none;
    cursor: pointer;
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
}

.submit-btn:hover {
    background: #FF6A00;
    transform: scale(1.02); 
}

.arrow-icon {
    width: 32px;
    height: 32px;
}

.footer {
    background-color: #FAFAFA;
    padding: 80px 0 0 0;
    font-size: 14px;
    color: #333;
}

.footer-contain {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 2;
}

.footer-header {
    display:flex;
    align-items: end;
    gap:20px;
    margin-bottom: 30px;
}

    .footer-header img {
        max-width: 320px;
        height: 120px;
    }

    .footer-header p {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        margin: 0;
    }

.footer-container {
    display: flex;
    gap: 220px;
}

.footer-contact, .footer-solutions {
    flex: 1;
    display: flex;
    flex-direction:column;
    gap: 16px;
}

    .footer-contact img {
        width: 24px;
        height: 24px;
        margin-right: 10px; 
        display: inline-block;
    }

    .footer-contact h4, .footer-solutions h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0 !important;
    }

    .footer-contact p, .footer-solutions ul {
        font-size: 18px;
        margin: 0;
        font-weight: 500;
        line-height: 28px;
    }

    .footer-contact i {
        color: #F57C00;
        margin-right: 8px;
    }

    .footer-solutions ul {
        list-style: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }


    .footer-solutions a {
        text-decoration: none;
        color: #333;
        transition: color 0.3s;
    }

        .footer-solutions a:hover {
            color: #F57C00;
        }

.footer-right {
    flex: 1;
    margin-top: 60px;
    text-align: right;
}

.footer-apps a {
    margin: 5px;
    display: inline-block;
}

.footer-apps img {
    width: 110px;
    height: 40px;
}

.confirm-img {
    width: 250px !important;
    height: 100px !important;
}

.footer-bottom {
    background-color: #262A37;
    text-align: center;
    padding: 10px 20px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 400;
    margin-top: 30px;
}
    .footer-bottom p {
        padding: 0 !important;
        margin: 0 !important;
    }

    .footer-bottom span {
        font-weight: 700;
    }

.content-container {
    display: flex;
    flex-direction: column;
    margin: 20px auto;
    max-width: 1400px;
    gap: 40px;
}

.content-wrapper {
    display: flex;
    gap: 40px;
    margin: 0 auto;
}

.sidebar {
    flex: 1;
}

.categories {
    border-radius: 24px;
    text-align: center;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.content-title {
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    font-size: 24px;
    color: #FFFFFF;
    font-weight: 700;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    padding: 16px 20px;
}

.cate-menu{
    padding: 24px;
}

.cate-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 12px;
    border: solid; 
    border-width: 1px 1px 1px 4px; 
    border-color: #EDEDF2;
    padding: 12px;
    cursor: pointer;
}

    .category-item img {
        width: 32px;
        height: 32px;
    }

    .category-item span {
        font-size: 16px;
        color: #636366;
        font-weight: 500;
    }

    .category-item.active {
        background: #FFF7ED;
        border-color: #FF8C00;
    }

    .category-item.active span {
        color: #F06C0C;
        font-weight: 700;
    }

    .category-item:hover {
        transform: scale(1.02);
    }

.btn-post {
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #FFFFFF;
    border: none;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 40px;
    box-shadow: 0 0 40px 6px rgba(250, 144, 16, 0.5);
    width: 100%;
}

    .btn-post:hover {
        background: #FF6A00;
        box-shadow: 0 0 40px 6px rgba(250, 144, 16, 0.5);
        transform: translateY(-2px);
    }

.main-content {
    flex: 3;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.main-content h2 {
    color: #FF6A00;
    font-weight: 700;
    font-size: 24px;
    margin: 0 !important;
}

.post {
    border: 1px solid #EDEDF2;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-action {
    display: flex;
    text-decoration: none;
}

    .post-action:hover {
        text-decoration: none;
    }

.post-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.post-info {
    flex: 1;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.post-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: #3A3A3C;
    /*word-break: break-word;*/
}

.post-author {
    font-size: 14px;
    color: #636366;
    margin: 0 !important;
    font-weight: 500;
}

.post-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.post-interactions {
    display: flex;
    gap: 20px;
}

.icon-post {
    color: #3A3A3C;
    font-size: 14px;
    font-weight: 500;
}

.icon-post  img{
    width: 20px;
    height: 20px;
}

.post-body {
    display: flex;
    gap: 20px;
}

.post-image {
    width: 350px;
    height: 200px;
    border-radius: 16px;
}

.video-thumbnail {
    position: relative;
    width: 350px;
    height: 200px;
}

.thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.post-iframe {
    width: 350px;
    height: 200px;
    border-radius: 16px;
}

.post-description h4 {
    font-size: 16px;
    font-weight: 700;
    color: #3A3A3C;
}

.post-description P {
    font-size: 14px;
    font-weight: 400;
    color: #3A3A3C;
}

.btn-try-play {
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.btn-small {
    border: 1px solid #FF6B00;
    color: #FF6B00;
    background: #FFFFFF;
}

.btn-try {
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #FFF;
    border: none;
}

.btn-try-play:hover {
    transform: translateY(-2px);
}

.post-footer {
    display: none; 
    border-top: 1px solid #F06C0C;
    justify-content: center;
    gap: 80px;
    padding-top: 20px;
}

.ranking {
    flex: 1.5;
    
}

.ranking-content {
    border-radius: 24px;
    text-align: center;
    background-color: #FFFFFF;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.rank-info{
    padding: 20px;
}

.rank-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rank-info li {
    display: flex;
    align-items: center;
    gap: 24px;
}

    .rank-icon {
        width: 48px;
        height: 48px;
    }

.rank-1 {
    background-image: url('/landing_images/avatar_bxh/crown/crown_1.png');
}

.rank-2 {
    background-image: url('/landing_images/avatar_bxh/crown/crown_2.png');
}

.rank-3 {
    background-image: url('/landing_images/avatar_bxh/crown/crown_3.png');
}

.rank-4 {
    background-image: url('/landing_images/avatar_bxh/crown/crown_4.png');
}

.rank-user{
    display: flex;
    gap: 12px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.info {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap:5px;
}

    .info .name {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
        color: #3A3A3C;
    }

    .info .score {
        font-size: 12px;
        color: #F06C0C;
        font-weight: 600;
        margin: 0;
        position: relative;
        padding-left: 25px;
    }

        .info .score::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-image: url('/landing_images/cup.png'); 
            background-size: cover;
            background-repeat: no-repeat;
        }

.reward-section {
    border-top: 2px dashed #FF6B00; 
    margin: 0 20px;
    text-align: left;
    padding-bottom: 20px;
}

.reward-title {
    font-size: 20px;
    font-weight: 700;
    color: #F06C0C;
    margin-top: 20px;
    margin-bottom: 0
}

.reward-list {
    list-style: none;
    padding: 24px 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .reward-list li {
        display: flex;
        align-items: center;
        position: relative;
    }

.score-cup {
    display: flex;
    position: absolute;
    right: 80px;
}

.reward-text {
    font-size: 16px;
    color: #3A3A3C;
    margin-right: 20px;
    font-weight: 500;
}

.reward-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.reward-points {
    font-size: 16px;
    color: #3A3A3C;
    font-weight: 500;
}

.partners-section {
    text-align: center;
}

.section-title {
    font-size: 20px;
    color: #FF6A00;
    font-weight: 700;
    margin: 0 !important;
}

.section-content {
    font-size: 30px;
    color: #161616;
    font-weight: 700;
    padding: 20px 60px;
    margin: 0 !important;
}

.partners-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.partners-row-1 {
    display: flex;
}

.partners-row-2 {
    display: flex;
    margin-top: -60px;
}

.partner-logo img {
    width: 260px;
    height: 260px;
}

.reviews-section {
    text-align: center;
    margin-bottom: 40px;
}

.reviews-container {
    display: flex;
    justify-content: center;
    max-width: 1400px;
    gap: 20px;
    margin-left: auto;
    margin-right: auto; 
}

.review-video {
    max-width: 450px;
    height: 200px;
    border: 10px solid #C65A2D;
    border-radius: 10px;
    padding: 0 !important;
    background-color: #fff;
    overflow: hidden;
}

    .review-video iframe {
        width: 100%;
        height: 100%;
        border: none;
        display: block;
        margin: 0 auto;
    }

.review-slider {
    flex: 1;
    margin-left: 20px;
}

.review-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}


    .review-card h4 {
        font-size: 16px;
        color: #252525;
        font-weight: 600;
        margin-bottom: 8px;
        text-align: left;
    }

.review-icons {
    display: flex;
    margin-bottom: 12px;
}

    .review-icons img {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

.review-card .review-text {
    font-size: 14px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 12px;
    text-align: left;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .review-author .avatar {
        width: 54px;
        height: 54px;
        border-radius: 50%;
    }

.customer-info {
    text-align: left;
    color: #252525;
}

    .customer-info .name {
        font-size: 16px;
        font-weight: 600;
        margin: 0 !important;
    }

    .customer-info .job {
        font-size: 14px;
        font-weight: 400;
        margin: 0 !important;
    }

.game-details-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.back-link img {
    width: 30px;
    height: 30px;   
}

.back-link span {
    text-decoration: none;
    font-size: 20px;
    color: #000000;
    font-weight: 500;
}

    .back-link:hover {
        text-decoration: underline;
        text-decoration: none;
    }

.game-details-main {
    display: flex;
    gap: 40px;
    padding: 0 40px;
}

.game-content {
    flex: 2;
}

.game-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
}

.game-media {
    position: relative;
}

.game-preview {
    width: 100%;
    border-radius: 16px;
    filter: brightness(70%);
}

.btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #FFFFFF;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
}

.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-row {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gallery-item {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .gallery-item.large {
        flex: 2; 
    }

    .gallery-item img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        transition: transform 0.3s ease-in-out;
    }

        .gallery-item img:hover {
            transform: scale(1.02); 
        }

.game-side-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.game-description {
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display:flex;
    flex-direction: column;
    gap: 12px;
}

    .title-details {
        font-size: 20px;
        font-weight: 700;
        color: #F06C0C;
        text-align: left;
        margin: 0 !important;
    }

    .game-description h5 {
        font-size: 16px;
        font-weight: 700;
        color: #3A3A3C;
        margin: 0 !important;
    }

    .game-description p {
        font-size: 16px;
        font-weight: 400;
        color: #3A3A3C;
        margin: 0 !important;
    }

.related-products {
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    padding: 20px;
}

.product-same{
    display: flex;
}

.product-same img {
    width: 100px;
    height: 60px;
    border-radius: 8px;
}

.product-name {
    font-size: 16px !important;
}

.comment-content{
    padding: 0 40px;
}

.comments-section {
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.comment-input {
    display: flex;
    gap: 20px;
    align-items: center;
}

    .comment-input input {
        flex: 1;
        padding: 16px;
        border-radius: 8px;
        border: 1px solid #DDDDE5;
        color: #000000;
        font-size: 18px;
    }
    .comment-input::placeholder{
        color: #949499;
        font-size: 16px;
        font-weight: 400;
    }

    .comment-input .btn-comment {
        background: linear-gradient(90deg, #FF8C00, #FF6A00);
        color: #FFFFFF;
        border: none;
        padding: 14px 24px;
        border-radius: 8px;
        font-size: 18px;
        font-weight: 500;
    }

.comment-title {
    font-weight: 700;
    font-size: 20px;
    color: #3A3A3C;
    margin: 0 !important;
}

.comment-item {
    display: flex;
    gap: 12px;
    margin: 0 !important;

}

    .comment-item img{
        width: 48px;
        height: 48px;
    }

.comment-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-details .comment-author {
    font-weight: 700;
    font-size: 16px;
    margin: 0 !important;
    color: #3A3A3C;
}

.comment-details .comment-text {
    font-weight: 400;
    font-size: 14px;
    margin: 0 !important;
    color: #3A3A3C;
    line-height: 22px;
}

.popup-overlay {
    opacity: 0;
    visibility: hidden; 
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    transition: opacity 0.3s ease, visibility 0.5s ease; 
    display: flex;
    z-index:100000;
}

    .popup-overlay.active {
        opacity: 1; 
        visibility: visible;
    }


.popup-container {
    background-color: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 640px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #141414;
    margin: 0 !important;
}

.close-popup {
    border-radius: 8px;
    border: 1px solid #000000;
    color: #000000;
    background-color: #FFFFFF;
    width: 26px;
    height: 26px;
    font-size: 24px;
    display: flex;
    align-items: end;
}

.popup-tabs {
    display: flex;
    gap: 10px;
}

.tab {
    flex: 1;
    padding: 12px;
    border: solid;
    border-width: 1px 1px 1px 4px;
    border-color: #EDEDF2;
    border-radius: 12px;
    cursor: pointer;
    background-color: #FFFFFF;
    color: #636366;
    display: flex;
    gap: 12px;
}

    .tab.active {
        background-color: #FFF7ED;
        border-width: 1px 1px 1px 4px;
        border-color: #FF8C00;
        color: #FF8C00;
        font-size: 16px;
        font-weight: 700;
    }

    .tab:hover {
        transform: scale(1.02);
    }

.icon-game-scratch {
    background-image: url(/landing_images/icon_category/game_img.png);
    background-size: contain;
    display: inline-flex;
    width: 24px; 
    height: 24px;
}
.icon-class-draw {
    background-image: url(/landing_images/icon_category/digital_drawing_img.png);
    background-size: contain;
    display: inline-flex;
    width: 24px; 
    height: 24px;
}

.tab-content {
    display: none;
}

    .tab-content.active {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

.upload-thumbnail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .upload-thumbnail h4{
        font-size: 18px;
        font-weight: 400;
        color: #141414;
        margin: 0 !important;
        text-align: left;
    }

    .upload-container {
        display: flex;
        gap: 16px;
    }

.img_post{
    width: 100px;
    height: 100px;
}

.thumbnail-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.thumbnail-buttons {
    display: flex;
    gap: 16px;
}

.upload-btn {
    display: inline-flex;
    padding: 12px 12px 12px 16px;
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #FFFFFF;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    gap: 12px;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
}

.icon-upload {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background-image: url(/landing_images/create_post/Upload.png);
    background-size: contain;
    align-items: center;
}

.delete-btn {
    display: inline-flex;
    padding: 12px;
    background-color: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EF4444;
    align-items: center;
}

.icon-delete {
    display: inline-flex;
    width: 24px;
    height: 24px;
    background-image: url(/landing_images/create_post/Delete.png);
    background-size: contain;
    align-items: center;
}

.upload-btn:hover {
    background-color: #FF6A00;
}

.upload-thumbnail p {
    font-size: 14px;
    color: #949499;
    font-weight: 300;
    margin: 0 !important;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    font-weight: 400;
    font-size: 16px;
    color: #141414;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #DDDDE5;
    border-radius: 8px;
}

textarea {
    resize: none;
    height: 100px;
}

.image-list{
    display: flex;
    gap: 20px;
}

.image-item{
    width: 100px;
    height: 100px;
    border-radius: 12px;
}

.submit-btn-overlay {
    display: inline-flex;
    padding: 16px 16px 16px 24px;
    background: linear-gradient(90deg, #FF8C00, #FF6A00);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    align-self: center;
    font-weight: 500;
    gap: 12px;
}

    .submit-btn-overlay:hover {
        transform: scale(1.02);
    }

    .arrow-right-btn {
        display: inline-flex;
        width: 24px;
        height: 24px;
        background-image: url(/landing_images/create_post/Arrow-Right.png);
        background-size: contain;
        align-items: center;
    }

.submit-btn:hover {
    background-color: #FF6A00;
}


