/* ---------------------------------------------------------
   1. LAYOUT: STATIC / NO SCOLL
   --------------------------------------------------------- */
html,
body {
    overflow: hidden !important;
    height: 100vh !important;
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ---------------------------------------------------------
   2. BACKGROUND (Black/Gray Gradient)
   --------------------------------------------------------- */
#sgs-star-map {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -10;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    pointer-events: none;
}

/* Aggressive clear for PlayerX Theme / WPBakery */
body.home .edgtf-wrapper,
body.page-id-2411 .edgtf-wrapper,
body.home .edgtf-content,
body.page-id-2411 .edgtf-content,
body.home .vc_row,
body.page-id-2411 .vc_row,
body.home .nk-awb,
body.page-id-2411 .nk-awb,
body.home .parallax69,
body.page-id-2411 .parallax69,
body.home .edgtf-container,
body.page-id-2411 .edgtf-container,
body.home .edgtf-container-inner,
body.page-id-2411 .edgtf-container-inner,
/* Include Header Areas in Transparency */
header.edgtf-page-header,
.edgtf-menu-area,
.edgtf-vertical-align-containers,
.edgtf-mobile-header,
.edgtf-mobile-header-inner {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* ---------------------------------------------------------
   3. VISIBILITY & CLEANUP 
   --------------------------------------------------------- */
footer,
.edgtf-page-footer,
.edgtf-footer-inner,
.edgtf-footer-top-holder,
.edgtf-footer-bottom-holder,
.edgtf-sidebar-holder,
.edgtf-sidebar,
#edgtf-back-to-top,
.vc_empty_space,
.nk-awb-wrap {
    display: none !important;
}

/* Text Colors */
body.home,
body.page-id-2411,
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
span,
div {
    color: #fff !important;
}

/* 
   FIX: HEADER MENU BUTTON TEXT 
   Targeting the specific theme classes for menu visibility
*/
.edgtf-main-menu>ul>li>a .item_text,
.edgtf-mobile-header .edgtf-mobile-menu-opener a,
.edgtf-mobile-menu-opener .edgtf-mobile-menu-icon,
header.edgtf-page-header .edgtf-main-menu ul li a {
    color: #222222 !important;
    /* Solid Dark Gray/Black */
}

/* Links (Except Menu) */
body.home .edgtf-content a,
body.page-id-2411 .edgtf-content a {
    color: #ff3333 !important;
}

/* ---------------------------------------------------------
   4. MODULES (Black Glass with Red Accents)
   --------------------------------------------------------- */
#sgs-modules-container {
    /* Positioned by JS */
}

.sgs-list-header {
    margin-bottom: 24px;
    text-align: right;
    padding-right: 15px;
    border-right: 2px solid #ff3333;
    opacity: 0;
    animation: sgsFadeIn 1s ease 0.2s forwards;
}

.sgs-list-header h3 {
    font-size: 1.2rem !important;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    margin: 0 !important;
    color: #fff !important;
    /* Keep white for consistency with center title */
}

.sgs-list-header span {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.8rem;
    font-style: italic;
}

#sgs-modules-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sgs-module-card {
    display: block;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid rgba(255, 50, 50, 0.3);
    border-radius: 6px;
    padding: 16px 20px;
    text-decoration: none !important;

    opacity: 0;
    transform: translateX(-150px);
    animation: sgsFlyIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
    transition: all 0.3s ease;
}

@keyframes sgsFlyIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes sgsFadeIn {
    to {
        opacity: 1;
    }
}

.sgs-module-card:hover {
    transform: translateX(10px) !important;
    background: rgba(15, 15, 15, 0.9);
    border-left-color: #ff3333;
    box-shadow: 0 0 25px rgba(255, 0, 0, 0.15);
}

.sgs-card-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.sgs-badge {
    color: #ff3333 !important;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.sgs-date {
    font-size: 0.7rem;
    color: #777 !important;
}

.sgs-card-title {
    font-size: 1.1rem !important;
    font-weight: 700;
    margin: 0 0 4px 0 !important;
    text-transform: none;
}

.sgs-card-desc {
    font-size: 0.85rem !important;
    color: #bbb !important;
    margin: 0 0 10px 0 !important;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sgs-card-footer {
    text-align: right;
}

.sgs-cta {
    font-size: 0.75rem;
    color: #ff3333 !important;
    opacity: 0;
    transition: opacity 0.3s;
}

.sgs-module-card:hover .sgs-cta {
    opacity: 1;
}

.sgs-mobile-mode .sgs-list-header {
    text-align: left;
    border-right: none;
    border-left: 2px solid #ff3333;
    padding-left: 15px;
}