@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

/* ===== ANIMATED BACKGROUND BLOBS ===== */
body {
    max-width: 660px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 auto;
    padding: 0;
    background-color: #0a1628;
    min-height: 100vh;
    color: #e2e8f0;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(20, 184, 166, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 8%, rgba(6, 182, 212, 0.10) 0%, transparent 35%),
        radial-gradient(circle at 55% 55%, rgba(16, 185, 129, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 8% 85%, rgba(56, 189, 248, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 92% 80%, rgba(45, 212, 191, 0.06) 0%, transparent 30%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: -1;
    pointer-events: none;
}

/* ===== FLOATING DECORATIVE SHAPES ===== */
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    animation: floatShape 20s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px; height: 200px;
    background: #14b8a6;
    top: 10%; left: -50px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape:nth-child(2) {
    width: 150px; height: 150px;
    background: #06b6d4;
    top: 40%; right: -30px;
    animation-delay: -5s;
    animation-duration: 20s;
}

.shape:nth-child(3) {
    width: 100px; height: 100px;
    background: #10b981;
    bottom: 20%; left: 30%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.shape:nth-child(4) {
    width: 80px; height: 80px;
    background: #38bdf8;
    top: 60%; left: 10%;
    animation-delay: -15s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-duration: 22s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(30px, -40px) rotate(90deg) scale(1.1); }
    50% { transform: translate(-20px, 20px) rotate(180deg) scale(0.95); }
    75% { transform: translate(40px, 30px) rotate(270deg) scale(1.05); }
}

/* ========== HEADER ========== */
header {
    width: 100%;
    max-width: 660px;
    display: flex;
    background: transparent;
    color: #FFFFFF;
    height: auto;
    z-index: 10;
    position: relative;
}

header::after {
    display: none;
}

#nav-open {
    display: block;
    position: relative;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

#nav-open:hover {
    transform: rotate(180deg) scale(1.2);
    filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(20, 184, 166, 0.8));
}

#nav-close {
    display: none;
    position: relative;
    height: 28px;
}

.icdjz-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 2;
}

.nav-logo-icon {
    height: 40px;
    width: 40px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.4), 0 4px 15px rgba(20, 184, 166, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo-icon:hover {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.5), 0 6px 20px rgba(6, 182, 212, 0.3);
}

.icdjz-nav-logo .site-title {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4, #38bdf8, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
}

.icdjz-navbar {
    display: flex;
    background: rgba(10, 22, 40, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #FFFFFF;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(20, 184, 166, 0.12);
}

.icdjz-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #14b8a6, #06b6d4, #38bdf8, transparent);
}

/* ========== SIDE MENU ========== */
.icdjz-menu {
    display: flex;
    width: 70%;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 18, 35, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 0;
    right: 0px;
    padding: 70px 1.5rem 1.5rem;
    z-index: 10;
    margin: 0;
    list-style-type: none;
    display: none;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(20, 184, 166, 0.25);
}

.icdjz-menu li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(20, 184, 166, 0.06);
}

.icdjz-menu li:last-child {
    border-bottom: none;
}

.icdjz-menu.open {
    display: flex;
    flex-direction: column;
}

.icdjz-menu.open #nav-open {
    display: none;
}

.icdjz-menu.open #nav-close {
    display: block;
}

.icdjz-menu li a {
    font-size: 0.95rem;
    color: #99f6e4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: block;
    padding: 14px 12px;
    letter-spacing: 0.3px;
    border-radius: 10px;
    position: relative;
}

.icdjz-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #14b8a6, #06b6d4);
    border-radius: 2px;
    transition: height 0.3s;
}

.icdjz-menu li a:hover {
    color: #fff;
    background: rgba(20, 184, 166, 0.1);
    transform: translateX(4px);
}

.icdjz-menu li a:hover::before {
    height: 60%;
}

#icdjz-menu {
    animation: slideIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========== GAME CARD - GLASSMORPHISM STYLE ========== */
.icdjz-game-item {
    border-radius: 20px;
    position: relative;
    background: rgba(15, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(20, 184, 166, 0.12);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.icdjz-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.3), rgba(6, 182, 212, 0.1), rgba(56, 189, 248, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s;
}

.icdjz-game-item:hover::before {
    opacity: 1;
}

.icdjz-game-item:hover {
    transform: translateY(-6px) scale(1.04);
    border-color: rgba(20, 184, 166, 0.35);
    box-shadow: 0 16px 40px rgba(20, 184, 166, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.08);
    background: rgba(20, 38, 60, 0.7);
}

.icdjz-game-item a {
    text-decoration: none;
}

/* ========== GAME COVER ========== */
.icdjz-game-cover img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: all 0.4s ease;
    filter: saturate(0.9) brightness(0.95);
}

.icdjz-game-cover img:hover {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.05);
    border-radius: 14px;
}

