/*
Theme Name: My Simple Theme
Author: Custom Developer
Version: 1.4
Description: Flexible layout supporting centered standard pages and full-width tool templates.
*/

/* Reset & Base Setup */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #212529;
    line-height: 1.6;

    /* Sticky Footer Base */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header Bar 
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.site-title a {
    text-decoration: none;
    color: #111827;
    font-size: 1.25rem;
    font-weight: 700;
}

.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 1.5rem;
}

.top-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    transition: color 0.2s ease;
}

.top-menu a:hover {
    color: #2563eb;
}
*/
/* ==========================================================================
   CYBER / TECH HEADER & NAVIGATION STYLES
   ========================================================================== */

/* Dark Cyber Header Container */
.site-header {
    background-color: #080c14; /* Deep cyber dark to match tool background */
    border-bottom: 1px solid rgba(0, 240, 255, 0.2); /* Subtle glowing cyan border */
    padding: 0.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    z-index: 100;
}

/* Glowing Top Laser Beam */
.site-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, #7000ff, transparent);
}

/* Cyber Title / Logo Branding */
.site-title a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Glowing Indicator Dot in Logo */
.site-title a::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    background-color: #00f0ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00f0ff, 0 0 15px #00f0ff;
}

.site-title a:hover {
    color: #00f0ff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

/* Cyber Navigation Menu Container */
.top-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.top-menu li {
    margin: 0;
}

/* Cyber Button Links */
.top-menu a {
    text-decoration: none;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1.1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.25);
    position: relative;
    display: inline-block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Sci-fi Chamfered / Cut-off Corners */
    clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}

/* Hover State - Cyan Glow & Lift */
.top-menu a:hover {
    color: #ffffff;
    background: rgba(0, 240, 255, 0.15);
    border-color: #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transform: translateY(-2px);
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.9);
}

/* Active Menu Item (Current Page) */
.top-menu .current-menu-item a,
.top-menu .current_page_item a {
    color: #00f0ff;
    border-color: #00f0ff;
    background: rgba(0, 240, 255, 0.2);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}
/* LAYOUT 1: DEFAULT PAGES (Centered, capped width, title visible) */
.site-container {
    max-width: 960px;
    width: 100%;
    margin: 2rem auto;
    padding: 0 1.5rem;
    flex: 1 0 auto; /* Pushes footer down */
}

/* LAYOUT 2: FULL-WIDTH TOOL TEMPLATE (Edge-to-edge, no side gaps) */
.tool-container-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    flex: 1 0 auto; /* Pushes footer down */
}

