body {
    background-color: #0b1116;
    background-image:
        radial-gradient(circle at 50% 30%, rgba(0, 151, 238, 0.15) 0%, transparent 70%),
        linear-gradient(to right, rgba(0, 151, 238, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 151, 238, 0.12) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;

    background-position:
        calc(50% + var(--glowX, 0px)) calc(30% + var(--glowY, 0px)),
        calc(50% + var(--x, 0px)) calc(50% + var(--y, 0px)),
        calc(50% + var(--x, 0px)) calc(50% + var(--y, 0px));

    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    animation: backgroundPulse 8s ease-in-out infinite alternate;
    transition: background-position 0.4s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

#glow-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: screen;
}

main {
    display: block;
    max-width: 1600px;
    margin: 40px auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

header {
    display: block;
    text-align: center;
    position: relative;
    z-index: 1;
}

header h1 {
    display: block;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 70px;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 40px;
    color: #c9eeff;
}

header h1 span {
    display: inline-block;
    white-space: pre;
    text-shadow: 0 0 25px rgba(201, 238, 255, 0.3);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s ease-out, text-shadow 0.4s ease-out;
}

header h1 span:hover {
    transform: translateY(-8px) scale(1.1);
    color: #ffffff;
    text-shadow: 0 0 35px rgba(0, 151, 238, 0.8), 0 0 15px rgba(201, 238, 255, 0.6);
}

.nav-tabs ul {
    list-style-type: none;
    margin: 0;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.nav-tabs li a {
    display: block;
    color: #ffffff;
    padding: 14px 20px;
    text-decoration: none;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    transition: color 0.3s ease;
}

.nav-tabs li a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #0097eee0;
    transform: scaleX(0);
    opacity: 0;
    transform-origin: bottom left;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.2s ease-out;
}

.nav-tabs li a:hover::after {
    transform: scaleX(1);
    opacity: 1;
}

.nav-tabs li a:hover {
    color: #e0f2fe;
}

.pfp-wrapper {
    display: inline-block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.pfp-wrapper:hover .Starter-Sigma-PFP {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.75), 0px 0px 40px 10px rgba(0, 151, 238, 0.25);
}

.Starter-Sigma-PFP {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0px 15px 45px 0px rgba(0, 0, 0, 0.6);
    border: 4px solid transparent;
    background-image: linear-gradient(#0b1116, #0b1116),
        linear-gradient(to right, #ff416c, #ff4b2b, #ffbd39, #20e2a3, #23a6d5, #e73c7e, #ff416c);
    background-origin: border-box;
    background-clip: content-box, border-box;
    background-size: 200% auto;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

main p {
    display: block;
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1.1rem;
    margin-top: 24px;
    text-align: center;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.btn-discord {
    background-color: #5865F2;
    color: #ffffff;
}

.btn-youtube {
    background-color: #FF0000;
    color: #ffffff;
}

.btn-coffee {
    background-color: #FFDD00;
    color: #000000;
}

footer {
    display: block;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
    font-family: system-ui, -apple-system, sans-serif;
    position: relative;
    z-index: 1;
}

.fade-in {
    opacity: 0;
    animation: smoothFadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.pfp-wrapper.fade-in .Starter-Sigma-PFP {
    animation: rainbowGlow 4s linear infinite;
}

@keyframes smoothFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rainbowGlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes backgroundPulse {
    0% {
        background-color: #0b1116;
    }

    100% {
        background-color: #121b22;
    }
}

/* --- DECORATED CONTACT FORM --- */
.contact-form-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 70px;
    padding-bottom: 20px;
}

.contact-form-container form {
    background: linear-gradient(135deg, rgba(18, 27, 34, 0.95), rgba(11, 17, 22, 0.98));
    backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 151, 238, 0.3);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 151, 238, 0.05),
        inset 0 1px 0 rgba(201, 238, 255, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: left;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

/* Moving laser matrix strip decoration on top of the card */
.contact-form-container form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffbd39, #20e2a3, #0097ee, #e73c7e, #ff416c);
    background-size: 200% auto;
    animation: rainbowGlow 4s linear infinite;
}

/* Micro Tactical Tech Text Elements */
.form-title {
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: 0 0 15px rgba(0, 151, 238, 0.4);
}

.form-subtitle {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 30px;
    display: block;
}

.contact-form-container label {
    display: block;
    font-family: system-ui, -apple-system, sans-serif;
    font-weight: 600;
    margin-bottom: 8px;
    color: #c9eeff;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Upgraded Input Terminal Fields */
.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 26px;
    background-color: rgba(11, 17, 22, 0.8);
    border: 1px solid rgba(0, 151, 238, 0.25);
    border-radius: 12px;
    color: #ffffff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    box-sizing: border-box;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-form-container ::placeholder {
    color: #475569;
    font-size: 14px;
}

/* Interactive Input Shift Physics and Dynamic Glow */
.contact-form-container input:focus,
.contact-form-container textarea:focus {
    border-color: #0097ee;
    background-color: #0b1116;
    box-shadow:
        0 0 0 1px #0097ee,
        0 0 20px rgba(0, 151, 238, 0.35),
        inset 0 0 8px rgba(0, 151, 238, 0.1);
    transform: translateX(4px);
    outline: none;
}

/* Hyper-Glow Transmission Submit Button */
.form-btn {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #0097ee, #00b4ff);
    color: #ffffff;
    padding: 16px 20px;
    border: none;
    border-radius: 50px;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 151, 238, 0.4);
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.34, 1.3, 0.64, 1), box-shadow 0.3s ease;
}

/* Shimmer laser sweep element layer */
.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

/* Hover Physics synced to your custom design specifications */
.form-btn:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 12px 30px rgba(0, 151, 238, 0.6),
        0 0 20px rgba(201, 238, 255, 0.4);
}

.form-btn:hover::before {
    left: 100%;
}

.form-btn:active {
    transform: translateY(-2px) scale(0.99);
}

/* --- STREAMLINED IMAGE MARQUEE WITH CYBER GLOW --- */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1600px;
    white-space: nowrap;
    background-color: #0b1116;
    /* Matches your exact body background */
    padding: 20px 0;
    margin: 40px auto;
    border-top: 1px solid rgba(0, 151, 238, 0.15);
    border-bottom: 1px solid rgba(0, 151, 238, 0.15);
    box-shadow: inset 0 0 20px rgba(0, 151, 238, 0.05);
}

.marquee-track {
    display: flex !important;
    width: max-content;
    will-change: transform;
    /* Boosts browser performance */
}

/* FIXED: Removed the conflicting hover transform block that was causing the jolt */

/* Image styles - matching your page's smooth rounded corners */
.marquee-track img {
    height: 120px;
    width: auto;
    margin-right: 40px;
    border-radius: 16px;
    border: 1px solid rgba(201, 238, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease-out, border-color 0.4s ease-out;
}

.marquee-track img:hover {
    transform: scale(1.05);
    border-color: rgba(0, 151, 238, 0.6);
}

/* --- THE GLOWING EDGE BARS --- */
/* Left Glow Bar */
.marquee-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, #0b1116 0%, rgba(0, 151, 238, 0.2) 10%, transparent 100%);
}

/* Right Glow Bar */
.marquee-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 15%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to left, #0b1116 0%, rgba(0, 151, 238, 0.2) 10%, transparent 100%);
}

