* {
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=K2D:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');



.content-container {
    margin-top: 20px;
    display: none;
}

.content-container.show {
    display: block;
    animation: macOSFadeIn 0.3s ease-out forwards;
}

.content-container.hide {
    animation: macOSFadeOut 0.3s ease-in forwards;
}

.custom-iframe-container {
    width: 95%;
    margin: auto;
    height: 1300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

.custom-iframe-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.chat-container {
    background: #151515;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: hidden;
}

.swiper {
    padding: 20px 0;
}

.swiper-slide {
    width: 100%;
    text-align: center;
}

.swiper-wrapper {
    min-height: 100px;
}

#chat-frame {
    max-height: 400px;
    overflow-y: auto;
    width: 100%;
}

.chat-input {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    width: 100%;
}

.chat-input textarea {
    flex: 1;
    background: #222;
    color: #FFF;
    border: none;
    padding: 10px;
    border-radius: 5px;
    min-width: 0;
    width: 100%;
}

.btn-send-chat {
    background: #007bff;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

.character-typing {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFF;
    flex: 1;
}

.button-cancel-chat {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.bg-blue.container {
    max-width: 100%;
    padding: 0;
    overflow-x: hidden;
}

.grid-container.full {
    width: 100%;
}

.custom-note-wrapper {
    display: none;
    margin-top: 20px;
    flex-direction: row;
    background: #1c1c1c;
    border-radius: 18px;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    overflow: hidden;
    min-height: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}

.custom-note-wrapper.animate-in {
    display: flex;
    animation: macOSFadeIn 0.3s ease-out forwards;
}

.custom-note-wrapper.hide {
    animation: macOSFadeOut 0.3s ease-in forwards;
}

.custom-note-sidebar {
    width: 300px;
    background: #2a2a2a;
    border-right: 1px solid #444;
    padding: 20px;
    overflow-y: auto;
    height: 100%;
}

.custom-note-sidebar-header h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-note-new-btn {
    background: #ffc400;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    margin-top: 10px;
}

.custom-note-new-btn:hover {
    background: #ffa300;
}

.custom-note-list {
    list-style: none;
    padding: 0;
}

.custom-note-list li {
    background: #333;
    margin: 5px 0;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    color: #fff;
}

.custom-note-list li:hover {
    background: #444;
}

.custom-note-editor {
    min-height: 400px;
    flex: 1;
    padding: 20px;
    background: #1e1e1e;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #fff;
}

.custom-note-editor-title {
    border: none;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    width: 100%;
}

.custom-note-editor-content {
    border: none;
    font-size: 16px;
    color: #fff;
    background: transparent;
    padding: 0;
    margin: 0;
    outline: none;
    resize: none;
    flex: 1;
    width: 100%;
    line-height: 1.5;
}

.custom-note-delete-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
}

.custom-note-delete-btn img {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.custom-note-empty {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
    font-weight: 500;
}

.crypto-module {
    padding: 20px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 100%;
    color: #FFF;
}

.crypto-module h2 {
    text-align: center;
    margin-bottom: 20px;
}

.crypto-table-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
}

.crypto-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    font-size: 16px;
}

.crypto-table th,
.crypto-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
}

.crypto-table th {
    background: #222;
    color: #FFF;
    position: sticky;
    top: 0;
    z-index: 10;
}

.crypto-table tr:hover {
    background: #1a1a1a;
}

.crypto-table td.rank,
.crypto-table th.rank {
    text-align: center;
    width: 60px;
}

.crypto-table td.icon,
.crypto-table th.icon {
    text-align: center;
    width: 60px;
}

.crypto-table td.icon img {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    object-fit: contain;
    crossorigin: anonymous;
}

.crypto-table td.name,
.crypto-table th.name {
    width: 200px;
}

.crypto-table td.symbol,
.crypto-table th.symbol {
    width: 100px;
}

.crypto-table td.price,
.crypto-table th.price {
    text-align: right;
    width: 120px;
}

.crypto-table td.change,
.crypto-table th.change {
    text-align: right;
    width: 120px;
}

.crypto-table td.change.positive {
    color: #28a745;
}

.crypto-table td.change.negative {
    color: #dc3545;
}

