:root {
    --color-bg-dark: #0A0A10;
    --color-primary-cyan: #00FFFF;
    --color-secondary-violet: #8A2BE2;
    --color-accent-silver: #C0C0C0;
    --color-text-light: #E0E0E0;
    --color-text-medium: #A0A0A0;
    --color-border-transparent: rgba(0, 255, 255, 0.1);

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Exo 2', sans-serif;

    --max-width-container: 1200px;
    --section-padding-y: 80px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from subtle effects */
}

.container {
    max-width: var(--max-width-container);
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2; /* Ensure content is above subtle backgrounds */
}

section {
    position: relative;
    z-index: 1; /* For layered sections */
    overflow: hidden; /* Contain effects within section */
}

.section-padding {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-cyan); /* Headings use cyan */
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.4); /* Subtle glow */
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5em;
    line-height: 1.2;
    text-transform: uppercase;
}

h2 {
    font-size: 2.8em;
    text-align: center;
    margin-bottom: 40px;
}

h3 {
    font-size: 1.8em;
    font-weight: 500;
    color: var(--color-accent-silver);
    margin-top: 30px;
    margin-bottom: 15px;
}

h4 {
    font-size: 1.4em;
    font-weight: 500;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

p {
    color: var(--color-text-medium);
    margin-bottom: 15px;
    font-weight: 300;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    font-size: 1.1em;
    color: var(--color-text-light);
}

a {
    color: var(--color-primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: var(--color-secondary-violet);
    text-shadow: 0 0 10px rgba(138, 43, 226, 0.6);
}

.cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(45deg, var(--color-primary-cyan), var(--color-secondary-violet));
    color: var(--color-bg-dark);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1em;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.8), 0 0 40px rgba(138, 43, 226, 0.6);
    background: linear-gradient(45deg, var(--color-secondary-violet), var(--color-primary-cyan));
    color: var(--color-bg-dark);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 16, 0.9); /* Slightly transparent */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border-transparent);
    box-shadow: 0 2px 20px rgba(0, 255, 255, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8em;
    font-weight: 700;
    color: var(--color-primary-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--color-text-medium);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1.05em;
    padding: 5px 0;
    position: relative;
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-cyan), var(--color-secondary-violet));
    transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
    width: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none; /* Hidden by default, shown on mobile */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--color-primary-cyan);
    margin: 5px 0;
    transition: all 0.3s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

body.nav-open .nav-toggle span:nth-child(2) {
    opacity: 1;
}

body.nav-open .nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: url('images/image_14.jpg'); /* Placeholder image for 'video' background */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    animation: backgroundShift 20s infinite alternate; /* Subtle background animation */
}

@keyframes backgroundShift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 16, 0.8) 0%, rgba(10, 10, 16, 0.6) 100%);
    backdrop-filter: blur(3px); /* Subtle blur for effect */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
}

.hero-content h1 {
    font-size: 4.5em;
    margin-bottom: 25px;
    color: var(--color-primary-cyan);
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.hero-content p {
    font-size: 1.4em;
    color: var(--color-accent-silver);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section (Storytelling) */
.about-section {
    background: linear-gradient(180deg, var(--color-bg-dark) 0%, #1a1a2a 100%);
    position: relative;
}

.about-section::before { /* Circuit pattern effect */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 L 0 20" fill="none" stroke="%2300FFFF1A" stroke-width="0.5"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 1;.1;
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    background-color: rgba(10, 10, 16, 0.8);
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4), 0 0 60px rgba(138, 43, 226, 0.3);
}

.about-image {
    width: 100%;
    height: 200px; /* Adjust image height */
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-card:hover .about-image {
    transform: scale(1.05);
}

.about-card-content {
    padding: 25px;
    flex-grow: 1;
}

.about-card-content h3 {
    color: var(--color-primary-cyan);
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5em;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}
.about-card-content p {
    color: var(--color-text-medium);
    font-size: 0.95em;
    margin-bottom: 0;
}


/* Services Section (Pricing Table) */
.services-section {
    background-color: #0d0d15;
    position: relative;
    border-top: 1px solid var(--color-border-transparent);
    border-bottom: 1px solid var(--color-border-transparent);
}

.services-section::before { /* Metallic gradient border top/bottom */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary-cyan), var(--color-secondary-violet), var(--color-primary-cyan), transparent);
    animation: borderGlow 4s infinite alternate;
}
.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-primary-cyan), var(--color-secondary-violet), var(--color-primary-cyan), transparent);
    animation: borderGlow 4s infinite alternate reverse;
}