.marquee-header {
    padding-top: 35px;
    color: aliceblue;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


/* --- PERFECTLY ROUNDED RAINBOW OUTLINE HACK --- */

.btn {
    position: relative;
    z-index: 1;
    /* Pushes text/content above the glow layer */
    border: none;
    /* Removes any default borders */
}

/* 1. Create a hidden rainbow background layer behind the button */
.btn::before {
    content: '';
    position: absolute;
    top: -3px;
    /* Extends 3px outward to form the border width */
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
    /* Sits right behind the main button color */

    /* The rainbow spectrum gradient */
    background: linear-gradient(90deg, #ff416c, #ff4b2b, #ffbd39, #20e2a3, #0097ee, #e73c7e, #ff416c);
    background-size: 200% auto;

    /* Matches your button's exact rounded shape */
    border-radius: 50px;

    /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* 2. Show the outline and run the loop ONLY when hovered */
.btn:hover::before {
    opacity: 1;
    animation: buttonRainbowScroll 2s linear infinite;
}

/* 3. The smooth scrolling animation that cycles the colors */
@keyframes buttonRainbowScroll {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* --- RESPONSIVE GALLERY STRUCTURE --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
}

/* Individual Portfolio Cards */
.gallery-card {
    background: linear-gradient(135deg, rgba(18, 27, 34, 0.85), rgba(11, 17, 22, 0.9));
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(0, 151, 238, 0.2);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Minimalist Tech Info Tag below image */
.card-info {
    padding: 16px;
    color: #c9eeff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-top: 1px solid rgba(0, 151, 238, 0.15);
    background-color: rgba(11, 17, 22, 0.5);
}

/* --- INTERACTIVE PHYSICS HOVER MODES --- */
.gallery-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(0, 151, 238, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 151, 238, 0.25);
}

.gallery-card:hover img {
    transform: scale(1.03);
}

/* --- RESPONSIVE NAVIGATION TRACK REFIX --- */
.nav-tabs ul {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    /* Forces layout to wrap onto a clean second line if space runs out */
    gap: 10px 15px !important;
    /* Controls the precise horizontal and vertical gap spacing */
    padding: 15px 10px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

.nav-tabs li {
    display: inline-block !important;
}

.nav-tabs li a,
.theme-btn {
    white-space: nowrap !important;
    /* Prevents button words from breaking onto separate lines awkwardly */
}

/* Micro-adjustment for layout balance on phone screens */
@media (max-width: 600px) {
    .nav-tabs li a {
        padding: 8px 12px !important;
        /* Shrinks button sizes slightly on mobile so everything fits */
        font-size: 14px !important;
    }

    .theme-btn {
        padding: 8px 14px !important;
        font-size: 13px !important;
    }
}

/* ==========================================================================
   --- ABOUT PAGE CONTENT STYLING ---
   ========================================================================== */

/* Layout Container - Centers content on screen */
.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

/* Base Info Card Styling - Matches form panels */
.about-card {
    background: linear-gradient(135deg, rgba(18, 27, 34, 0.95), rgba(11, 17, 22, 0.98));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 151, 238, 0.25);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Card Titles with Subtle Glow */
.about-title {
    color: #ffffff;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0, 151, 238, 0.3);
}

/* Readable Paragraph Body Text */
.about-text {
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
}

/* Bullet Point Lists */
.skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Custom Skill List Items */
.skills-list li {
    color: #c9eeff;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

/* Custom Lightning Bolt Indicator */
.skills-list li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #0097ee;
}

/* --- ABOUT PAGE CYBERPINK THEME OVERRIDES --- */
body.pink-mode .about-card {
    border-color: rgba(255, 0, 127, 0.25) !important;
}

body.pink-mode .about-title {
    text-shadow: 0 0 15px rgba(255, 0, 127, 0.3) !important;
}

body.pink-mode .skills-list li {
    color: #ffb4d2 !important;
}

body.pink-mode .skills-list li::before {
    color: #ff007f !important;
}

/* Base Info Card Styling - Controls how it looks normally AND how it transitions OUT */
.about-card {
    background: linear-gradient(135deg, rgba(18, 27, 34, 0.95), rgba(11, 17, 22, 0.98));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 151, 238, 0.25);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);

    /* Smooth cubic-bezier curve creates a premium, springy physical physics effect */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* INTERACTIVE PHYSICS HOVER MODE: Triggers when mouse highlights the box */
.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    /* Seamlessly lifts up and expands slightly */
    border-color: rgba(0, 151, 238, 0.6);
    /* Sharpens the neon border clarity */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75),
        0 0 25px rgba(0, 151, 238, 0.2);
    /* Casts a dynamic cyan glow pool underneath */
    cursor: default;
}

/* --- CYBERPUNK PINK MODE HIGHLIGHT OVERRIDES --- */
body.pink-mode .about-card:hover {
    border-color: rgba(255, 0, 127, 0.6) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.75),
        0 0 25px rgba(255, 0, 127, 0.2) !important;
    /* Shifts the glow pools to hot pink */
}

