@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    box-sizing: border-box;
}

/* ===== BASE ===== */
body {
    max-width: 660px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0 auto;
    padding: 0;
    background-color: #FAFBFC;
    min-height: 100vh;
    color: #2D3748;
    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(ellipse at 20% 0%, rgba(229, 62, 62, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(237, 137, 54, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(245, 101, 101, 0.03) 0%, transparent 50%);
    z-index: -2;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(rgba(229, 62, 62, 0.010) 1px, transparent 1px);
    background-size: 28px 28px;
    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.025;
    animation: floatShape 20s ease-in-out infinite;
}

.shape:nth-child(1) {
    width: 200px; height: 200px;
    background: #E53E3E;
    top: 10%; left: -50px;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape:nth-child(2) {
    width: 150px; height: 150px;
    background: #ED8936;
    top: 40%; right: -30px;
    animation-delay: -5s;
    animation-duration: 20s;
}

.shape:nth-child(3) {
    width: 100px; height: 100px;
    background: #F56565;
    bottom: 20%; left: 30%;
    animation-delay: -10s;
    animation-duration: 30s;
}

.shape:nth-child(4) {
    width: 80px; height: 80px;
    background: #ED8936;
    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: #1A202C;
    height: auto;
    z-index: 10;
    position: relative;
}

header::after {
    display: none;
}

#nav-open {
    display: block;
    position: relative;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(27%) sepia(80%) saturate(600%) hue-rotate(345deg) brightness(95%) contrast(90%);
    transition: all 0.3s;
}

#nav-open:hover {
    transform: rotate(180deg) scale(1.2);
    filter: brightness(0) saturate(100%) invert(35%) sepia(80%) saturate(600%) hue-rotate(345deg) brightness(95%) contrast(90%);
}

#nav-close {
    display: none;
    position: relative;
    height: 28px;
}

.rbgb-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    z-index: 2;
}

.nav-logo-icon {
    height: 42px;
    width: 42px;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(229, 62, 62, 0.15), 0 0 0 1px rgba(229, 62, 62, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-logo-icon:hover {
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 4px 16px rgba(229, 62, 62, 0.25), 0 0 0 2px rgba(229, 62, 62, 0.15);
}

.rbgb-nav-logo .site-title {
    font-size: 1.45rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #F56565);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(229, 62, 62, 0.10));
}

.rbgb-navbar {
    display: flex;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #1A202C;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 20px;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.rbgb-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E53E3E, #ED8936, #F56565, transparent);
    opacity: 0.5;
}

/* ========== SIDE MENU ========== */
.rbgb-menu {
    display: flex;
    width: 70%;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 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.10);
    border-left: 2px solid rgba(229, 62, 62, 0.12);
}

.rbgb-menu li {
    position: relative;
    width: 100%;
    border-bottom: 1px solid rgba(229, 62, 62, 0.04);
}

.rbgb-menu li:last-child {
    border-bottom: none;
}

.rbgb-menu.open {
    display: flex;
    flex-direction: column;
}

.rbgb-menu.open #nav-open {
    display: none;
}

.rbgb-menu.open #nav-close {
    display: block;
}

.rbgb-menu li a {
    font-size: 0.95rem;
    color: #4A5568;
    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;
}

.rbgb-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #E53E3E, #ED8936);
    border-radius: 2px;
    transition: height 0.3s;
}

.rbgb-menu li a:hover {
    color: #E53E3E;
    background: rgba(229, 62, 62, 0.06);
    transform: translateX(4px);
}

.rbgb-menu li a:hover::before {
    height: 60%;
}

#rbgb-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 ========== */
.rbgb-game-item {
    border-radius: 18px;
    position: relative;
    background: #ffffff;
    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(229, 62, 62, 0.06);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.rbgb-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.20), rgba(237, 137, 54, 0.10), rgba(245, 101, 101, 0.15));
    -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;
}

.rbgb-game-item:hover::before {
    opacity: 1;
}

.rbgb-game-item:hover {
    transform: translateY(-5px) scale(1.03);
    border-color: rgba(229, 62, 62, 0.15);
    box-shadow: 0 12px 32px rgba(229, 62, 62, 0.10), 0 0 0 1px rgba(229, 62, 62, 0.04);
    background: #ffffff;
}

