/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    transition: background-color 0.5s ease, color 0.5s ease;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
}

/* Layout */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Sophisticated Always-Present Header */
header {
    position: relative;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

/* Header background states */
.light-theme header {
    background: transparent;
    border-bottom-color: rgba(173, 168, 182, 0.15);
}

.dark-theme header {
    background: transparent;
    border-bottom-color: rgba(168, 178, 200, 0.15);
}

/* Removed scroll enhancement - static header */

/* Static logo size */
header #logo {
    height: 100px;
    transition: all 0.3s ease;
}

/* Navigation refinements */
header nav a {
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.light-theme header nav a::after {
    background: var(--accent-color);
}

.dark-theme header nav a::after {
    background: var(--accent-color);
}

header nav a:hover::after,
header nav a.active::after {
    width: 100%;
}

/* No special content spacing needed for static header */
main {
    padding-top: 0;
}

/* Sophisticated mobile navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 60;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 3px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.light-theme .mobile-menu-toggle span {
    background: var(--text-primary);
}

.dark-theme .mobile-menu-toggle span {
    background: var(--text-primary);
}

/* Mobile menu toggle animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile navigation overlay */
.mobile-nav-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 55;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.light-theme .mobile-nav-overlay {
    background: rgba(248, 248, 248, 0.95);
}

.dark-theme .mobile-nav-overlay {
    background: rgba(26, 32, 51, 0.95);
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.mobile-nav-menu a {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 1rem 0;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-overlay.active .mobile-nav-menu a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-menu a:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-menu a:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-menu a:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-menu a:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-menu a:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-menu a:nth-child(6) { transition-delay: 0.6s; }

/* Responsive header adjustments */
@media (max-width: 768px) {
    header {
        padding: 1rem 0;
    }
    
    header #logo {
        height: 80px;
    }
    
    header nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    main {
        padding-top: 0;
    }
}

/* Theme Variables - Premium Dark Indigo */
:root {
    --accent-color: #A8B2C8;
    --primary-indigo: #1e3a8a;
    --secondary-indigo: #1e40af;
    --tertiary-indigo: #1d4ed8;
    --text-light: #F8F8F8;
    --text-secondary: #E5E7EB;
    --transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Light Theme: Monolith */
.light-theme { 
    background-color: #F4F4F4; 
    color: #1B1B1B; 
}

.light-theme .hero-subtext,
.light-theme .section-subtext,
.light-theme .case-description,
.light-theme .prose-text,
.light-theme .form-subtext {
    color: #5c5a61;
}

.light-theme .nav-link {
    color: #5c5a61;
    transition: var(--transition);
}

.light-theme .nav-link:hover {
    color: #1B1B1B;
    transform: translateY(-1px);
}

.light-theme .nav-active {
    color: var(--accent-color) !important;
}

.light-theme .glass-card { 
    background-color: rgba(255, 255, 255, 0.5); 
    border: 1px solid #ADA8B6; 
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05); 
}

.light-theme .glass-card:hover { 
    background-color: rgba(255, 255, 255, 0.7); 
    border-color: #BEB8A2; 
}

.light-theme .form-input {
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ADA8B6;
    color: #1B1B1B;
}

.light-theme .form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(168, 178, 200, 0.1);
}

/* Dark Theme: Deep Navy */
.dark-theme { 
    background: linear-gradient(135deg, #0a0f1c 0%, #1a1f2e 50%, #2a2f3e 100%);
    color: #E8E8E8; 
}

.dark-theme .hero-subtext,
.dark-theme .section-subtext,
.dark-theme .case-description,
.dark-theme .prose-text,
.dark-theme .form-subtext {
    color: #B8B8B8;
}

.dark-theme .nav-link {
    color: #B8B8B8;
    transition: var(--transition);
}

.dark-theme .nav-link:hover {
    color: #E8E8E8;
    transform: translateY(-1px);
}

.dark-theme .nav-active {
    color: var(--accent-color) !important;
}

.dark-theme .glass-card { 
    background-color: rgba(26, 31, 46, 0.85); 
    border: 1px solid rgba(168, 178, 200, 0.15); 
}

.dark-theme .glass-card:hover { 
    background-color: rgba(26, 31, 46, 0.95); 
    border-color: rgba(168, 178, 200, 0.25); 
}

.dark-theme .form-input {
    background-color: rgba(26, 31, 46, 0.9);
    border: 1px solid rgba(168, 178, 200, 0.2);
    color: #E8E8E8;
}

.dark-theme .form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(168, 178, 200, 0.15);
}

/* Accent Color */
.text-accent {
    color: var(--accent-color);
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-cta {
    background-color: var(--accent-color);
    color: #111;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(196, 163, 90, 0.2);
    border: 1px solid var(--accent-color);
}

.primary-cta:hover {
    background-color: #F8F8F8;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 163, 90, 0.4);
    border-color: var(--accent-color);
}

.secondary-cta {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(168, 178, 200, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.light-theme .secondary-cta {
    background-color: rgba(248, 248, 248, 0.1);
}

.dark-theme .secondary-cta {
    background-color: rgba(26, 32, 51, 0.3);
}

.secondary-cta:hover {
    background-color: var(--accent-color);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(196, 163, 90, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Text Links */
.text-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    border-bottom-color: var(--accent-color);
}

/* Cards */
.glass-card {
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border-radius: 0.75rem;
}

.glass-card:hover {
    backdrop-filter: blur(25px);
    border-color: rgba(168, 178, 200, 0.3);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.case-study-card {
    position: relative;
    overflow: hidden;
}

.case-study-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, 
        rgba(255, 255, 255, 0) 40%, 
        rgba(255, 255, 255, 0.2) 50%, 
        rgba(255, 255, 255, 0) 60%);
    transform: skewX(-25deg);
    transition: left 0.8s ease-in-out;
}

.case-study-card:hover::after {
    left: 150%;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

.service-card:hover {
    backdrop-filter: blur(30px);
    border-color: rgba(168, 178, 200, 0.4);
}

.service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-color);
    color: #111;
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.service-description {
    color: #6B7280;
}

.dark-theme .service-description {
    color: #9CA3AF;
}

/* Logo styling */
#logo {
    transition: var(--transition);
    cursor: pointer;
    height: 120px;
    width: auto;
    filter: none;
}



#logo:hover {
    opacity: 0.9;
    transform: scale(1.02);
    filter: brightness(1.2) contrast(1.15);
}

.light-theme #logo:hover {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35)) brightness(1.15) contrast(1.2);
}

.dark-theme #logo:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) brightness(1.25) contrast(1.25);
}