/* --- GLITCH TITLE TEXT MATRIX --- */
h2 {
    position: relative;
    transition: color 0.2s ease;
}

h2:hover {
    color: #ffffff;
    animation: textGlitch 0.3s linear infinite;
    text-shadow: -2px 0 #ff007f, 2px 0 #0097ee;
}

@keyframes textGlitch {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translate(-2px, 2px);
    }

    40% {
        transform: translate(-2px, -2px);
    }

    60% {
        transform: translate(2px, 2px);
    }

    80% {
        transform: translate(2px, -2px);
    }

    100% {
        transform: translate(0);
    }
}

/* ==========================================================================
   --- UPGRADED TACTICAL SERVICES CARDS DECORATION ---
   ========================================================================== */

/* Layout Grid Configuration */
.services-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    padding: 60px 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Upgraded Terminal Price Modules */
.service-card {
    background: linear-gradient(135deg, rgba(18, 27, 34, 0.95), rgba(11, 17, 22, 0.98));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 151, 238, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Subtle laser bar embedded right at the top edge of each module */
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(0, 151, 238, 0.6), transparent);
}

/* --- THE SPECIAL "FEATURED" HIGHLIGHT CARD DESIGN --- */
.service-card.featured {
    border-color: rgba(0, 151, 238, 0.5);
    transform: scale(1.04);
}