@keyframes borderGlow {
    0% { opacity: 1;.4; }
    100% { opacity: 1; }
}

.pricing-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pricing-plan {
    background-color: rgba(10, 10, 16, 0.85);
    border: 1px solid var(--color-border-transparent);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-plan:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.4);
    border-color: var(--color-primary-cyan);
}

.pricing-plan.featured {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(138, 43, 226, 0.1));
    border-color: var(--color-secondary-violet);
    box-shadow: 0 0 40px rgba(138, 43, 226, 0.3);
}

.pricing-plan h4 {
    font-size: 1.8em;
    color: var(--color-primary-cyan);
    margin-bottom: 20px;
    text-shadow: none;
}

.pricing-plan .price-value {
    font-family: var(--font-heading);
    font-size: 1.5em;
    color: var(--color-accent-silver);
    margin-bottom: 30px;
    font-weight: 700;
}

.pricing-plan ul {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-plan ul li {
    padding: 10px 0;
    color: var(--color-text-medium);
    border-bottom: 1px dashed rgba(0, 255, 255, 0.08);
    font-weight: 300;
    transition: color 0.3s ease;
}

.pricing-plan ul li:last-child {
    border-bottom: none;
}

.pricing-plan ul li:hover {
    color: var(--color-text-light);
}

.pricing-plan .cta-button {
    margin-top: auto; /* Push button to bottom */
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
}

/* Portfolio Section (Masonry Grid & Interactive Zoom) */
.portfolio-section {
    background-color: var(--color-bg-dark);
}

.masonry-grid {
    column-count: 3;
    column-gap: 20px;
    margin-top: 40px;
}

.grid-item {
    margin-bottom: 20px;
    break-inside: avoid;
    background-color: rgba(10, 10, 16, 0.7);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.08);
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.3);
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Image Modal */
.image-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* Prevent scrolling within modal */
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    transform-origin: center center;
    transition: transform 0.1s ease-out; /* Smooth transform for pan/zoom */
    cursor: grab;
}

.close-button {
    position: absolute;
    top: 20px;
    right: 35px;
    color: var(--color-primary-cyan);
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    text-shadow: 0 0 10px var(--color-primary-cyan);
}

.close-button:hover,
.close-button:focus {
    color: var(--color-secondary-violet);
    text-decoration: none;
    cursor: pointer;
}

.modal-controls {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 15px;
}

.modal-button {
    padding: 10px 20px;
    background-color: rgba(0, 255, 255, 0.2);
    border: 1px solid var(--color-primary-cyan);
    color: var(--color-primary-cyan);
    font-family: var(--font-body);
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.modal-button:hover {
    background-color: var(--color-primary-cyan);
    color: var(--color-bg-dark);
    box-shadow: 0 0 15px var(--color-primary-cyan);
}

/* FAQ Section (Tabbed Interface) */
.faq-section {
    background-color: #1a1a2a;
    position: relative;
    border-top: 1px solid var(--color-border-transparent);
    border-bottom: 1px solid var(--color-border-transparent);
}

.tab-interface {
    margin-top: 40px;
    background-color: rgba(10, 10, 16, 0.7);
    border: 1px solid var(--color-border-transparent);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(138, 43, 226, 0.1);
    padding: 30px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(0, 255, 255, 0.1);
}

.tab-button {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-family: var(--font-heading);
    font-size: 1.1em;
    color: var(--color-text-medium);
    cursor: pointer;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    position: relative;
    outline: none;
}

.tab-button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary-cyan), var(--color-secondary-violet));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: var(--color-primary-cyan);
}
.tab-button.active {
    color: var(--color-primary-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}
.tab-button.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
    padding: 20px 0;
    animation: fadeIn 0.5s ease-out;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 1; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-item {
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.1);
    padding-bottom: 15px;
}

.faq-item h4 {
    color: var(--color-accent-silver);
    font-size: 1.2em;
    margin-bottom: 8px;
    text-shadow: none;
    cursor: pointer;
    transition: color 0.3s ease;
}
.faq-item h4:hover {
    color: var(--color-primary-cyan);
}

.faq-item p {
    color: var(--color-text-medium);
    font-size: 0.95em;
    padding-left: 15px;
}

/* Newsletter Section (Sidebar - adapted to full width section) */
.newsletter-section {
    background-color: #0d0d15;
    position: relative;
    border-top: 1px solid var(--color-border-transparent);
    border-bottom: 1px solid var(--color-border-transparent);
}

.newsletter-section .container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px; /* Give it some height */
}