.rbgb-game-item a {
    text-decoration: none;
}

/* ========== GAME COVER ========== */
.rbgb-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.95) brightness(0.97);
}

.rbgb-game-cover img:hover {
    transform: scale(1.05);
    filter: saturate(1.05) brightness(1.02);
    border-radius: 14px;
}

.rbgb-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.95) brightness(0.97);
}

.rbgb-game-cover-recommend img:hover {
    transform: scale(1.05);
    filter: saturate(1.05) brightness(1.02);
}

/* ========== GAME TEXT ========== */
.rbgb-game-item h3 {
    color: #1A202C;
    margin: 6px 0px;
    font-size: 0.78rem;
    font-weight: 700;
}

.rbgb-game-item p {
    color: #718096;
    margin: 0px;
    font-size: 1rem;
}

.rbgb-game-info {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    padding: 6px 2px;
}

.rbgb-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: #4A5568;
    font-weight: 500;
}

.rbgb-game-info p:last-child {
    font-size: 0.72rem;
    color: #A0AEC0;
}

/* ========== COMMON GAME RIGHT ========== */
.common-game-right {
    display: flex;
    width: 20%;
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    border-radius: 12px;
    right: 0px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(229, 62, 62, 0.25);
}

/* ========== SECTION DIVIDERS ========== */
.rbgb-recomed-div {
    margin: 0px 10px;
    border-radius: 20px;
    padding: 10px 0px;
}

.rbgb-detail-recomed-div {
    margin: 10px 20px;
    border-radius: 20px;
    padding: 10px 0px;
}

/* ========== SECTION TITLE BAR ========== */
.rbgb-common-recommend-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 18px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.06), rgba(237, 137, 54, 0.04));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px 16px 0 0;
    border: 1px solid rgba(229, 62, 62, 0.08);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.rbgb-common-recommend-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #E53E3E, #ED8936, #F56565);
    border-radius: 0 2px 2px 0;
}

.rbgb-common-recommend-title p {
    color: #1A202C;
    font-size: 0.95rem;
    margin: 14px 0px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.rbgb-common-recommend-title img {
    width: 22px;
    height: 22px;
    opacity: 0.7;
    transition: all 0.3s;
    filter: drop-shadow(0 0 4px rgba(229, 62, 62, 0.3));
}

.rbgb-common-recommend-title img:hover {
    opacity: 1;
    transform: translateX(4px) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(229, 62, 62, 0.5));
}

/* ========== GRIDS ========== */
.rbgb-common-recommend-content,
.rbgb-recommend-content,
.rbgb-recommend-content-1,
.rbgb-recommend-content-2,
.rbgb-recommend-content-3,
.rbgb-recommend-content-4,
.rbgb-recommend-content-5,
.rbgb-recommend-content-hot,
.rbgb-game-item-div {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 10px;
}

.rbgb-common-recommend-content-2 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
}

.rbgb-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(255, 255, 255, 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(229, 62, 62, 0.08);
    position: relative;
    overflow: hidden;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #E53E3E, #ED8936, #F56565, transparent);
    opacity: 0.5;
}

.rbgb-footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.rbgb-footer-links a {
    font-size: 0.72em;
    color: rgba(74, 85, 104, 0.55);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(229, 62, 62, 0.06);
}

.rbgb-footer-links a:hover {
    color: #E53E3E;
    background: rgba(229, 62, 62, 0.06);
    border-color: rgba(229, 62, 62, 0.15);
    text-decoration: none;
}

footer .rbgb-copyright {
    font-size: 0.72em;
    color: rgba(113, 128, 150, 0.50);
    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(229, 62, 62, 0.20));
}

#back-top:hover,
#back-home:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 4px 8px rgba(229, 62, 62, 0.35));
}

#flow {
    position: fixed;
    bottom: 10rem;
    right: 0.6rem;
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    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.08), 0 0 0 1px rgba(229, 62, 62, 0.08);
    transition: all 0.3s;
    border: 1px solid rgba(229, 62, 62, 0.08);
}

#flow:hover {
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.10), 0 0 0 1px rgba(229, 62, 62, 0.15);
    transform: translateY(-3px);
}

/* ========== GAME DETAIL ========== */
.rbgb-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%;
}

.rbgb-game-detail-img {
    width: 100%;
}