.service-card.featured::before {
    background: linear-gradient(90deg, #ff416c, #0097ee, #ff416c);
    background-size: 200% auto;
    animation: rainbowGlow 4s linear infinite;
}

/* Package Subheadings */
.tier-tag {
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #475569;
    margin-bottom: 12px;
}

.cyber-tag {
    color: #0097ee;
    text-shadow: 0 0 10px rgba(0, 151, 238, 0.3);
}

/* Main Tier Names */
.service-title {
    color: #ffffff;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

/* Massive Digital Numbers */
.price {
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: #c9eeff;
    margin-bottom: 30px;
    text-shadow: 0 0 25px rgba(0, 151, 238, 0.3);
}

/* Checklist Module Formats */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
}

.features-list li {
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 14px;
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

/* Vibrant Shimmering Checkmark Icons */
.features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #20e2a3;
    font-weight: 800;
    text-shadow: 0 0 8px rgba(32, 226, 163, 0.5);
}

/* The Order Buttons at the footer of the modules */
.btn-order {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(0, 151, 238, 0.4);
    width: 100%;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- HOVER PHYSICS ENGINE INTERACTION --- */
.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 151, 238, 0.6);
    box-shadow: 0 35px 60px -10px rgba(0, 0, 0, 0.85), 0 0 30px rgba(0, 151, 238, 0.2);
}

.service-card.featured:hover {
    transform: translateY(-12px) scale(1.04);
    border-color: #0097ee;
    box-shadow: 0 35px 60px -10px rgba(0, 0, 0, 0.85), 0 0 40px rgba(0, 151, 238, 0.35);
}


/* --- MONTHLY SUPPORTER MODULE --- */
.monthly-support-container {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 30px 0 50px 0;
}

.support-card {
    background: linear-gradient(135deg, rgba(11, 17, 22, 0.98), rgba(18, 27, 34, 0.95));
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 151, 238, 0.3);
    border-radius: 24px;
    padding: 35px;
    width: 100%;
    max-width: 1030px;
    /* Perfectly aligns with your three column card tracks */
    box-sizing: border-box;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.support-card:hover {
    transform: scale(1.01);
    border-color: #0097ee;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(0, 151, 238, 0.15);
}