.newsletter-sidebar {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(138, 43, 226, 0.05));
    border: 1px solid var(--color-border-transparent);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px; /* Simulate sidebar width */
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.newsletter-sidebar::before { /* Glow effect */
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.1), transparent 70%);
    opacity: 1;.8;
    animation: pulseGlow 8s infinite alternate;
    z-index: 0;
}

@keyframes pulseGlow {
    0% { transform: scale(0.8); opacity: 1;.6; }
    100% { transform: scale(1.2); opacity: 1;.9; }
}

.newsletter-sidebar > * { /* Ensure content is above pseudo-element */
    position: relative;
    z-index: 1;
}

.newsletter-sidebar h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.newsletter-sidebar h3 {
    font-size: 1.5em;
    color: var(--color-accent-silver);
    margin-bottom: 25px;
}

.newsletter-sidebar p {
    font-size: 1.05em;
    color: var(--color-text-medium);
    margin-bottom: 30px;
}

.newsletter-placeholder {
    background-color: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-primary-cyan);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: inset 0 0 10px rgba(0, 255, 255, 0.2);
}

.newsletter-placeholder p {
    margin-bottom: 0;
    color: var(--color-text-light);
    font-size: 1.1em;
}

/* Contact Section (Map Integration) */
.contact-section {
    background-color: var(--color-bg-dark);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for the map area */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
    border: 1px solid var(--color-border-transparent);
    margin-top: 40px;
}

.contact-map {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(50%) contrast(150%); /* Techy, dark map style */
}

.contact-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.15), rgba(138, 43, 226, 0.15));
    border: 1px solid var(--color-primary-cyan);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    backdrop-filter: blur(5px);
}

.contact-overlay h4 {
    color: var(--color-primary-cyan);
    font-size: 1.6em;
    margin-bottom: 15px;
}

.contact-overlay p {
    color: var(--color-text-light);
    margin-bottom: 10px;
    font-size: 1.05em;
}

/* Footer */
.footer {
    background-color: #050508;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--color-border-transparent);
    color: var(--color-text-medium);
    font-size: 0.9em;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

.footer-nav ul li a {
    color: var(--color-text-medium);
    font-weight: 300;
}

.footer-nav ul li a:hover {
    color: var(--color-primary-cyan);
}

/* Responsive Design */
@media (max-width: 992px) {
    .header .container {
        flex-wrap: wrap;
    }
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 15px;
        display: none;
        flex-direction: column;
        background-color: rgba(10, 10, 16, 0.95);
        border-top: 1px solid var(--color-border-transparent);
        padding-top: 20px;
    }
    body.nav-open .main-nav {
        display: flex;
    }
    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .main-nav ul li {
        margin: 0;
    }
    .nav-toggle {
        display: block;
    }

    .hero-content h1 {
        font-size: 3em;
    }
    .hero-content p {
        font-size: 1.2em;
    }
    h2 {
        font-size: 2.2em;
    }
    h3 {
        font-size: 1.6em;
    }

    .about-grid, .pricing-table {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-plan {
        padding: 25px;
    }
    .pricing-plan h4 {
        font-size: 1.6em;
    }
    .pricing-plan .price-value {
        font-size: 1.2em;
    }
    
    .masonry-grid {
        column-count: 2;
    }
    .tab-buttons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: space-around;
        border-bottom: none;
    }
    .tab-button {
        flex-grow: 1;
        border-bottom: 2px solid rgba(0, 255, 255, 0.1);
        margin-bottom: 5px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.4em;
    }
    .section-description {
        font-size: 1em;
        margin-bottom: 40px;
    }

    .about-grid, .pricing-table {
        grid-template-columns: 1fr;
    }

    .pricing-table {
        gap: 20px;
    }

    .masonry-grid {
        column-count: 1;
    }
    .grid-item {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .tab-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .tab-button {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
    .tab-button::after {
        left: 50%;
        transform: translateX(-50%) scaleX(0); /* Adjust for centered button */
        width: 80%; /* Shorter underline */
    }
    .tab-button.active::after {
        transform: translateX(-50%) scaleX(1);
    }
    
    .contact-overlay {
        padding: 20px;
        max-width: 95%;
    }
    .contact-overlay h4 {
        font-size: 1.4em;
    }
    .contact-overlay p {
        font-size: 0.9em;
    }

    .footer .container {
        flex-direction: column;
        gap: 15px;
    }
    .footer-nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Visible state helpers */
+ .animate-fade-in-up.visible,
+ .animate-fade-in-left.visible,
+ .animate-fade-in-right.visible,
+ .animate-bounce-y.visible,
+ .section-scroll-animate.visible,
+ .text-animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
