body {
    background-color: #1a1a1a;
    color: white;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    margin: auto;
    max-width: 100%;
}

.menu {
    width: 52px;
    height: 52px;
}

.lang_btn {
    border: 1px solid #8080ff70;
    background: transparent;
    color: aliceblue;
    border-radius: 5px;
    padding: 3px 15px 3px 15px;
}

.custom-header {
    padding: 5px 5px;
}

.search-container {
    position: relative;
}

.search-wrapper {
    display: none;
}

.search-input {
    width: 100%;
    padding: 10px 35px 10px 10px;
    backdrop-filter: blur(8px) saturate(148%);
    -webkit-backdrop-filter: blur(8px) saturate(148%);
    background-color: rgba(17, 25, 40, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    color: white !important;
    font-size: 14px !important;
}

.search-input-hidded {
    display: none !important;
}

.search-icon-hidden {
    display: none !important;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 16px;
    pointer-events: none;
}

.menu-btn {
    background-color: transparent !important;
    outline: none !important;
    border: none !important;
}

.menu-txt {
    color: #CCCCCC;
    font-family: 'Poppins' !important;
    font-size: 14px;
    letter-spacing: 1px;
}

.logo-img {
    width: 220px !important;
}

.dropdown-toggle:focus,
.dropdown-toggle:active {
    box-shadow: none !important;
    outline: none !important;
}

.dropdown-menu {
    backdrop-filter: blur(3px) saturate(200%);
    -webkit-backdrop-filter: blur(3px) saturate(200%);
    background-color: rgba(32, 32, 34, 0.87);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    font-family: 'Poppins' !important;
    height: 250px;
}

.dropdown-item {
    display: block;
    width: 100%;
    margin-top: 20px !important;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    border: 0;
    font-size: 14px;
    letter-spacing: .5px;
    color: whitesmoke;
}

.dropdown-toggle::after {
    display: none !important;
}

.footer {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.text-footer {
    color: #7e7b7b;
    margin-bottom: 0px !important;
    font-size: 8px;
}

.header_tc,
.para_tc {
    font-family: 'Poppins';
    text-align: center;
}

.fadded-container {
    max-height: 700px;
    /* adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            /* Top fade */
            rgba(0, 0, 0, 1) 15%,
            /* Fully visible area */
            rgba(0, 0, 0, 1) 85%,
            /* Fully visible area */
            rgba(0, 0, 0, 0)
            /* Bottom fade */
        );
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 1) 15%,
            rgba(0, 0, 0, 1) 85%,
            rgba(0, 0, 0, 0));

    scrollbar-width: none;
}

.card-unsub {
    background-color: #24242447;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.card-unsub h2 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-family: 'Poppins';
    color: #6d6868;
}

.card-unsub input[type="number"] {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-unsub input[type="number"]:focus {
    border-color: #666;
    box-shadow: 0 0 5px rgba(100, 100, 100, 0.5);
    outline: none;
    font-family: 'Poppins';
}

.card-unsub button {
    font-family: 'Poppins';
    padding: 10px 20px;
    background-color: #444;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.card-unsub button:hover {
    background-color: #333;
}


.footer {
    position: absolute;
  bottom: 0;  
  width: 100% !important;  
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.text-footer{
    color: #7e7b7b;
    margin-bottom: 0px !important;
    font-size: 8px;
}


@media (max-width: 768px) {
    .logo-img {
        width: 220px;
    }

    .menu {
        width: 35px;
        height: 52px;
    }

    .top-row {
        flex-wrap: nowrap;
    }
}

@media (max-width: 480px) {

    .logo-img {
        width: 200px;
    }

    .menu {
        width: 32px;
        height: 52px;
    }

}

.footer-link {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: normal;
}
.footer-link:hover {
    color: #ccc !important;
    text-decoration: underline;
}