/* Panel shine effects */
.light-theme .glass-card::after { 
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 40%, rgba(190, 184, 162, 0.3) 50%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    transition: left 0.5s;
}

.dark-theme .glass-card::after { 
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 40%, rgba(190, 184, 162, 0.1) 50%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    transition: left 0.5s;
}

.glass-card:hover::after {
    left: 100%;
}

/* Forms */
.form-input {
    transition: var(--transition);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.light-theme .form-input::placeholder {
    color: #D1D5DB;
}

/* Briefing Room Specific */
.briefing-kit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}

.briefing-kit:hover {
    backdrop-filter: blur(25px);
    border-color: rgba(168, 178, 200, 0.3);
}

.unlock-btn {
    min-width: 120px;
    white-space: nowrap;
    text-align: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .briefing-kit {
        flex-direction: column;
        text-align: left;
    }
    
    .briefing-kit .flex.items-center.justify-start {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .unlock-btn {
        width: 100%;
    }
}

.kit-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: top;
    flex-shrink: 0;
}

.tier-heading {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(168, 178, 200, 0.4);
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.05em;
}

.tier-description {
    color: var(--section-subtext);
    font-size: 1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Theme Toggle */
.theme-toggle, .theme-toggle-header {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.theme-toggle {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    z-index: 100;
    width: 3rem;
    height: 3rem;
}

.theme-toggle-header {
    background: rgba(168, 178, 200, 0.1);
    border: 1px solid rgba(168, 178, 200, 0.2);
}

.theme-toggle-header:hover, .theme-toggle:hover {
    transform: scale(1.05);
    background-color: rgba(168, 178, 200, 0.2) !important;
}

/* Chatbase Integration Styles - Remove old chatbot styles */
/* The Chatbase widget will have its own styling */

.light-theme .theme-toggle {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.dark-theme .theme-toggle {
    background-color: rgba(255, 255, 255, 0.1);
}

.theme-toggle:hover {
    transform: scale(1.05);
    background-color: rgba(168, 178, 200, 0.2) !important;
}

.theme-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.light-theme #sun-icon {
    display: block;
    color: #F59E0B;
}

.light-theme #moon-icon {
    display: none;
}

.dark-theme #sun-icon {
    display: none;
}

.dark-theme #moon-icon {
    display: block;
    color: #E5E7EB;
}

/* Enhanced button styles */
.text-link {
    position: relative;
    transition: var(--transition);
    group: hover;
}

.text-link:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        min-width: 200px;
    }
    
    .briefing-kit {
        flex-direction: column;
        text-align: center;
    }
    
    .kit-thumb {
        width: 80px;
        height: 80px;
        margin: 0 auto 1rem;
    }
    
    h1 {
        font-size: 3rem !important;
        line-height: 1.1;
    }
    
    .hero-subtext {
        font-size: 1.125rem !important;
        margin-bottom: 2rem !important;
    }
    
    .min-w-\[240px\] {
        min-width: 200px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Blueprint Canvas Styling */
#blueprint-canvas {
    opacity: 0.3;
}