.crypto-loading,
.crypto-error {
    text-align: center;
    padding: 20px;
    color: #FFF;
}

.info-button {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-button svg {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.info-button:hover svg {
    opacity: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background: #1c1c1c;
    color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-close {
    color: #fff;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.modal-close:hover {
    color: #ccc;
}

#modalInfoContent {
    font-size: 14px;
    line-height: 1.5;
}

#modalInfoContent h3 {
    color: #ffc400;
    margin-top: 20px;
    font-size: 18px;
}

#modalInfoContent p {
    margin: 5px 0;
}

.note {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 200px);
    background: white;
    border-radius: 20px 20px 0 0;
    box-shadow: 0px -5px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
    overflow: hidden;
}

.popup.show {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #ff4d4d;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.independent-module {
    font-family: "K2D", sans-serif !important;
    width: 100%;
    padding: 123px 11% 97px 11%;
    background: #171824;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 110px;
}

.independent-module * {
    font-family: "K2D", sans-serif !important;
    box-sizing: border-box;
}

.independent-module .independent-image {
    display: block;
    width: 500px;
    height: 100%;
}

.independent-module .independent-top,
.independent-module .independent-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.independent-module .independent-top {
    justify-content: center;
}

.independent-module .independent-column {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
}

.independent-module .independent-buttons {
    display: flex;
    gap: 5px;
}

.independent-module .independent-buttons button {
    position: relative;
    border-radius: 100px;
    background: #FFFFFF0A;
    padding: 10px 0;
    font-weight: 500;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    border: 0.5px solid transparent;
    color: #FFF;
}

.independent-module .independent-bottom button:hover {
    background: white;
    color: black !important;
}

.independent-module .independent-buttons .div-result-header-first {
    width: 52px;
}

.independent-module .independent-buttons .div-result-header-first img {
    width: 100%;
}

.independent-module .independent-buttons .div-result-header-second {
    padding: 11px 29px 10px;
}

.independent-module .div-browser {
    display: block;
    background: #292b36;
    color: #41C133;
}

.independent-module .div-fp-id {
    display: block;
    background: #292b36;
    color: #FF7D7D;
}

.independent-module .div-ip {
    display: block;
    border-radius: 4px;
    background: #292b36;
    color: #1ACFDF;
}

.independent-module .div-result-header {
    font-family: "K2D", sans-serif;
    font-weight: 275;
    font-size: 16px;
    line-height: 100%;
    color: #FFFFFF;
    vertical-align: middle;
}

.independent-module .div-gpu {
    display: block;
    background: #292b36;
    color: #FF8C00;
}

.independent-module .div-os {
    display: block;
    background: #292b36;
    color: #7BCCB9;
}

.independent-module .independent-bottom {
    justify-content: center;
    gap: 32px;
}

.independent-module .independent-bottom button {
    text-align: center;
    vertical-align: middle;
    border-radius: 10px;
    border: 2px solid #FFFFFF;
    padding: 16px 66px;
    font-size: 19px;
    background-color: transparent;
    color: #FFF;
}

.independent-module .border-ground {
    border: 0.5px solid #FFFFFF4D;
    background: #FFFFFF0A;
    border-radius: 20px;
}

.independent-module .text-div {
    font-weight: 275;
    font-size: 12px;
    line-height: 16px;
    vertical-align: middle;
    padding: 10px 26px;
    width: 285px;
}

.independent-module .first {
    gap: 14px;
}

.independent-module .second {
    padding: 25px 0 0 0;
}

.independent-module .third {
    gap: 14px;
}

.independent-module .div-result {
    padding: 20px 11px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: fit-content;
}

.independent-module .independent-top .independent-content {
    display: flex;
    flex-direction: row;
    gap: 31px;
}

.div-fp-id.border-ground.text-div {
    word-wrap: break-word;
}

.independent-module .independent-top .independent-content .independent-column.first {
    max-width: 100%;
}

.div-network, .div-battery, .div-storage, .div-audio, .div-speech, .div-timezone {
    margin-top: 10px;
    color: #1ACFDF;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.second-module {
    padding: 123px 11% 97px 11%;
    font-family: "K2D", sans-serif !important;
    color: #ffffff;
    box-sizing: border-box;
}

