.global-news-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    padding: 20px;
    padding-bottom: max(20px, env(safe-area-inset-bottom));
    box-sizing: border-box;
}

.global-news-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.global-news-modal {
    background: var(--card);
    border-radius: 20px;
    width: 100%;
    max-width: clamp(500px, 35vw, 650px);
    overflow: hidden;
    position: relative;
    transform: translateY(50px) scale(0.9);
    transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.global-news-overlay.visible .global-news-modal {
    transform: translateY(0) scale(1);
}

.global-news-img {
    width: 100%;
    height: clamp(200px, 20vh, 280px);
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--span);
    display: none;
}

.global-news-body {
    padding: 30px;
    text-align: center;
}

.global-news-body h2 {
    margin: 0 0 15px 0;
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    color: var(--text-default);
    line-height: 1.2;
}

.global-news-body p {
    color: var(--text-custom);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 25px 0;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: none;
}

.global-news-body p::-webkit-scrollbar {
    display: none;
}

.global-news-btn {
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--span);
    color: #ffffff;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: var(--br-12);
    font-family: 'Unbounded', sans-serif;
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition-duration);
    width: 100%;
    box-sizing: border-box;
}

.global-news-btn:hover {
    filter: brightness(1.1);
}

.global-news-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 5;
}

.global-news-close:hover {
    background: transparent !important;
    transform: none;
}

.global-news-close svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
}

.global-news-close:hover svg {
    fill: var(--red);
}