.rbgb-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(229, 62, 62, 0.08);
    border: 1px solid rgba(229, 62, 62, 0.06);
}

.rbgb-detail-info {
    position: relative;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin: 0px 20px;
    order: 1;
}

.rbgb-detail-info h2 {
    color: #1A202C;
    font-size: 1rem;
    margin: 10px;
    font-weight: 400;
}

.rbgb-detail-info p {
    color: #4A5568;
    font-size: 0.95rem;
    margin: 10px 0px;
    line-height: 1.7;
}

.rbgb-detail-info a {
    text-decoration: none;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    order: -1;
}

/* ========== GAME INSTRUCTIONS ========== */
.rbgb-game-instructions {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 20px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.05), rgba(237, 137, 54, 0.03));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 18px;
    border: 1px solid rgba(229, 62, 62, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.rbgb-game-instructions::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.rbgb-game-instructions p {
    color: #2D3748;
    line-height: 1.6rem;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* ========== PLAY BUTTON ========== */
.rbgb-game-gameplay-button {
    display: flex;
    background: linear-gradient(135deg, #E53E3E, #ED8936, #F56565);
    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(229, 62, 62, 0.25), 0 0 0 2px rgba(255,255,255,0.08);
    border: 2px solid rgba(255, 255, 255, 0.12);
    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(229, 62, 62, 0.25), 0 0 0 2px rgba(255,255,255,0.08); }
    50% { box-shadow: 0 8px 40px rgba(237, 137, 54, 0.35), 0 0 20px rgba(229, 62, 62, 0.10), 0 0 0 3px rgba(255,255,255,0.12); }
}

.rbgb-game-gameplay-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(229, 62, 62, 0.35), 0 0 30px rgba(237, 137, 54, 0.15);
    animation: none;
}

.rbgb-game-gameplay-button img {
    width: 120px;
    height: 120px;
}

.rbgb-game-gameplay-button p {
    color: #fff;
    margin: 0px;
}

/* ========== IFRAME / GAME PAGE ========== */
.rbgb-game-iframe {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100vh;
    position: relative;
    background: #FAFBFC;
}

#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 ========== */
.rbgb-news-detail {
    color: #4A5568;
    text-align: start;
    padding: 24px;
    margin: 20px 10px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(229, 62, 62, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.rbgb-news-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #E53E3E, #ED8936, #F56565);
}

.rbgb-news-detail img {
    width: 100%;
    object-fit: contain;
    border-radius: 14px;
}

.rbgb-news-detail h3 {
    font-weight: 800;
    font-size: 1.3rem;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rbgb-news-detail h4 {
    color: #2D3748;
    font-weight: 700;
    font-size: 1.05rem;
    margin-top: 20px;
    margin-bottom: 8px;
}

.rbgb-news-detail a {
    color: #E53E3E;
    text-decoration: none;
    font-weight: 600;
}

.rbgb-news-detail a:hover {
    text-decoration: underline;
    color: #ED8936;
}

.rbgb-news-detail ul {
    padding-left: 20px;
}

.rbgb-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: #1A202C;
    background: linear-gradient(135deg, #E53E3E, #ED8936);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.error-page p {
    font-size: 1.4em;
    color: #718096;
    padding: 1rem;
}

.error-page img {
    width: 100%;
    padding: 2rem 1rem;
}

/* ========== GAME MARKS ========== */
.rbgb-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;
}

.rbgb-game-mark img {
    width: 50px;
    height: 25px;
}

.rbgb-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;
}

.rbgb-game-new img {
    width: 50px;
    height: 50px;
}

.rbgb-game-mark p {
    color: #fff;
    font-size: 1rem;
    margin: 0px 10px;
}

#rbgb-game-body {
    margin-top: 20px;
}

/* ========== IFRAME MENU ========== */
.iframe-menu {
    display: flex;
    width: 65%;
    flex-direction: column;
    gap: 0;
    background: rgba(255, 255, 255, 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.10);
    border-left: 2px solid rgba(229, 62, 62, 0.12);
}

.iframe-menu.open {
    display: flex;
    flex-direction: column;
}

.iframe-menu li a {
    font-size: 1rem;
    color: #4A5568;
    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: #E53E3E;
    background: rgba(229, 62, 62, 0.06);
    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: #2D3748;
}

.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;
}
