/*
Theme Name:     Texian Capital
Theme URI:      https://texiancapital.com
Description:    A minimalistic WordPress theme designed for single-page websites with Elementor compatibility. Features clean header/footer layout, SEO optimization, and social media integration.
Author:         Anonymous
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    texiancapital
Tags:           custom-header, custom-footer, custom-logos, elementor
Requires at least: 5.0
Tested up to: 6.3
Requires PHP: 7.4
*/

/**
 * Texian Capital Theme Styles
 * Header and Footer focused styling for single-page Elementor sites
 */

/* Create boxed layout container */
body {
    background-color: #D3D3D3;
    margin: 0;
    padding: 0;
    font-family: 'League Spartan', Arial, sans-serif !important;
    font-weight: 400;
    line-height: 1.6;
}

/* Main boxed container wrapper */
.texiancapital-boxed-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    background-color: #ffffff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Hide default WordPress headers and footers */
#header,
.site-header,
header[id="header"],
#footer,
.site-footer,
footer[id="footer"],
.wp-site-blocks footer {
    display: none !important;
}

/* Hide default WordPress separators */
body hr,
.wp-block-separator,
.wp-block-spacer,
body > hr,
main > hr,
.entry-content > hr:first-child,
.site-content > hr:first-child {
    display: none !important;
}

/* ============================================================================
   HEADER STYLES
   ============================================================================ */

.texiancapital-custom-header {
    background-color: #424242;
    padding: 40px 0;
    border-bottom: none;
    position: relative;
    z-index: 100;
    flex-shrink: 0;
    overflow: hidden;
}

.texiancapital-header-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 180px;
}

/* Left Container - Main Logo (now centered) */
.texiancapital-left-container {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Header Background Image */
.texiancapital-left-container::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -310px;
    width: 400px;
    height: 650px;
    background-image: url('./assets/images/header-bg-left.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left top;
    opacity: 0.8;
    z-index: 1;
}

.texiancapital-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    gap: 20px;
}

/* Custom Logo Support */
.custom-logo-link {
    display: inline-block;
    line-height: 0;
    transition: transform 0.3s ease;
}

.custom-logo-link:hover {
    transform: scale(1.05);
}

.custom-logo {
    height: 600px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
}

/* Logo Tagline */
.texiancapital-logo-tagline {
    color: #ffffff;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    white-space: nowrap;
}