/* Footer Section */
.site-footer {
    background: #111827;
    color: #9ca3af;
    padding: 2rem 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-menu ul {
    list-style: none;
    margin: 0 0 1rem 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-menu a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-menu a:hover {
    color: #ffffff;
}

.site-footer p {
    margin: 0;
    font-size: 0.875rem;
}

/* FIX: Remove white gap between Full-Width Tool and Footer */
.tool-container-full {
    margin-bottom: 0 ;
    padding-bottom: 0 ;
}

/* Strip margins from all elements inside the full-width tool wrapper 
.tool-container-full > *,
.tool-container-full p,
.tool-container-full div {
    margin-bottom: 0 ;
}
*/

/* Ensure footer touches the tool directly */
.site-footer {
    margin-top: 0 !important;
    border-top: none !important;
}

/* ==========================================================================
   RESPONSIVE CYBER MENU & MOBILE DROPDOWN STYLES
   ========================================================================== */

/* Hide Hamburger Toggle on Desktop by default */
.mobile-menu-toggle {
    display: none;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(0, 240, 255, 0.4);
    padding: 8px 10px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    clip-path: polygon(4px 0, 100% 0, 100% calc(100% - 4px), calc(100% - 4px) 100%, 0 100%, 0 4px);
    transition: all 0.3s ease;
}

.mobile-menu-toggle .bar {
    width: 20px;
    height: 2px;
    background-color: #00f0ff;
    box-shadow: 0 0 5px #00f0ff;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    border-color: #00f0ff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Animated 'X' icon when open */
.mobile-menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.mobile-menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* MOBILE & TABLET LAYOUT BREAKPOINT (Under 768px) */
@media screen and (max-width: 768px) {
    .site-header {
        padding: 0.75rem 1rem;
    }


    /* Show the Cyber Mobile Toggle Button */
    .mobile-menu-toggle {
        display: flex;
    } 

    /* Convert Navigation into Stacked Mobile Dropdown Panel */
    .top-menu {
        display: none; /* Hidden until toggled */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #080c14;
        border-bottom: 1px solid rgba(0, 240, 255, 0.3);
        padding: 1rem 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.9);
    }

    /* Active State (Shown when user taps hamburger icon) */
    .top-menu.is-active {
        display: block;
    }

    .top-menu ul {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0 1rem;
    }

    .top-menu li {
        width: 100%;
    }

    .top-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.75rem 1rem;
    }
}

/* ==========================================================================
   CYBER SUB-MENU & DROPDOWN NAVIGATION
   ========================================================================== */

/* Parent Menu Item Positioning */
.top-menu li {
    position: relative;
}

/* Indicator Chevron for Items with Sub-menus */
.top-menu .menu-item-has-children > a::after {
    content: ' ▼';
    font-size: 0.6rem;
    margin-left: 6px;
    color: #00f0ff;
    display: inline-block;
    transition: transform 0.25s ease;
}

/* Rotate Chevron on Hover */
.top-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

/* Desktop Sub-Menu Dropdown Box */
.top-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background-color: #0d1322;
    border: 1px solid #00f0ff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.9), 0 0 15px rgba(0, 240, 255, 0.25);
    padding: 0.5rem 0;
    list-style: none;
    margin: 0;
    z-index: 999;
    
    /* FIX: clip-path removed! It forces overflow hiding which breaks Tier-3 flyouts */
}


/* Reveal Sub-menu on Hover (Desktop) */
.top-menu li:hover > .sub-menu {
    display: block;
    animation: cyberFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cyberFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sub-menu Individual Item Links */
.top-menu .sub-menu li {
    width: 100%;
    margin: 0;
}

.top-menu .sub-menu a {
    display: block;
    width: 100%;
    border: none;
    clip-path: none;
    background: transparent;
    padding: 0.65rem 1.25rem;
    text-align: left;
    color: #cbd5e1;
    font-size: 0.75rem;
    border-left: 3px solid transparent;
    transition: all 0.2s ease;
}

/* Sub-menu Item Hover State */
.top-menu .sub-menu a:hover {
    color: #ffffff;
    background: rgba(0, 240, 255, 0.12);
    border-left-color: #00f0ff;
    padding-left: 1.5rem; /* Subtle hover slide effect */
    text-shadow: 0 0 6px rgba(0, 240, 255, 0.8);
}

/* Active State for Sub-menu Items */
.top-menu .sub-menu .current-menu-item a {
    color: #00f0ff;
    border-left-color: #00f0ff;
    background: rgba(0, 240, 255, 0.15);
}

/* Nested 2nd-Level Sub-menus (Flyout to the right) */
.top-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}


/* ==========================================================================
   RESPONSIVE MOBILE STYLING FOR SUB-MENUS
   ========================================================================== */

@media screen and (max-width: 768px) {
    
    /* Convert Dropdown into Static Stacked Nested List */
    .top-menu .sub-menu {
        position: static;
        display: none; /* Collapsed by default */
        min-width: 100%;
        background: rgba(15, 23, 42, 0.6);
        border: none;
        border-left: 2px solid rgba(0, 240, 255, 0.4); /* Cyan indicator line on left */
        margin: 0.5rem 0 0 0.75rem;
        padding: 0.25rem 0;
        clip-path: none;
        box-shadow: none;
    }

    /* Expand sub-menu on mobile when parent is tapped or hovered */
    .top-menu li:hover > .sub-menu,
    .top-menu li.focus > .sub-menu {
        display: block;
    }

    .top-menu .sub-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .top-menu .sub-menu a:hover {
        padding-left: 1.25rem;
    }
}