.support-title {
    color: #ffffff;
    font-family: "Helvetica", Arial, sans-serif;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 12px;
}

.support-text {
    color: #cbd5e1;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 25px auto;
}

.btn-membership {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(0, 151, 238, 0.5);
    padding: 14px 40px;
}

/* Cyberpink Automation Supporter Overrides */
body.pink-mode .support-card {
    border-color: rgba(255, 0, 127, 0.3);
}

body.pink-mode .support-card:hover {
    border-color: #ff007f;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 25px rgba(255, 0, 127, 0.15);
}

body.pink-mode .btn-membership {
    border-color: rgba(255, 0, 127, 0.5);
}

/* ==========================================================================
   --- SECRET FOOTER CYBER EASTER EGG ---
   ========================================================================== */

/* 1. Set up the core transition on your existing footer paragraph */
footer p {
    display: inline-block;
    /* Allows transformation physics */
    cursor: help;
    /* Gives a micro-hint that something is hidden here */
    position: relative;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* 2. The Surprise Matrix Transformation Explosion */
footer p:hover {
    color: #ffffff !important;
    transform: scale(1.15) rotateX(10deg) rotateY(-10deg);

    /* Blasts a deep three-layered color shadow backdrop */
    text-shadow:
        -3px -3px 0px rgba(255, 0, 127, 0.8),
        /* Neon Pink Layer */
        3px 3px 0px rgba(0, 151, 238, 0.8),
        /* Neon Blue Layer */
        0px 0px 20px rgba(201, 238, 255, 0.6);
    /* Core Glare Ambient */

    letter-spacing: 4px;
    /* Text structurally expands out wide */
}

/* 3. Automated Pink Theme Counter-Balance */
body.pink-mode footer p:hover {
    text-shadow:
        -3px -3px 0px rgba(0, 151, 238, 0.8),
        3px 3px 0px rgba(255, 0, 127, 0.8),
        0px 0px 20px rgba(255, 180, 210, 0.6) !important;
}

/* --- CLICK RIPPLE SHOCKWAVE STYLING --- */
.pfp-wrapper {
    /* REMOVED overflow: hidden; to prevent any edge clipping */
    overflow: visible !important;
}

.click-ripple {
    position: absolute;
    width: 2px;
    height: 2px;
    background: radial-gradient(circle, #ffffff 0%, rgba(0, 151, 238, 0.8) 40%, transparent 70%);

    /* FIX: Added border-radius to the ripple itself to match your image style */
    border-radius: 25px;

    pointer-events: none;
    transform: translate(-50%, -50%) scale(1);
    animation: rippleBurst 0.6s cubic-bezier(0.1, 0.8, 0.3, 1) forwards;
    z-index: 2;
}

@keyframes rippleBurst {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(250);
        /* Smoothly matches the wrapper bounds */
        opacity: 0;
    }
}

/* Automated Pink Mode Core Swap */
body.pink-mode .click-ripple {
    background: radial-gradient(circle, #ffffff 0%, rgba(255, 0, 127, 0.8) 40%, transparent 70%);
}

/* --- COMMISSION STATUS BADGE --- */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 10px auto 20px auto;
    backdrop-filter: blur(5px);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.open {
    background-color: #2ecc71;
    box-shadow: 0 0 10px #2ecc71;
}

.status-dot.closed {
    background-color: #e74c3c;
    box-shadow: 0 0 10px #e74c3c;
}


/* --- TESTIMONIALS SECTION --- */
.testimonials {
    margin: 60px auto;
    max-width: 600px;
    padding: 0 20px;
}

.testimonials h3 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: center;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #e0e0e0;
}

.testimonial-card span {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
}


#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

/* --- CONTACT FORM LAYOUT --- */
.contact-section {
    max-width: 500px;
    margin: 40px auto;
    padding: 0 20px;
    text-align: left;
}

.contact-section h2,
.contact-section p {
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #bbb;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #00d4ff;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: none;
    /* Keeps custom pointer rules */
}

/* Status Notifications styling */
.form-status {
    margin-top: 20px;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.form-status.success {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.form-status.error {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

.form-status.processing {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
}

/* --- ANIMATED RAINBOW SUPPORT LINK --- */
.rainbow-support-link {
    font-weight: 800 !important;
    /* Bold font weighting structural thickness */
    font-size: 1.05rem;
    text-decoration: none !important;
    /* Removes standard default lines */

    /* Create the rainbow pattern mesh matrix */
    background: linear-gradient(to right,
            #ff0055, #00d4ff, #00ff66, #ffcc00, #ff0055);
    background-size: 400% auto;

    /* Clip background layer to font stroke paths */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;

    /* Animation tracking clock loop configuration */
    animation: rainbowShift 4s linear infinite;
    transition: filter 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

/* Bright neon glowing flare enhancement when mouse is hovering */
.rainbow-support-link:hover {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.8));
    transform: scale(1.05);
}

/* Linear horizontal scrolling background shift animation frame engine */
@keyframes rainbowShift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 400% center;
    }
}

/* --- INTERACTIVE DANCING & GLOWING H1 LETTERS --- */
header h1 {
    display: inline-block;
    white-space: nowrap;
    /* FIXED: Prevent container boundaries from clipping your layout effects */
    overflow: visible !important;
    /* FIXED: Add top/bottom padding so the bouncy scaling text has room to breathe */
    padding: 20px 10px;
    margin: 0 auto;
}

/* Individual letter tracking settings */
header h1 span {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        text-shadow 0.3s ease,
        color 0.3s ease;
    will-change: transform;
}

/* Hover physics applied to every individual letter block */
header h1 span:hover {
    color: #ffffff;
    /* Moves the letter up dynamically */
    transform: translateY(-12px) scale(1.2);

    /* Emits a high-intensity multi-layered neon glow aura */
    text-shadow: 0 0 15px #00d4ff,
        0 0 30px #00d4ff,
        0 0 45px #00d4ff,
        0 0 60px #ff007f;
}

/* FIXED: Ensure the main navigation header box doesn't squash the text glow layer */
header {
    overflow: visible !important;
    position: relative;
    z-index: 10;
}

/* --- LIVE STATUS PAGE ARCHITECTURE --- */
.status-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Base card styling matching your dark palette */
.current-operation-card,
.queue-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    backdrop-filter: blur(10px);
}

.current-operation-card h2,
.queue-card h2 {
    font-size: 1.6rem;
    margin: 0 0 4px 0;
    color: #fff;
}

.operation-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin: 0 0 25px 0;
}