.icdjz-game-cover-recommend img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    transition: all 0.4s ease;
    filter: saturate(0.9) brightness(0.95);
}

.icdjz-game-cover-recommend img:hover {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.05);
}

/* ========== GAME TEXT ========== */
.icdjz-game-item h3 {
    color: #f1f5f9;
    margin: 6px 0px;
    font-size: 0.78rem;
    font-weight: 700;
}

.icdjz-game-item p {
    color: #94a3b8;
    margin: 0px;
    font-size: 1rem;
}

.icdjz-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 6px 2px;
}

.icdjz-game-info p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em;
    max-height: 4.5em;
    font-size: 0.82rem;
    color: #cbd5e1;
    font-weight: 500;
}

.icdjz-game-info p:last-child {
    font-size: 0.72rem;
    color: #64748b;
}

/* ========== COMMON GAME RIGHT ========== */
.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    border-radius: 12px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(20, 184, 166, 0.35);
}

/* ========== SECTION DIVIDERS ========== */
.icdjz-recomed-div {
    margin: 0px 10px;
    border-radius: 20px;
    padding: 10px 0px;
}

.icdjz-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 20px;
    padding: 10px 0px;
}

/* ========== SECTION TITLE BAR ========== */
.icdjz-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 18px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.15), rgba(6, 182, 212, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(20, 184, 166, 0.15);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.icdjz-common-recommend-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #14b8a6, #06b6d4, #38bdf8);
    border-radius: 0 2px 2px 0;
}

.icdjz-common-recommend-title p {
    color: #f1f5f9;
    font-size: 0.95rem;
    margin: 14px 0px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.icdjz-common-recommend-title img {
    width: 22px;
    height: 22px;
    opacity: 0.8;
    transition: all 0.3s;
    filter: drop-shadow(0 0 4px rgba(20, 184, 166, 0.5));
}

.icdjz-common-recommend-title img:hover {
    opacity: 1;
    transform: translateX(4px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(20, 184, 166, 0.8));
}

/* ========== GRIDS ========== */
.icdjz-common-recommend-content,
.icdjz-recommend-content,
.icdjz-recommend-content-1,
.icdjz-recommend-content-2,
.icdjz-recommend-content-3,
.icdjz-recommend-content-4,
.icdjz-recommend-content-5,
.icdjz-recommend-content-hot,
.icdjz-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 10px;
}

.icdjz-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.icdjz-game-big-2 {
    grid-column: span 2;
    grid-row: span 2;
}

.game-big-3 {
    grid-column: span 3;
    grid-row: span 3;
}

/* ========== FOOTER ========== */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
    background: rgba(6, 12, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    margin-top: 30px;
    border-radius: 24px 24px 0 0;
    border-top: 1px solid rgba(20, 184, 166, 0.12);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #14b8a6, #06b6d4, #38bdf8, transparent);
}

.icdjz-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.icdjz-footer-links a {
    font-size: 0.72em;
    color: rgba(153, 246, 228, 0.5);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(20, 184, 166, 0.08);
}

.icdjz-footer-links a:hover {
    color: #99f6e4;
    background: rgba(20, 184, 166, 0.12);
    border-color: rgba(20, 184, 166, 0.25);
    text-decoration: none;
}

footer .icdjz-copyright {
    font-size: 0.72em;
    color: rgba(148, 163, 184, 0.45);
    margin: 10px 0px;
    font-weight: 500;
}

/* ========== FLOATING BUTTONS ========== */
#back-top,
#back-home {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: all 0.3s;
    filter: drop-shadow(0 2px 4px rgba(20, 184, 166, 0.3));
}

#back-top:hover,
#back-home:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 4px 8px rgba(20, 184, 166, 0.6));
}

#flow {
    position: fixed;
    bottom: 10rem;
    right: 0.6rem;
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(8, 18, 35, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.6rem;
    gap: 10px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(20, 184, 166, 0.12);
    transition: all 0.3s;
    border: 1px solid rgba(20, 184, 166, 0.15);
}

#flow:hover {
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.15), 0 0 0 1px rgba(20, 184, 166, 0.25);
    transform: translateY(-3px);
}

/* ========== GAME DETAIL ========== */
.icdjz-game-detail-title {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 1rem;
    border-radius: 20px;
}

.game-detail-iframe {
    width: 100%;
}

.icdjz-game-detail-img {
    width: 100%;
}

.icdjz-game-detail-img img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    display: block;
    box-shadow: 0 8px 32px rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(20, 184, 166, 0.12);
}

.icdjz-detail-info {
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0px 20px;
    order: 1;
}

.icdjz-detail-info h2 {
    color: #f1f5f9;
    font-size: 1rem;
    margin: 10px;
    font-weight: 400;
}

.icdjz-detail-info p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin: 10px 0px;
    line-height: 1.7;
}

.icdjz-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