.dark-theme #blueprint-canvas {
    opacity: 0.2;
}

/* Footer styling for Monolith theme */
.light-theme .footer-link { 
    color: #5c5a61; 
}

.light-theme .footer-link:hover { 
    color: #1B1B1B; 
}

.light-theme .copyright { 
    color: #888; 
}

.dark-theme .footer-link { 
    color: #ADA8B6; 
}

.dark-theme .footer-link:hover { 
    color: #FFFFFF; 
}

.dark-theme .copyright { 
    color: #555; 
}

/* Enhanced Form Styles */
.form-input.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.field-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Force custom note text color in light theme */
.light-theme .bg-blue-50 p,
.light-theme .bg-blue-50 strong {
    color: #101212 !important;
}

.submit-btn:disabled,
.booking-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.submit-btn.loading,
.booking-submit-btn.loading {
    background-color: #6b7280;
}

/* Asset links styling */
/* Briefing Room Asset Links - Clean and Professional */
.asset-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.light-theme .asset-link {
    background: rgba(30, 58, 138, 0.08);
    color: var(--accent-color);
    border-color: rgba(30, 58, 138, 0.15);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.1);
}

.dark-theme .asset-link {
    background: rgba(168, 178, 200, 0.08);
    color: var(--accent-color);
    border-color: rgba(168, 178, 200, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.asset-link:hover {
    transform: translateY(-2px);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.light-theme .asset-link:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.25);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.15);
}

.dark-theme .asset-link:hover {
    background: rgba(168, 178, 200, 0.12);
    border-color: rgba(168, 178, 200, 0.25);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.asset-link img {
    width: 16px;
    height: 16px;
    margin-left: 0.5rem;
}

/* Briefing Room Layout Improvements */
#briefing-room-content {
    padding: 2rem 1rem;
}

#briefing-room-content .glass-card {
    margin-bottom: 1.5rem;
}

#briefing-room-content h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

#briefing-room-content h4 {
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

#briefing-room-content .flex.gap-3 {
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Section spacing */
#briefing-room-content > div > div:first-child {
    margin-bottom: 3rem;
}

/* Briefing Room specific styling to match other pages */
.service-date {
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

/* Cards grid layout matching other pages */
.cards-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    }
}

.form-notification {
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.form-notification.success {
    background-color: #10b981;
    color: white;
}

.form-notification.error {
    background-color: #ef4444;
    color: white;
}

/* Chatbase Integration - Old chatbot styles removed */
/* Chatbase widget will handle its own styling */

/* Stylish Theme Toggle - Bottom Left Corner */
.theme-toggle-fixed {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1000;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.light-theme .theme-toggle-fixed {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(30, 58, 138, 0.2);
    color: #1e3a8a;
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.2);
}

.dark-theme .theme-toggle-fixed {
    background: rgba(42, 47, 62, 0.95);
    border-color: rgba(168, 178, 200, 0.3);
    color: #A8B2C8;
    box-shadow: 0 6px 25px rgba(168, 178, 200, 0.15);
}

.theme-toggle-fixed:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.light-theme .theme-toggle-fixed:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(30, 58, 138, 0.4);
    color: #1d4ed8;
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
}

.dark-theme .theme-toggle-fixed:hover {
    background: rgba(42, 47, 62, 1);
    border-color: rgba(168, 178, 200, 0.5);
    color: #B8C2DC;
    box-shadow: 0 8px 30px rgba(168, 178, 200, 0.25);
}

.theme-toggle-fixed .theme-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.theme-toggle-fixed .theme-icon.hidden {
    opacity: 0;
    transform: rotate(180deg) scale(0.8);
}

.theme-toggle-fixed .theme-icon:not(.hidden) {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Remove old header theme toggle styles */
.theme-toggle-header {
    display: none;
}

/* Ensure chatbot doesn't overlap with theme toggle */
#chatbase-widget-container {
    bottom: 2rem !important;
    right: 2rem !important;
}

/* Print Styles */
@media print {
    .theme-toggle-fixed,
    .theme-toggle {
        display: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .theme-toggle-fixed {
        bottom: 1rem;
        left: 1rem;
        width: 44px;
        height: 44px;
    }
    
    .theme-toggle-fixed .theme-icon {
        width: 18px;
        height: 18px;
    }
}

/* Ensure proper icon visibility and transitions */
.theme-toggle-fixed .theme-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.theme-toggle-fixed .theme-icon.hidden {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(180deg) scale(0.8);
    pointer-events: none;
}

.theme-toggle-fixed .theme-icon:not(.hidden) {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
    pointer-events: auto;
}