/* --- PROGRESS TRACK METER --- */
.progress-bar-wrapper {
    margin-bottom: 30px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 8px;
    font-weight: 600;
}

.percentage-readout {
    color: #00d4ff;
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.4);
}

.progress-track-bg {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.progress-fill-neon {
    height: 100%;
    background: linear-gradient(90deg, #ff007f, #00d4ff);
    border-radius: 6px;
    box-shadow: 0 0 12px #00d4ff;
    position: relative;
}

/* Live stats grid row layout */
.operation-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.op-stat {
    text-align: center;
}

.op-num {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.op-lbl {
    font-size: 0.8rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pulsing-text-green {
    color: #2ecc71;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

/* --- QUEUE PIPELINE DATA TABLE --- */
.table-responsive-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.queue-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.queue-table th {
    padding: 14px 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.queue-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Highlighting active production rendering row */
.queue-table tr.row-active td {
    background: rgba(0, 212, 255, 0.02);
    color: #fff;
}

/* Status state badging tags */
.badge {
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.phase-rendering {
    background: rgba(0, 212, 255, 0.15);
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.phase-posing {
    background: rgba(255, 0, 127, 0.15);
    color: #ff007f;
    border: 1px solid rgba(255, 0, 127, 0.3);
}

.phase-queued {
    background: rgba(255, 255, 255, 0.05);
    color: #aaa;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile table adjustment constraints */
@media (max-width: 580px) {
    .operation-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .queue-table th,
    .queue-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   LIVE STATUS PAGE ARCHITECTURE & SKIN
   ========================================================================== */

/* ==========================================================================
   LIVE STATUS PAGE ARCHITECTURE & SKIN (SOLID NON-TRANSPARENT VERSION)
   ========================================================================== */

/* Layout structure optimization */
.status-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* Base card layout container matching the homepage */
.current-operation-card, 
.queue-card {
    /* FIXED: Complete solid non-transparent background block */
    background: #12141c !important; 
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px;
    text-align: left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}

/* Interaction float states */
.current-operation-card:hover, 
.queue-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.05);
}

.current-operation-card h2, 
.queue-card h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0 0 6px 0;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.operation-subtitle {
    font-size: 0.9rem;
    color: #777777;
    margin: 0 0 30px 0;
    font-weight: 500;
}

/* --- PROGRESS METER SYSTEM --- */
.progress-bar-wrapper {
    margin-bottom: 35px;
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #cccccc;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.percentage-readout {
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.progress-track-bg {
    width: 100%;
    height: 14px;
    /* FIXED: Solid channel track background color */
    background: #1b1e29 !important;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.progress-fill-neon {
    height: 100%;
    background: linear-gradient(90deg, #ff007f, #00d4ff);
    border-radius: 20px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
    position: relative;
}

/* Operation dashboard stats row layout grid */
.operation-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 30px;
}

.op-stat {
    text-align: center;
}

.op-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.op-lbl {
    font-size: 0.8rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.pulsing-text-green {
    color: #2ecc71;
    text-shadow: 0 0 12px rgba(46, 204, 113, 0.4);
}

/* --- PRODUCTION DATA SPREADSHEET TABLING --- */
.table-responsive-wrapper {
    overflow-x: auto;
    margin-top: 25px;
    border-radius: 8px;
}

.queue-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.queue-table th {
    padding: 16px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
    color: #888888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
}

.queue-table td {
    padding: 18px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: #e0e0e0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Active rendering row glow treatment */
.queue-table tr.row-active td {
    /* FIXED: Solid active row accent highlight color */
    background: #16222f !important;
    color: #ffffff;
    font-weight: 600;
}

/* Status badging pill anchors */
.badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    text-align: center;
}

.phase-rendering { 
    background: rgba(0, 212, 255, 0.1); 
    color: #00d4ff; 
    border: 1px solid rgba(0, 212, 255, 0.25);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
}

.phase-posing { 
    background: rgba(255, 0, 127, 0.1); 
    color: #ff007f; 
    border: 1px solid rgba(255, 0, 127, 0.25);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.15);
}

.phase-queued { 
    background: rgba(255, 255, 255, 0.03); 
    color: #aaaaaa; 
    border: 1px solid rgba(255, 255, 255, 0.08); 
}

/* Mobile viewport layout engine adjustments */
@media (max-width: 600px) {
    .status-container {
        margin: 30px auto;
        gap: 20px;
    }

    .current-operation-card, 
    .queue-card {
        padding: 25px;
    }

    .operation-stats-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .queue-table th,
    .queue-table td {
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .badge {
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}
/* --- ABOUT PAGE MEMBERSHIP SHOWCASE LAYOUT --- */
.membership-showcase-container {
    max-width: 800px;
    margin: 50px auto 20px auto;
    padding: 0 20px;
}

.section-badge-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: #ffffff;
}

.membership-flex-row {
    display: flex;
    gap: 20px;
}

.membership-promo-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px !important;
}

.lifetime-highlight-border {
    border-color: rgba(0, 212, 255, 0.2) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.05);
}

.tier-name-badge {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #ffffff;
}

.tier-cost-line {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    margin-bottom: 12px;
}

.tier-desc-short {
    font-size: 0.88rem;
    color: #aaaaaa;
    line-height: 1.4;
    margin: 0 0 15px 0;
    text-align: left;
}

.tier-perks-bullets {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
    width: 100%;
}

.tier-perks-bullets li {
    font-size: 0.85rem;
    color: #e0e0e0;
    padding: 6px 0 6px 16px;
    position: relative;
    text-align: left;
}

.tier-perks-bullets li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff66;
    font-weight: bold;
}

.btn-membership-link {
    width: 100%;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    margin-top: auto;
    transition: all 0.2s ease;
}

.btn-membership-link:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Mobile wrap engine override rules */
@media (max-width: 680px) {
    .membership-flex-row {
        flex-direction: column;
        gap: 20px;
    }
}
/* Construction text formatting box */
.construction-notice-banner {
    background: rgba(0, 212, 255, 0.03);
    border-left: 4px solid #00d4ff;
    padding: 15px 20px;
    border-radius: 4px 12px 12px 4px;
    margin-bottom: 20px;
}

.construction-notice-banner p {
    margin: 0;
    font-size: 0.92rem;
    color: #cccccc;
    line-height: 1.5;
}
/* --- LIVE ACTION ROSTER BOX --- */
.live-action-roster-box {
    background: #12141c !important; /* Solid non-transparent slate background */
    border: 1px dashed rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.live-action-roster-box:hover {
    border-color: #00d4ff;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.action-glow-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 8px #00d4ff);
    animation: iconFloat 3s infinite ease-in-out;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.live-action-roster-box h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.live-action-roster-box p {
    font-size: 0.92rem;
    color: #888888;
    max-width: 500px;
    margin: 0 auto 25px auto;
    line-height: 1.5;
}

.btn-verify-live {
    display: inline-block;
    background: #ffffff !important;
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-verify-live:hover {
    background: #00d4ff !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px #00d4ff;
}
/* ==========================================================================
   DECORATED CYBER STATUS COMPONENT STYLES
   ========================================================================== */

/* --- ADVANCED TECH TERMINAL CARD --- */
.terminal-card {
    background: #0d0f14 !important; /* Solid dark non-transparent obsidian gray */
    border: 1px solid #1f2430;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    margin-bottom: 5px;
}

.terminal-header {
    background: #161a24;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #1f2430;
    position: relative;
}

.terminal-dots {
    display: flex;
    gap: 8px;
}

.terminal-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27c93f; }

.terminal-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #6c7a9c;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.terminal-body {
    padding: 24px;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.terminal-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.term-lbl { color: #8a99ad; font-weight: bold; }
.term-val { color: #ffffff; }
.term-val.val-online { color: #00ff66; text-shadow: 0 0 10px rgba(0, 255, 102, 0.4); }
.term-val.val-processing { color: #00d4ff; text-shadow: 0 0 10px rgba(0, 212, 255, 0.4); }

/* --- PREMIUM INTERACTIVE GLOW FEATURES --- */
.decoration-border {
    border: 1px solid rgba(0, 212, 255, 0.12) !important;
}

.neon-text-title {
    text-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.pulsing-cyan {
    background: rgba(0, 212, 255, 0.1) !important;
    color: #00d4ff !important;
    border: 1px solid rgba(0, 212, 255, 0.25) !important;
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}

.premium-glow-box {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(0, 212, 255, 0.02) !important;
    border: 1px solid rgba(0, 212, 255, 0.08) !important;
    border-radius: 10px;
    padding: 20px !important;
}

.notice-icon-badge {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px #00d4ff);
}

/* --- CYBER GRID ACTION PANEL --- */
.custom-cyber-grid {
    background: #0f111a !important; /* Solid dark canvas layer background */
    background-image: linear-gradient(rgba(255,255,255,0.01) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.01) 1px, transparent 1px) !important;
    background-size: 20px 20px !important;
    border: 1px solid rgba(0, 212, 255, 0.2) !important;
}

.neon-btn-glow {
    background: #ffffff !important;
    color: #000000 !important;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.neon-btn-glow:hover {
    background: #00d4ff !important;
    color: #ffffff !important;
    box-shadow: 0 0 20px #00d4ff !important;
}