/* ========== GAME INSTRUCTIONS ========== */
.icdjz-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 20px;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(6, 182, 212, 0.08));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(20, 184, 166, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.icdjz-game-instructions::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.icdjz-game-instructions p {
    color: #e2e8f0;
    line-height: 1.6rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ========== PLAY BUTTON ========== */
.icdjz-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #14b8a6, #06b6d4, #38bdf8);
    border-radius: 18px;
    margin: 10px;
    width: 50%;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -140px;
    right: -30px;
    box-shadow: 0 8px 30px rgba(20, 184, 166, 0.35), 0 0 0 2px rgba(255,255,255,0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: playGlow 3s ease-in-out infinite;
}

@keyframes playGlow {
    0%, 100% { box-shadow: 0 8px 30px rgba(20, 184, 166, 0.35), 0 0 0 2px rgba(255,255,255,0.1); }
    50% { box-shadow: 0 8px 40px rgba(6, 182, 212, 0.45), 0 0 20px rgba(20, 184, 166, 0.15), 0 0 0 3px rgba(255,255,255,0.15); }
}

.icdjz-game-gameplay-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(20, 184, 166, 0.5), 0 0 30px rgba(6, 182, 212, 0.25);
    animation: none;
}

.icdjz-game-gameplay-button img {
    width: 120px;
    height: 120px;
}

.icdjz-game-gameplay-button p {
    color: #fff;
    margin: 0px;
}

/* ========== IFRAME / GAME PAGE ========== */
.icdjz-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
    background: #0a1628;
}

#iframe-menu-btn {
    margin-top: 20px;
    margin-left: 60px;
    position: absolute;
    height: 40px;
    width: 40px;
}

#iframe-back-btn {
    margin-top: 20px;
    margin-left: 20px;
    position: absolute;
    height: 50px;
    width: 50px;
}

/* ========== NEWS / ARTICLE PAGES ========== */
.icdjz-news-detail {
    color: #cbd5e1;
    text-align: start;
    padding: 24px;
    margin: 20px 10px;
    background: rgba(15, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(20, 184, 166, 0.12);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.icdjz-news-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #14b8a6, #06b6d4, #38bdf8, #10b981);
}

.icdjz-news-detail img {
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.icdjz-news-detail h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.icdjz-news-detail h4 {
    color: #99f6e4;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.icdjz-news-detail a {
    color: #14b8a6;
    text-decoration: none;
    font-weight: 600;
}

.icdjz-news-detail a:hover {
    text-decoration: underline;
    color: #06b6d4;
}

.icdjz-news-detail ul {
    padding-left: 20px;
}

.icdjz-news-detail li {
    margin-bottom: 8px;
}

/* ========== ERROR PAGE ========== */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 80vh;
    justify-content: center;
}

.error-page h1 {
    font-size: 2em;
    color: #f1f5f9;
    background: linear-gradient(135deg, #14b8a6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page p {
    font-size: 1.4em;
    color: #94a3b8;
    padding: 1rem;
}

.error-page img {
    width: 100%;
    padding: 2rem 1rem;
}

/* ========== GAME MARKS ========== */
.icdjz-game-mark {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 14px 14px;
    top: -10px;
    left: -10px;
}

.icdjz-game-mark img {
    width: 50px;
    height: 25px;
}

.icdjz-game-new {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    height: 4vh;
    position: absolute;
    border-radius: 0px 0px 14px 14px;
    top: 0px;
    left: -10px;
}

.icdjz-game-new img {
    width: 50px;
    height: 50px;
}

.icdjz-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

#icdjz-game-body {
    margin-top: 20px;
}

/* ========== IFRAME MENU ========== */
.iframe-menu {
    display: flex;
    width: 65%;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 18, 35, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    position: absolute;
    align-items: start;
    height: 100vh;
    top: 0vh;
    right: 0px;
    z-index: 8;
    margin: 0;
    list-style-type: none;
    display: none;
    padding: 60px 1rem 1rem;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid rgba(20, 184, 166, 0.25);
}

.iframe-menu.open {
    display: flex;
    flex-direction: column;
}

.iframe-menu li a {
    font-size: 1rem;
    color: #99f6e4;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: block;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
}

.iframe-menu li a:hover {
    color: #fff;
    background: rgba(20, 184, 166, 0.12);
    transform: translateX(4px);
}

.iframe-list-item a {
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: space-between;
    align-items: center;
}

.iframe-list-item a img {
    margin: 0px;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

.iframe-list-item a p {
    margin: 0px 20px;
    position: relative;
    color: #e2e8f0;
}

.iframe-list-item-close a {
    display: flex;
    flex-direction: row;
    margin: 0px;
    justify-content: end;
    align-items: center;
}

.iframe-list-item-close img {
    margin: 0px;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    display: block;
}

#iframe-close-btn {
    right: 0px;
    top: 0px;
}
