/* SIMPLIFIED GUNS.LOL STYLE - DARK THEME WITH VIDEO */

/* === TRANSPARENT BACKGROUND TO SHOW VIDEO === */
body, html {
    background: transparent !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* === DARK OVERLAY FOR BETTER CONTRAST === */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); Dark overlay over video */
    z-index: -8;
    pointer-events: none;
}

/* === ANIMATED GRADIENT === */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(270deg, #eb4242, #881c9c, #910000);
    background-size: 400% 400%;
    opacity: 0.15;
    animation: gradientShift 15s ease infinite;
    z-index: -5;
    pointer-events: none;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* === CONTENT LAYER === */
.wp-site-blocks {
    position: relative;
    z-index: 10;
    background: transparent !important;
}

/* === DARKER CONTAINERS WITH SUBTLE VIDEO === */
.wp-block-group,
.wp-block-column,
.has-global-padding {
    background: rgba(10, 10, 10, 0.15) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 2rem !important;
}

/* === SPECIFIC COLUMN PADDING === */
.wp-block-column {
    padding: 2.5rem !important;
}

/* === HEADER AND NAVIGATION SPACING === */
header.wp-block-template-part {
    padding: 2rem !important;
}

.wp-block-navigation {
    padding: 0 !important;
}

.wp-block-navigation-item {
    padding-left: 0 !important;
    margin-bottom: 0.5rem !important;
}

/* === TITLE GRADIENT === */
.wp-block-site-title a {
    background: linear-gradient(135deg, #eb4242 0%, #881c9c 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: none !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

/* === POST TITLE SPACING === */
.wp-block-post-title {
    padding: 0 !important;
    margin-top: 0 !important;
}

/* === CONTENT AREA SPACING === */
.wp-block-post-content {
    padding: 0 !important;
}

/* === NAVIGATION === */
.wp-block-navigation-item a {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.wp-block-navigation-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #eb4242, #881c9c);
    transition: width 0.3s ease;
}

.wp-block-navigation-item a:hover::after {
    width: 100%;
}

/* === TEXT === */
h1, h2, h3, h4, h5, h6,
p, span, div, li {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* === LINKS === */
a {
    color: rgba(255, 255, 255, 0.9) !important;
}

a:hover {
    background: linear-gradient(135deg, #eb4242, #881c9c) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

/* === IMAGES === */
img {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
}

/* === CONTENT WITH IMAGES === */
.wp-block-group.is-nowrap {
    gap: 1.5rem !important;
    align-items: center !important;
}

.wp-block-group.is-nowrap figure {
    flex-shrink: 0 !important;
    margin: 0 !important;
}

.wp-block-group.is-nowrap p {
    margin: 0 !important;
}

/* === SEPARATOR === */
.wp-block-separator {
    border: none !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, rgba(235, 66, 66, 0.3), transparent) !important;
}

/* === FOOTER - HIDE WATERMARK === */
footer.wp-block-template-part {
    background: rgba(10, 10, 10, 0.15) !important;
}

footer p {
    display: none !important;
}

/* === REMOVE ALL OTHER BACKGROUNDS === */
.has-background,
[class*="background"],
.wp-block-post-content,
.entry-content {
    background: transparent !important;
}

/* === SELECTION === */
::selection {
    background: #eb4242;
    color: white;
}