.second-module * {
    font-family: "K2D", sans-serif !important;
    box-sizing: border-box;
}

.second-module .section-heading {
    font-weight: 500;
    font-size: 48px;
}

.second-module .card-container {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 40px;
}

.second-module .card {
    background: transparent;
    border: 0;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    width: 33%;
    max-width: 363px;
    display: flex;
    flex-direction: column;
}

.second-module .card img {
    width: 100%;
    max-width: 363px;
    max-height: 363px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.second-module .card h3 {
    color: #FFF;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0%;
    text-align: left;
    margin-top: 23px;
    line-height: 150%;
    margin-bottom: 13px;
}

.second-module .card p {
    font-weight: 400;
    font-size: 18px;
    vertical-align: middle;
    text-align: left;
    color: #828282;
    line-height: 150%;
}

.third-module {
    font-family: "K2D", sans-serif !important;
    padding: 123px 11% 97px 11%;
    color: #ffffff;
    box-sizing: border-box;
}

.third-module * {
    font-family: "K2D", sans-serif !important;
    box-sizing: border-box;
}

.third-module-container {
    display: flex;
    justify-content: space-between;
    gap: 5%;
}

.third-module-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.third-module-left .section-heading {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 54px;
}

.third-module-left .subheading {
    font-weight: 400;
    font-size: 24px;
    line-height: 150%;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.third-module-left .text {
    font-weight: 400;
    font-size: 18px;
    color: #828282;
    line-height: 150%;
    margin-bottom: 28px;
}

.third-module-left .text.last {
    margin-bottom: 0;
}

.third-module-left .buttons-container {
    display: flex;
    gap: 17px;
    font-size: 21px;
    line-height: 120%;
    font-weight: 600;
    margin-top: 77px;
}

.third-module-left .first-button,
.third-module-left .secondary-button {
    padding: 16px 0;
    border-radius: 8px;
    text-transform: uppercase;
    text-align: center;
}

.third-module-left .first-button {
    background: white;
    color: black;
    transition: background 0.3s, color 0.3s;
}

.third-module-left .first-button:hover {
    background: black;
    color: white;
}

.third-module-left .secondary-button {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transition: background 0.3s, color 0.3s;
}

.third-module-left .secondary-button:hover {
    background: white;
    color: black;
}

.third-module-left .first-button {
    width: 100%;
    max-width: 210px;
}

.third-module-left .secondary-button {
    background-color: transparent;
    border: 2px solid #FFFFFF;
    width: 100%;
}

.third-module-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.third-module-right img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
}

.third-module-right .right-buttons {
    display: none;
}

.third-module-right .first-button,
.third-module-right .secondary-button {
    display: none;
}

.fourth-module {
    font-family: "K2D", sans-serif !important;
    padding: 123px 11% 97px 11%;
    color: #ffffff;
    box-sizing: border-box;
}

.fourth-module .section-heading {
    font-weight: 500;
    font-size: 48px;
    margin-bottom: 40px;
}

.fourth-module .card-container {
    display: flex;
    justify-content: space-between;
    gap: 27px;
}

.fourth-module .card {
    flex: 1;
    max-width: 48%;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}

.fourth-module .card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.fourth-module .card h3 {
    margin: 0;
    font-weight: 500;
    font-size: 24px;
    margin-top: 28px;
    color: #ffffff;
    text-align: left;
}

.fourth-module .card p {
    margin: 0;
    padding-bottom: 10px;
    font-weight: 400;
    font-size: 18px;
    color: #828282;
    margin-top: 13px;
    text-align: left;
    line-height: 150%;
}

@keyframes macOSFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes macOSFadeOut {
    0% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    100% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
}

@media screen and (min-width: 771px) {
    .custom-note-wrapper {
        flex-direction: row;
        max-width: 1200px;
        margin: 20px auto;
    }
    .chat-container {
        max-width: 1400px;
        height: 800px;
    }
    .independent-module .independent-top {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .independent-module .independent-image {
        display: block;
        width: 500px;
        height: 100%;
    }
}

@media screen and (max-width: 1060px) {
    .independent-module .independent-bottom {
        display: block;
    }
}



@media screen and (max-width: 1200px) {
    .popup {
        height: calc(100vh - 100px);
    }
    .custom-note-wrapper {
        flex-direction: column;
        min-height: auto;
        margin: 0;
    }
    .custom-note-sidebar {
        width: 100%;
        border-right: none;
        padding: 15px;
    }
    .custom-note-editor {
        padding: 15px;
    }
    .custom-note-new-btn {
        width: 100%;
    }
    .custom-note-list li {
        padding: 12px;
        font-size: 14px;
    }
    .custom-note-editor-title {
        font-size: 20px;
    }
    .custom-note-editor-content {
        font-size: 14px;
    }
    .custom-note-empty {
        font-size: 16px;
    }
    .crypto-table-container {
        overflow-x: auto;
    }
    .crypto-table {
        font-size: 14px;
        min-width: 600px;
    }
    .crypto-table th,
    .crypto-table td {
        padding: 8px;
    }
    .crypto-table td.rank,
    .crypto-table th.rank {
        width: 50px;
    }
    .crypto-table td.icon,
    .crypto-table th.icon {
        width: 50px;
    }
    .crypto-table td.icon img {
        width: 20px;
        height: 20px;
    }
    .crypto-table td.name,
    .crypto-table th.name {
        width: 150px;
    }
    .crypto-table td.symbol,
    .crypto-table th.symbol {
        width: 80px;
    }
    .crypto-table td.price,
    .crypto-table th.price {
        width: 100px;
    }
    .crypto-table td.change,
    .crypto-table th.change {
        width: 100px;
    }
    .chat-container {
        padding: 10px;
    }
    .chat-input {
        flex-direction: column;
        align-items: stretch;
    }
    .chat-input textarea {
        width: 100%;
    }
    .btn-send-chat {
        width: 100%;
        padding: 10px;
    }
    .character-typing {
        justify-content: center;
        margin-top: 10px;
    }
    .crypto-module {
        padding: 10px;
        margin: 10px;
    }
    .custom-iframe-container iframe {
        height: 100%;
    }
    .modal-content {
        width: 90%;
        margin: 20% auto;
        padding: 15px;
    }
    .modal-close {
        font-size: 24px;
        top: 5px;
        right: 15px;
    }
    #modalInfoContent {
        font-size: 13px;
    }
    .independent-module {
        padding: 16px 24px;
        gap: 26px;
    }
    .independent-module .text-div {
        width: 100%;
        max-width: 100%;
        padding: 10px 19px;
    }
    .independent-module .independent-top {
        flex-direction: column;
        gap: 8px;
        order: 1;
    }
    .independent-module .independent-top .independent-content {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 8px;
    }
    .independent-module .independent-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        display: block;
        order: 2;
    }
    .independent-module .independent-bottom button {
        width: 100%;
    }
    .independent-module .first {
        order: 2;
        width: 100%;
        gap: 8px;
    }
    .independent-module .second {
        order: 1;
        padding: 0;
        width: 100%;
    }
    .independent-module .third {
        order: 3;
        width: 100%;
        gap: 8px;
    }
    .independent-module .independent-top .independent-content .independent-column.second {
        order: 1;
    }
    .independent-module .independent-top .independent-content .independent-column-left {
        order: 2;
        max-width: 100%;
    }
    .independent-module .independent-top .independent-content .independent-column-right {
        order: 3;
    }
    .independent-module .div-result {
        width: 100%;
        padding: 20px 28px;
        margin-bottom: 18px;
    }
    .independent-module .div-fp-id {
        white-space: nowrap;
    }
    .independent-module .independent-buttons {
        justify-content: start;
    }
    .independent-module .independent-image {
        display: none;
    }
    .independent-column.first .div-result {
        order: 1;
    }
    .independent-column.first .div-browser {
        order: 2;
    }
    .independent-column.first .div-fp-id {
        order: 3;
    }
    .independent-column.third .div-ip {
        order: 1;
    }
    .independent-column.third .div-gpu {
        order: 2;
        margin-top: 0 !important;
    }
    .independent-column.third .div-os {
        order: 3;
    }
    .independent-bottom a button {
        margin-bottom: 8px;
    }
    .second-module {
        padding: 24px;
    }
    .second-module .card-container {
        flex-direction: column;
        align-items: center;
        gap: 34px;
    }
    .second-module .card {
        width: 100%;
    }
    .second-module .section-heading {
        font-size: 32px;
        display: flex;
        justify-content: center;
    }
    .second-module .card h3 {
        margin-top: 14px;
        margin-bottom: 8px;
    }
    .third-module {
        padding: 24px;
    }
    .third-module-container {
        flex-direction: column;
        gap: 26px;
    }
    .third-module-left {
        text-align: left;
        margin-bottom: 0;
        justify-content: left;
    }
    .third-module-left .section-heading {
        font-size: 32px;
        margin-bottom: 26px;
    }
    .third-module-left .subheading {
        font-size: 24px;
        margin-bottom: 8px;
    }
    .third-module-left .text {
        font-size: 16px;
        margin-bottom: 14px;
    }
    .third-module-left .text:last-child {
        margin-bottom: 0;
    }
    .third-module-left .buttons-container {
        flex-direction: column;
        align-items: center;
        display: none;
    }
    .third-module-left .first-button,
    .third-module-left .secondary-button {
        width: 100%;
        margin-bottom: 10px;
        display: none;
    }
    .third-module-right {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }
    .third-module-right img {
        max-width: 100%;
    }
    .third-module-right .right-buttons {
        display: flex;
        gap: 17px;
        font-size: 21px;
        line-height: 120%;
        font-weight: 600;
    }
    .third-module-right .first-button,
    .third-module-right .secondary-button {
        padding: 16px 0;
        border-radius: 8px;
        text-transform: uppercase;
        text-align: center;
        width: 100%;
    }
    .third-module-right .first-button {
        background-color: #FFFFFF;
        color: #000000;
    }
    .third-module-right .secondary-button {
        background-color: transparent;
        border: 2px solid #FFFFFF;
    }
    .fourth-module {
        padding: 24px;
    }
    .fourth-module .card-container {
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }
    .fourth-module .card {
        max-width: 100%;
    }
    .fourth-module .section-heading {
        font-size: 32px;
        margin-bottom: 26px;
    }
    .fourth-module .card h3 {
        font-size: 20px;
        margin-top: 14px;
    }
    .fourth-module .card p {
        font-size: 16px;
        margin-top: 8px;
    }
}