/* ==========================================================================
   HOMEPAGE POST GRID STYLES
   ========================================================================== */

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.post-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.post-card:hover {
    border-color: #00f0ff;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    /* object-fit ensures the image fills the space without squishing */
    object-fit: cover; 
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.post-content-preview {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content-preview h2 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.post-content-preview h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

.post-content-preview h2 a:hover {
    color: #00f0ff;
}

.excerpt {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cyber-read-more {
    display: inline-block;
    color: #00f0ff;
    text-decoration: none;
    font-family: 'Fira Code', Consolas, monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
}

.cyber-read-more:hover {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

/* ==========================================================================
   SINGLE POST CONTENT & HEADING STYLES
   ========================================================================== */

/* Main Post Title (Kept exactly as requested) */
.single-title {
    color: #ffffff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* Post Content Wrapper - NO text color overrides here */
.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Strictly Manage Headings Inside the Post */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    color: #ffffff; /* Make headings pop against dark backgrounds */
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.15); /* Subtle cyber divider under headings */
}

/* Slightly scale down smaller headings */
.entry-content h3 { font-size: 1.4rem; }
.entry-content h4 { font-size: 1.2rem; border-bottom: none; }

/* ==========================================================================
   SINGLE POST FEATURED IMAGE (Uncropped, Full Width)
   ========================================================================== */

.single-featured-image {
    margin: 0 auto 2.5rem auto;
    width: 100%; /* Ensures the container perfectly matches your text width */
}

.single-featured-image img {
    width: 100%; /* Forces the image to expand (or shrink) to fit the text width exactly */
    height: auto; /* Keeps the original aspect ratio so nothing gets cropped or warped */
    display: block;
    border: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border-radius: 4px;
}

/* ==========================================================================
   STANDARD STATIC PAGES (About Us, Privacy Policy, etc.)
   ========================================================================== */

.page-title {
    color: #ffffff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2); /* Cyber line under the title */
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ==========================================================================
   RESPONSIVE MOBILE STYLING FOR SUB-MENUS
   ========================================================================== */

@media screen and (max-width: 768px) {
    
    /* Convert Dropdown into Static Stacked Nested List */
    .top-menu .sub-menu {
        position: static;
        display: none; /* Collapsed by default */
        min-width: 100%;
        background: rgba(15, 23, 42, 1);
        border: none;
        border-left: 2px solid rgba(0, 240, 255, 0.4); 
        margin: 0.5rem 0 0 0.75rem;
        padding: 0.25rem 0;
        clip-path: none;
        box-shadow: none;
    }

    /* Expand sub-menu on mobile ONLY when the JS adds the 'mobile-expanded' class */
    .top-menu li.mobile-expanded > .sub-menu {
        display: block;
        animation: cyberFadeIn 0.3s ease forwards;
    }

    /* Rotate the chevron indicator when expanded on mobile */
    .top-menu li.mobile-expanded > a::after {
        transform: rotate(180deg);
        color: #ffffff;
        text-shadow: 0 0 8px #00f0ff;
    }

    .top-menu .sub-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }

    .top-menu .sub-menu a:hover {
        padding-left: 1.25rem;
    }
}
/* ======================================================================
   Custom Page CSS
   ====================================================================== */
.page-id-71 .excerpt {
   

    display: none;

}
.page-id-71 {
    background-color: #010305;
 }

.page-id-71 .site-container{
   max-width: 1024px;
}

.category-blog-posts .site-container{
    max-width: 1024px;
}

.category-daily-life-tool .site-container {
    max-width: 80%;
    
}

.category-text-tools .site-container {
    max-width: 1024px;
    
    
}

.category-text-tools {
    
    background-color: #010305;
}


.category-daily-life-tool .post-card{
border-radius: 25px;
}
.category-daily-life-tool .excerpt {
    display: none;
}

.category-games .excerpt {
    display: none;
}

.category-text-tools .excerpt {
    display: none;
}


/* ==========================================================================
   CYBER TOOL LAUNCH BUTTON
   ========================================================================== */

.cyber-launch-btn {
    display: inline-block;
    padding: 0.6rem 1.25rem;
    color: #00f0ff;
    background: rgba(0, 240, 255, 0.05); /* Very faint cyan background */
    border: 1px solid #00f0ff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 0.85rem;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1.5px;
    align-self: flex-start;
    transition: all 0.3s ease;
    
    /* Sci-Fi Chamfered (Cut) Corners */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

/* Glowing Hover State */
.cyber-launch-btn:hover {
    background: rgba(0, 240, 255, 0.2); /* Brighter background on hover */
    color: #ffffff; /* Text turns white */
    border-color: #ffffff;
    
    /* Drop shadow doesn't work well with clip-path, so we use a filter glow */
    filter: drop-shadow(0px 0px 8px rgba(0, 240, 255, 0.8));
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

/* Optional: Active/Click State */
.cyber-launch-btn:active {
    transform: scale(0.97); /* Slight press-in effect when clicked */
}

/* ==========================================================================
   CYBER PAGINATION BUTTONS
   ========================================================================== */

.cyber-pagination {
    grid-column: 1 / -1; /* Forces the pagination to span across the whole grid */
    margin-top: 3rem;
    text-align: center;
}

/* Hide the default "Posts Navigation" screen-reader text */
.cyber-pagination .screen-reader-text {
    display: none;
}

.cyber-pagination .nav-links,
.custom-query-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* The page numbers and next/prev buttons */
.cyber-pagination a.page-numbers,
.cyber-pagination span.page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    color: #cbd5e1;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 2px;
}

/* Hover effects for clickable numbers */
.cyber-pagination a.page-numbers:hover {
    background: rgba(0, 240, 255, 0.15);
    border-color: #00f0ff;
    color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

/* The active (current) page number */
.cyber-pagination span.current {
    background: rgba(0, 240, 255, 0.2);
    border-color: #00f0ff;
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.3);
}

/* The "dots" when there are many pages (e.g., 1 2 ... 8 9) */
.cyber-pagination span.dots {
    border: none;
    background: transparent;
    color: #00f0ff;
    padding: 0.5rem;
}



/* ==========================================================================
   CYBER COMMENTS SECTION
   ========================================================================== */

.cyber-comments-area {
    margin-top: 5rem;
    padding: 20px;
    border-top: 1px dashed rgba(0, 240, 255, 0.2);
    clear: both;
    background-color:#060b30;
}

.cyber-comments-area h3 {
    color: #00f0ff;
    font-family: 'Fira Code', monospace;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    font-size: 1.25rem;
}

.cyber-comment-notes {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Logged Comments Styling */
.comment-list {
    margin-bottom: 4rem;
}

.comment-list .comment {
    background: rgb(134 195 255);
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.comment-meta {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.comment-meta b {
    color: #fff;
}

.comment-reply-link {
    display: inline-block;
    margin-top: 1rem;
    color: #00f0ff;
    text-decoration: none;
    font-family: 'Fira Code', monospace;
    font-size: 0.85rem;
}

.comment-reply-link:hover {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

/* Terminal Form Inputs */
.cyber-input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cyber-input-group label {
    color: #00f0ff;
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cyber-input-group input,
.cyber-input-group textarea {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #fff;
    padding: 0.8rem;
    font-family: inherit;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cyber-input-group input:focus,
.cyber-input-group textarea:focus {
    border-color: #00f0ff;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Cyber Submit Button */
.cyber-submit-btn {
    background: transparent;
    color: #00f0ff;
    border: 1px solid #00f0ff;
    padding: 0.8rem 1.5rem;
    font-family: 'Fira Code', monospace;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cyber-submit-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

label[for="wp-comment-cookies-consent"] {
    color: #fff;
}



/* ==========================================================================
   BULLETPROOF MULTI-LEVEL DROPDOWN
   ========================================================================== */

/* 1. Ensure all list items anchor their children */
ul.cyber-nav-menu li {
    position: relative !important;
}

/* 2. Tier-2 Dropdown (Standard Sub-Menu) */
ul.cyber-nav-menu > li > ul.sub-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
}

/* 3. Tier-3+ Dropdowns (Sub-menus inside Sub-menus) */
ul.cyber-nav-menu ul.sub-menu ul.sub-menu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important; /* Forces it right */
    margin-left: -1px;
    visibility: hidden;
    opacity: 0;
}

/* 4. The Hover Trigger (Only show the direct child menu) */
ul.cyber-nav-menu li:hover > ul.sub-menu {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}



/* ==========================================================================
   MOBILE TIER-3 FIX (VERTICAL ACCORDION)
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* 1. Stop Tier-3 from flying off the right edge of the screen */
    ul.cyber-nav-menu ul.sub-menu ul.sub-menu {
        position: static !important; 
        left: auto !important;
        top: auto !important;
        margin-left: 1rem !important; /* Indents the nested menu slightly to the right */
        margin-top: 0.5rem !important;
        
        /* Reset visibility so the JavaScript can control it */
        visibility: visible !important;
        opacity: 1 !important;
        display: none !important; /* Kept hidden until the user taps it */
    }

    /* 2. When the JS adds the active class via tapping, display the menu */
    ul.cyber-nav-menu li.mobile-expanded > ul.sub-menu {
        display: block !important;
    }
}


/* ==========================================================================
   WOOCOMMERCE CYBER THEME OVERRIDES
   ========================================================================== */

/* 1. Shop Grid Cards (Matches your standard post grids) */
.woocommerce ul.products li.product {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    border-radius: 4px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.woocommerce ul.products li.product:hover {
    border-color: #00f0ff !important;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.15);
    transform: translateY(-4px);
}

/* 2. Product Titles & Price Typography */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
    color: #ffffff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
}

.woocommerce div.product .price,
.woocommerce ul.products li.product .price {
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    font-size: 1.2rem !important;
    margin-bottom: 1rem !important;
}

/* 3. Cyber Buttons (Add to cart, Checkout, Submit) */
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button, 
.woocommerce #respond input#submit,
.woocommerce a.button.alt, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt {
    background: rgba(0, 240, 255, 0.05) !important;
    color: #00f0ff !important;
    border: 1px solid #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    text-transform: uppercase;
    border-radius: 0 !important; /* Removes default woo rounding */
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    transition: all 0.3s ease !important;
    padding: 0.6rem 1.25rem !important;
    font-weight: normal !important;
    display: inline-block;
}

/* Button Hover State */
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover, 
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover, 
.woocommerce button.button.alt:hover, 
.woocommerce input.button.alt:hover {
    background: rgba(0, 240, 255, 0.2) !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4) !important;
}

/* 4. Cyber Sale Badge */
.woocommerce span.onsale {
    background: #00f0ff !important;
    color: #080c14 !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    text-transform: uppercase;
    border-radius: 0 !important;
    font-weight: 800;
    padding: 0.2rem 0.6rem !important;
    min-height: auto !important;
    min-width: auto !important;
    line-height: 1.5 !important;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* 5. Fix Quantity Input Boxes */
.woocommerce .quantity .qty {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    color: #fff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    border-radius: 2px !important;
    padding: 0.5rem !important;
}

/* 6. Product Tabs (Description & Reviews) */
.woocommerce div.product .woocommerce-tabs ul.tabs {
    border-bottom: 1px solid rgba(0, 240, 255, 0.2) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: 1px solid transparent !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: #94a3b8 !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #00f0ff !important;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}


/* ==========================================================================
   WOOCOMMERCE "MY ACCOUNT" DASHBOARD
   ========================================================================== */

/* 1. Dashboard Layout (Side-by-side on desktop) */
@media (min-width: 769px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
        width: 25%;
        float: left;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 70%;
        float: right;
    }
}

/* 2. Cyber Navigation Menu (The Tabs) */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    border: 1px solid rgba(0, 240, 255, 0.2);
    background: rgba(15, 23, 42, 0.6);
    border-radius: 4px;
}

.woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 1rem;
    color: #cbd5e1;
    text-decoration: none;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

/* Hover & Active States for Tabs */
.woocommerce-MyAccount-navigation ul li a:hover {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    padding-left: 1.5rem; /* Slide effect on hover */
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: rgba(0, 240, 255, 0.2);
    color: #00f0ff;
    border-left: 3px solid #00f0ff;
    box-shadow: inset 5px 0 10px rgba(0, 240, 255, 0.1);
}

/* 3. Dashboard Text Content */
.woocommerce-MyAccount-content {
    color: #94a3b8;
}

.woocommerce-MyAccount-content strong {
    color: #00f0ff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-weight: normal;
}

.woocommerce-MyAccount-content a {
    color: #00f0ff;
    text-decoration: none;
}

.woocommerce-MyAccount-content a:hover {
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}

/* 4. Cyber Tables (Orders & Downloads) */
.woocommerce table.shop_table {
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    border-radius: 4px;
    border-collapse: collapse;
    width: 100%;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    border-top: 1px solid rgba(0, 240, 255, 0.2) !important;
    padding: 1rem;
    background: rgba(15, 23, 42, 0.4);
}

.woocommerce table.shop_table th {
    color: #00f0ff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* ==========================================================================
   WOOCOMMERCE UNIVERSAL FORMS (Login, Checkout, Edit Account)
   ========================================================================== */

/* Form Input Fields */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    color: #fff !important;
    padding: 0.8rem !important;
    font-family: inherit;
    border-radius: 2px;
    transition: all 0.3s ease;
    width: 100%;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: #00f0ff !important;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* Form Labels */
.woocommerce form .form-row label {
    color: #00f0ff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* ==========================================================================
   WOOCOMMERCE PRODUCT REVIEWS (Matching the Cyber Comments)
   ========================================================================== */

/* 1. Review Section Container */
#reviews #comments h2 {
    color: #00f0ff;
    font-family: 'Fira Code', monospace;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* 2. Individual Logged Reviews */
.woocommerce #reviews #comments ol.commentlist li .comment_container {
    background: rgba(10, 15, 30, 0.5); /* Matches your comment list */
    border: 1px solid rgba(0, 240, 255, 0.15);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    color: #cbd5e1;
}

/* Author Meta Data */
.woocommerce #reviews #comments ol.commentlist li .meta {
    font-family: 'Fira Code', monospace;
    font-size: 0.9rem;
    color: #888;
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.woocommerce #reviews #comments ol.commentlist li .meta strong {
    color: #fff;
}

/* 3. The "Add Review" Form Area */
.woocommerce #review_form #respond {
    /* background-color: #060b30; Matches your cyber-comments-area */
    padding: 20px;
    border-top: 1px dashed rgba(0, 240, 255, 0.2);
    margin-top: 2rem;
}

/* 4. Cyber Star Ratings */
.woocommerce .star-rating span::before {
    color: #00f0ff !important; /* Forces neon cyan stars */
}

.woocommerce p.stars a {
    color: #00f0ff !important;
}

.woocommerce p.stars a:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px #00f0ff;
}

.woocommerce p.stars.selected a.active ~ a {
    color: #94a3b8 !important; /* Dims the unselected stars */
}


/* ==========================================================================
   WOOCOMMERCE GLOBAL BODY & TEXT COLORS
   ========================================================================== */

/* 1. Target the Body of WooCommerce Pages Only */
body.woocommerce-page {
    background-color: #010305 !important; /* Matches your darkest tool pages */
    color: #cbd5e1 !important; /* Slate text for high contrast readability */
}

/* 2. Force paragraph and description text to match */
body.woocommerce-page p,
body.woocommerce-page div.woocommerce-product-details__short-description,
body.woocommerce-page .woocommerce-Tabs-panel--description {
    color: #cbd5e1 !important;
    line-height: 1.8;
}

/* 3. Global Headings on Woo Pages */
body.woocommerce-page h1,
body.woocommerce-page h2,
body.woocommerce-page h3,
body.woocommerce-page h4,
body.woocommerce-page h5,
body.woocommerce-page h6 {
    color: #ffffff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    margin-bottom: 1rem;
}

/* 4. Cyber Links inside WooCommerce content */
body.woocommerce-page .woocommerce-content a:not(.button) {
    color: #00f0ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

body.woocommerce-page .woocommerce-content a:not(.button):hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.8);
}


/* ==========================================================================
   WOOCOMMERCE CATALOG SORTING & RESULTS TEXT
   ========================================================================== */

/* 1. "Showing results" Text (Left side) */
.woocommerce .woocommerce-result-count {
    color: #94a3b8 !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* 2. Sorting Form Container (Right side) */
.woocommerce .woocommerce-ordering {
    margin-bottom: 2.5rem !important;
}

/* 3. The Sorting Dropdown Box */
.woocommerce .woocommerce-ordering select {
    background-color: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(0, 240, 255, 0.4) !important;
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    font-size: 0.9rem;
    padding: 0.6rem 2.5rem 0.6rem 1rem !important;
    border-radius: 2px !important;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    
    /* 4. Kill the default browser arrow and inject a custom Cyber Arrow */
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300f0ff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 0.5rem center !important;
    background-size: 1.2rem !important;
}

/* Hover and Focus Glow */
.woocommerce .woocommerce-ordering select:hover,
.woocommerce .woocommerce-ordering select:focus {
    border-color: #00f0ff !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    background-color: rgba(0, 0, 0, 0.9) !important;
}

/* 5. Dropdown Options List */
.woocommerce .woocommerce-ordering select option {
    background-color: #080c14 !important; /* Deep dark background so it's readable */
    color: #cbd5e1 !important; /* Slate text */
    padding: 0.5rem;
}


/* ==========================================================================
   WOOCOMMERCE CHECKOUT PAGE THEME OVERRIDES
   ========================================================================== */

/* 1. Checkout Form Input Fields & Textareas */
body.woocommerce-checkout .woocommerce-billing-fields input.input-text,
body.woocommerce-checkout .woocommerce-shipping-fields input.input-text,
body.woocommerce-checkout .woocommerce-form-coupon input.input-text,
body.woocommerce-checkout textarea {
    background: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    color: #fff !important;
    padding: 0.8rem !important;
    font-family: inherit;
    border-radius: 2px;
    height: auto !important;
    transition: all 0.3s ease;
}

body.woocommerce-checkout input.input-text:focus,
body.woocommerce-checkout textarea:focus {
    border-color: #00f0ff !important;
    outline: none;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

/* 2. Select2 Country & State Dropdowns Customization */
body.woocommerce-checkout .select2-container--default .select2-selection--single {
    background-color: rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    border-radius: 2px !important;
    height: 45px !important;
    padding: 0.4rem !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #fff !important;
    line-height: 1.8 !important;
    font-family: inherit;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 40px !important;
}

body.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #00f0ff transparent transparent transparent !important;
}

/* Dropdown Popup List */
body.woocommerce-checkout .select2-dropdown {
    background-color: #080c14 !important;
    border: 1px solid #00f0ff !important;
    color: #cbd5e1 !important;
    font-family: inherit;
}

body.woocommerce-checkout .select2-results__option--highlighted[aria-selected] {
    background-color: rgba(0, 240, 255, 0.2) !important;
    color: #fff !important;
}

/* 3. Section Titles & Field Labels */
body.woocommerce-checkout .woocommerce-billing-fields h3,
body.woocommerce-checkout .woocommerce-shipping-fields h3,
body.woocommerce-checkout #order_review_heading {
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

body.woocommerce-checkout label {
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* 4. Order Review Summary Table */
body.woocommerce-checkout table.woocommerce-checkout-review-order-table {
    background: rgba(15, 23, 42, 0.6) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    border-radius: 4px;
    color: #cbd5e1 !important;
    width: 100%;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table td {
    border-top: 1px solid rgba(0, 240, 255, 0.15) !important;
    padding: 1rem !important;
    background: transparent !important;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table th {
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    text-transform: uppercase;
}

/* 5. Payment Methods Box Styling */
body.woocommerce-checkout #payment {
    background: rgba(15, 23, 42, 0.8) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
    border-radius: 4px !important;
}

body.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid rgba(0, 240, 255, 0.2) !important;
}

body.woocommerce-checkout #payment div.payment_box {
    background: rgba(0, 0, 0, 0.4) !important;
    border: 1px solid rgba(0, 240, 255, 0.1) !important;
    color: #cbd5e1 !important;
}

body.woocommerce-checkout #payment div.payment_box::before {
    border-bottom-color: rgba(0, 0, 0, 0.4) !important;
}

/* 6. Make the "Place Order" Button a Full-Width Cyber Action */
body.woocommerce-checkout #place_order {
    width: 100% !important;
    text-align: center !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    margin-top: 1rem;
}



/* ==========================================================================
   CYBER INTRO BOX COMPONENT
   ========================================================================== */

.cyber-intro-box {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 4px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.6);
    position: relative;
    backdrop-filter: blur(10px);
}

/* Subtle top glow line to match your header */
.cyber-intro-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f0ff, transparent);
}

.cyber-intro-box h2 {
    color: #00f0ff !important;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace !important;
    font-size: 1.35rem !important;
    margin-top: 0 !important;
    margin-bottom: 1.25rem !important;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    border-bottom: none !important;
    padding-bottom: 0 !important;
}

.cyber-intro-box p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cyber-intro-box p:last-child {
    margin-bottom: 0;
}

.cyber-intro-box strong {
    color: #ffffff;
    font-family: 'Fira Code', Consolas, monospace;
    font-weight: normal;
}

/* ==========================================================================
   CYBER INTRO BOX LINKS (Overrides default browser link styles)
   ========================================================================== */

/* 1. Target the links to remove the underline and set the base color */
.cyber-intro-box a {
    text-decoration: none !important; /* Removes the annoying blue underline */
    color: #fffae6 !important; /* A warm, yellowish-white color */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

/* 2. Target the strong tags INSIDE the links to make them bold and inherit the color */
.cyber-intro-box a strong {
    font-weight: bold !important; /* Overrides your previous 'font-weight: normal' */
    color: #fffae6 !important; /* Forces the yellowish-white color */
}

/* 3. (Optional but recommended) Hover effect to match your Cyber theme */
.cyber-intro-box a:hover,
.cyber-intro-box a:hover strong {
    color: #00f0ff !important; /* Turns neon blue when hovered */
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.6); /* Adds a cyber glow */
}










/* ==========================================================================
   CYBER SEARCH MODULE (Global & Homepage)
   ========================================================================== */

.cyber-search-module {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem auto; /* Centers the box and adds spacing below */
    padding: 0 1rem;
}

.cyber-search-module form {
    display: flex;
    position: relative;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

/* 1. Terminal Input Field */
.cyber-search-module .cyber-search-input {
    flex-grow: 1;
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-right: none; /* Connects seamlessly to the button */
    padding: 1rem 1.5rem;
    color: #00f0ff;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
    outline: none;
    transition: all 0.3s ease;
}

.cyber-search-module .cyber-search-input:focus {
    border-color: #00f0ff;
    background: rgba(0, 0, 0, 0.9);
    box-shadow: inset 5px 0 15px rgba(0, 240, 255, 0.1);
}

.cyber-search-module .cyber-search-input::placeholder {
    color: #475569;
}

/* 2. Execute Button */
.cyber-search-module .cyber-search-submit {
    background: rgba(0, 240, 255, 0.1);
    color: #00f0ff;
    border: 1px solid rgba(0, 240, 255, 0.3);
    padding: 0 2rem;
    font-family: 'Fira Code', 'Courier New', Consolas, monospace;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    transition: all 0.3s ease;
}

.cyber-search-module .cyber-search-submit:hover {
    background: rgba(0, 240, 255, 0.2);
    color: #ffffff;
    border-color: #00f0ff;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

/* 3. Mobile Device Restructuring */
@media screen and (max-width: 768px) {
    .cyber-search-module form {
        flex-direction: column; /* Stacks them vertically on phones */
        box-shadow: none;
    }
    
    .cyber-search-module .cyber-search-input {
        border-right: 1px solid rgba(0, 240, 255, 0.3); /* Restores right border */
        border-radius: 4px;
        margin-bottom: 0.5rem;
    }
    
    .cyber-search-module .cyber-search-input:focus {
        border-right: 1px solid #00f0ff;
    }
    
    .cyber-search-module .cyber-search-submit {
        border-radius: 0;
        padding: 0.8rem;
        clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
    }
}