/* Site Title Fallback */
.site-title {
    margin: 0;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

.site-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-title a:hover {
    color: #D4AF37;
}

/* Right Container - Shows when navigation menu exists */
.texiancapital-right-container {
    display: flex;
    align-items: center;
}

/* Hide right container if no navigation menu */
.texiancapital-right-container:empty {
    display: none;
}

/* ============================================================================
   SIMPLE STICKY NAVIGATION SYSTEM
   ============================================================================ */

/* Main Navigation Container */
.main-navigation {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1140px;
    background: transparent;
    z-index: 1000;
    padding: 8px 0;
    transition: all 0.3s ease;
}

/* Navigation when scrolled - add background and reduce size */
.main-navigation.scrolled {
    background: transparent;
    backdrop-filter: blur(8px) saturate(180%);
    padding: 4px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    width: calc(100% - 20px);
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: rgba(66, 66, 66, 0.98);
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 48px;
    height: 48px;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
    border-radius: 4px;
}

.menu-toggle:focus {
    outline: 2px solid #C49B3B;
    outline-offset: 2px;
}

/* Hamburger Lines */
.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation when Active */
.menu-toggle-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Navigation Menu Wrapper */
.nav-menu-wrapper {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
}

/* Navigation Menu Styles */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

/* Add caret to menu items with submenus on desktop */
.nav-menu .menu-item-has-children > a::after {
    content: '▼';
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 25px;
    transition: all 0.3s ease;
    display: block;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Menu items when navigation is scrolled - more compact */
.main-navigation.scrolled .nav-menu a {
    padding: 6px 20px;
    font-size: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.nav-menu a:hover,
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a {
    color: #C49B3B;
}

.nav-menu a:focus {
    outline: 2px solid #C49B3B;
    outline-offset: 2px;
}

/* Dropdown Menu Support */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(66, 66, 66, 0.98);
    backdrop-filter: blur(15px);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.nav-menu .sub-menu a {
    color: #ffffff;
    padding: 10px 20px;
    font-size: 14px;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu .sub-menu a:hover {
    color: #C49B3B;
    background: rgba(196, 155, 59, 0.2);
}

/* Navigation positioned within header area - no body padding needed */

/* ============================================================================
   RESPONSIVE NAVIGATION
   ============================================================================ */

/* Tablet and Mobile Styles */
@media screen and (max-width: 1024px) {
    /* Make navigation full width and back to top on mobile */
    .main-navigation {
        top: 0;
        left: 0;
        right: 0;
        transform: none;
        max-width: none;
        padding: 12px 0;
    }
    
    .menu-toggle {
        display: flex;
        top: 12px;
        right: 16px;
    }
    
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(20px);
        padding: 70px 0 20px;
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        justify-content: flex-start;
    }
    
    .nav-menu-wrapper.nav-menu-open {
        right: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* Parent menu items with submenus */
    .nav-menu .menu-item-has-children > a {
        position: relative;
        padding-right: 40px;
    }
    
    /* Submenu toggle button */
    .submenu-toggle {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 12px;
        width: 40px;
        height: 40px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s ease;
        font-family: inherit;
    }
    
    .submenu-toggle:focus {
        outline: 2px solid #C49B3B;
        outline-offset: 2px;
    }
    
    .submenu-toggle.submenu-open {
        transform: translateY(-50%) rotate(180deg);
    }
    
    /* Hide desktop caret on mobile */
    .nav-menu .menu-item-has-children > a::after {
        display: none;
    }
    
    .nav-menu a {
        color: #ffffff;
        padding: 15px 0;
        text-align: left;
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu .current-menu-item > a,
    .nav-menu .current_page_item > a {
        color: #C49B3B;
        padding-left: 10px;
    }
    
    /* Dropdown menus in mobile - hidden by default */
    .nav-menu .sub-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        transition: all 0.3s ease;
    }
    
    /* Show submenu when parent has submenu-open class */
    .nav-menu .menu-item-has-children.submenu-open .sub-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }
    
    .nav-menu .sub-menu a {
        padding: 10px 0 10px 20px;
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-menu .sub-menu a:hover {
        color: #C49B3B;
        padding-left: 30px;
    }
    
    /* Mobile menu overlay */
    .nav-menu-active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }
    
    /* Prevent body scroll when mobile menu is open */
    body.nav-menu-open {
        overflow: hidden;
    }
}

/* Site Description */
.site-description p {
    margin: 0;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 14px;
    color: #666666;
    font-style: italic;
    text-align: right;
    max-width: 300px;
}

/* ============================================================================
   PAGE CONTENT STYLES
   ============================================================================ */

.texiancapital-page-content {
    background-color: #ffffff;
    flex: 1;
    min-height: 400px;
}

/* ============================================================================
   PAGE/POST INNER WRAPPERS
   ============================================================================ */

.page-content-inner {
    background-color: #EEEAEA;
    padding: 24px 16px;
}
.single-content-inner {
    padding: 24px 16px;
}

/* Ensure Elementor content matches boxed width */
.elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 1140px !important;
}

/* Elementor Compatibility */
.elementor-page .texiancapital-page-content {
    padding: 0;
    background-color: #EEEAEA;
}

.elementor-page .page-content-wrapper {
    width: 100%;
}

.elementor-element {
    --widgets-spacing-row: 2px !important;
}

/* Default content styling for non-Elementor pages */
.texiancapital-page-content .entry-content,
.texiancapital-page-content .page-content {
    padding: 40px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

/* ============================================================================
   TYPOGRAPHY - HEADINGS
   ============================================================================ */

/* Main theme heading color throughout the site */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6,
.elementor-heading-title,
.elementor-widget-heading h1,
.elementor-widget-heading h2,
.elementor-widget-heading h3,
.elementor-widget-heading h4,
.elementor-widget-heading h5,
.elementor-widget-heading h6 {
    color: #C49B3B !important;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
}

/* Specific heading sizes */
h1, .h1, .entry-content h1, .page-content h1 {
    font-size: 36px;
}

h2, .h2, .entry-content h2, .page-content h2 {
    font-size: 30px;
}

h3, .h3, .entry-content h3, .page-content h3 {
    font-size: 24px;
}

h4, .h4, .entry-content h4, .page-content h4 {
    font-size: 20px;
}

h5, .h5, .entry-content h5, .page-content h5 {
    font-size: 18px;
}

h6, .h6, .entry-content h6, .page-content h6 {
    font-size: 16px;
}

/* ============================================================================
   FOOTER STYLES
   ============================================================================ */

.texiancapital-custom-footer {
    background-color: #A8A8A8;
    color: #ffffff;
    padding: 40px 0 20px;
    border-top: 3px solid #C49B3B;
    position: relative;
    z-index: 100;
    margin-top: auto;
    flex-shrink: 0;
}

.texiancapital-footer-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Footer Left - Location and Contact Info */
.texiancapital-footer-left {
    flex: 1;
    display: flex;
    align-items: center;
}

.footer-contact-info p {
    margin: 0;
    font-family: 'League Spartan', Arial, sans-serif;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
}

/* Footer Right - Footer Logo */
.texiancapital-footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
}

.footer-custom-logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
}

.footer-logo-link {
    display: inline-block;
    line-height: 0;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

/* ============================================================================
   ERROR 404 STYLES
   ============================================================================ */

.error-404-content {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.error-404-container {
    background-color: #f8f8f8;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.error-number h1 {
    font-size: 120px;
    font-weight: 700;
    color: #C49B3B;
    margin: 0;
    font-family: 'League Spartan', Arial, sans-serif;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.error-message h2 {
    font-size: 32px;
    color: #473816;
    margin: 20px 0;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
}

.error-message p {
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 30px;
    font-family: 'League Spartan', Arial, sans-serif;
}

.error-actions {
    margin-top: 30px;
}

.error-actions a {
    display: inline-block;
    background-color: #C49B3B;
    color: #ffffff;
    padding: 15px 30px;
    text-decoration: none;
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.error-actions a:hover {
    background-color: #a01a1f;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.person-name {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: bold !important;
    color: #fff !important;
}
.person-title {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: bold !important;
    color: #c49b3b !important;
}

.person-email {
    font-family: 'League Spartan', Arial, sans-serif;
    font-weight: bold !important;
    color: #c49b3b !important;
    position: relative;
    padding-left: 25px;
    display: inline-flex;
    align-items: center;
}

.person-email::before {
    content: '✉';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #c49b3b;
    font-size: 18px;
    line-height: 1;
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

/* Desktop and larger screens */
@media (min-width: 1200px) {
    .texiancapital-boxed-wrapper {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    }
    
    .texiancapital-header-container,
    .texiancapital-footer-container {
        padding: 0 40px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .texiancapital-boxed-wrapper {
        max-width: 100%;
        border-left: none;
        border-right: none;
        box-shadow: none;
    }
    
    .texiancapital-header-container,
    .texiancapital-footer-container {
        padding: 0 20px;
    }
    
    .texiancapital-custom-header {
        padding: 30px 0;
    }
    
    .texiancapital-header-container {
        min-height: 150px;
    }
    
    .custom-logo {
        height: 100px;
        max-width: 350px;
    }
    
    .texiancapital-logo-tagline {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .site-title {
        font-size: 40px;
        letter-spacing: 2px;
    }
    
    /* Adjust background image for tablet */
    .texiancapital-left-container::before {
        width: 320px;
        height: 320px;
        left: -222px;
        top: -30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .texiancapital-custom-header {
        padding: 25px 0;
    }
    
    .texiancapital-header-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        min-height: 120px;
        padding: 20px 15px;
        justify-content: center;
    }
    
    .texiancapital-left-container {
        width: 100%;
        justify-content: center;
    }
    
    .custom-logo {
        height: 240px;
        max-width: 280px;
    }
    
    .texiancapital-logo-tagline {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .site-title {
        font-size: 32px;
        letter-spacing: 1px;
    }
    
    /* Adjust background image for mobile */
    .texiancapital-left-container::before {
        width: 250px;
        height: 250px;
        left: -15px;
        top: -45px;
        opacity: 0.6;
    }
    
    /* Footer Mobile */
    .texiancapital-custom-footer {
        padding: 30px 0 20px;
    }
    
    .texiancapital-footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 20px 15px;
    }
    
    .texiancapital-footer-left,
    .texiancapital-footer-right {
        flex: none;
        width: 100%;
        justify-content: center;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-custom-logo {
        height: 60px;
        max-width: 250px;
    }
    
    /* 404 Mobile */
    .error-404-content {
        padding: 40px 15px;
    }
    
    .error-404-container {
        padding: 40px 20px;
    }
    
    .error-number h1 {
        font-size: 80px;
    }
    
    .error-message h2 {
        font-size: 24px;
    }
    
    .error-message p {
        font-size: 14px;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .texiancapital-header-container,
    .texiancapital-footer-container {
        padding: 15px 10px;
    }
    
    .texiancapital-custom-header {
        padding: 20px 0;
    }
    
    .custom-logo {
        height: 240px;
        max-width: 220px;
    }
    
    .texiancapital-logo-tagline {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
    
    .site-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .footer-custom-logo {
        height: 50px;
        max-width: 200px;
    }
    
    .footer-contact-info p {
        font-size: 16px;
    }
    
    .error-number h1 {
        font-size: 60px;
    }
    
    .error-message h2 {
        font-size: 20px;
    }
    
    .error-actions a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ============================================================================
   PRINT STYLES
   ============================================================================ */

@media print {
    .texiancapital-custom-header,
    .texiancapital-custom-footer {
        background-color: white !important;
        color: black !important;
        border: 1px solid #000 !important;
    }
    
    .texiancapital-boxed-wrapper {
        box-shadow: none !important;
        border: none !important;
    }
    
    /* Hide navigation and complex elements in print */
    .main-navigation,
    .menu-toggle,
    .nav-menu-wrapper {
        display: none !important;
    }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */

/* Focus states for keyboard navigation */
.custom-logo-link:focus,
.site-title a:focus {
    outline: 2px solid #C49B3B;
    outline-offset: 2px;
}

/* Screen reader text */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .texiancapital-custom-header {
        border-bottom: 5px solid #000000;
    }
    
    .texiancapital-custom-footer {
        border-top: 5px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