@media screen and (max-width: 480px) {
    .crypto-table {
        font-size: 12px;
        min-width: 500px;
    }
    .crypto-table th,
    .crypto-table td {
        padding: 6px;
    }
    .crypto-table td.icon img {
        width: 18px;
        height: 18px;
    }
    .custom-note-sidebar-header h3 {
        font-size: 14px;
    }
    .custom-note-new-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    .custom-note-list-item-title {
        font-size: 14px;
    }
    .custom-note-list-item-date {
        font-size: 12px;
    }
    .custom-note-editor-title {
        font-size: 18px;
    }
    .custom-note-editor-content {
        font-size: 14px;
    }
    .chat-container {
        padding: 5px;
    }
    #chat-frame {
        max-height: 300px;
    }
    .btn-send-chat {
        font-size: 14px;
    }
    .second-module .section-heading {
        font-size: 32px;
        display: flex;
        justify-content: left;
    }
}
@media (max-width: 1401px) {
    body .hide-button,
    .hide-button[style],
    .hide-button {
        display: none !important;
    }
}
/* ── Store iframe fullscreen button ─────────────────────────────────── */
.custom-iframe-container {
    position: relative;
}

.store-fullscreen-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 100;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: rgba(100, 100, 100, 0.85);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s, transform 0.15s;
    line-height: 1;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.store-fullscreen-btn:hover {
    background: rgba(130, 130, 130, 0.95);
    transform: scale(1.08);
}

/* Fullscreen mode */
.custom-iframe-container.store-fullscreen {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    border-radius: 0 !important;
    z-index: 9999 !important;
    background: #000;
}

.custom-iframe-container.store-fullscreen iframe {
    border-radius: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

.custom-iframe-container.store-fullscreen .store-fullscreen-btn {
    top: 14px;
    right: 18px;
    width: 40px;
    height: 40px;
    font-size: 20px;
}

body.store-fullscreen-active {
    overflow: hidden;
}

/* notifications-panel width is defined in cssInc11.css */
