/* Base Styles */
:root {
    --primary-bg: #F4F0E6;
    --primary-dark: #1C2B3A;
    --primary-accent: #C6412D;
    --secondary-light: #ffffff;
    --secondary-dark: #0E1621;
    --light-gray: #e9e5dc;
    --medium-gray: #ccc9c2;
    --glow-accent: rgba(198, 65, 45, 0.6);
    
    /* Status colors */
    --comming-soon-bg: rgba(149, 91, 219, 0.25);
    --comming-soon-text: #d3b6ff;
    --development-bg: rgba(56, 132, 221, 0.25);
    --development-text: #a3d0ff;
    --planned-bg: rgba(122, 122, 122, 0.25);
    --planned-text: #d9d9d9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--primary-dark);
    color: var(--primary-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-bg);
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--primary-accent);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-bg);
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-bg);
}

p {
    margin-bottom: 1rem;
    color: var(--light-gray);
}

a {
    text-decoration: none;
    color: var(--primary-bg);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-accent);
}

section {
    padding: 6rem 0;
    position: relative;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    color: var(--medium-gray);
}

/* Navigation */
.navbar {
    padding: 0.8rem 0;
    background-color: rgba(244, 240, 230, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(198, 65, 45, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    display: inline-block;
}

.logo img {
    height: 35px;
    vertical-align: middle;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
    color: var(--primary-dark);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--primary-accent);
}

.cta-button {
    display: flex;
    align-items: center;
}

.download-btn {
    display: inline-block;
    background-color: var(--primary-accent);
    color: var(--secondary-light);
    padding: 0.6rem 1.3rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.download-btn:hover {
    background-color: #a43425;
    transform: translateY(-2px);
    color: var(--secondary-light);
    box-shadow: 0 5px 15px rgba(198, 65, 45, 0.4);
}

/* Hero Section */
.hero {
    background-color: var(--primary-bg);
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, rgba(198, 65, 45, 0.15), transparent 60%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-image {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--glow-accent), transparent 70%);
    filter: blur(40px);
    z-index: 0;
    opacity: 0.7;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text h1 {
    color: var(--primary-dark);
}

.hero-text .subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--secondary-dark);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.hero-logos {
    margin-top: 2rem;
    gap: 2rem;
}

.primary-btn {
    display: inline-block;
    background-color: var(--primary-accent);
    color: var(--secondary-light);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background-color: #a43425;
    transform: translateY(-2px);
    color: var(--secondary-light);
    box-shadow: 0 5px 15px rgba(198, 65, 45, 0.4);
}

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-dark);
    padding: 0.8rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--primary-dark);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background-color: rgba(28, 43, 58, 0.1);
    color: var(--primary-dark);
}

/* Features Section */
.features {
    background-color: var(--primary-dark);
    position: relative;
    padding: 8rem 0;
    background-image: linear-gradient(135deg, var(--primary-dark) 0%, #192c3e 100%);
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 22, 33, 0.7) 0%, rgba(28, 43, 58, 0.7) 100%);
    z-index: 0;
}

.features h2 {
    color: #FFFFFF;
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    text-align: center;
    font-weight: 700;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.features .section-desc {
    color: #FFFFFF;
    text-align: center;
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 4rem;
    opacity: 1;
    position: relative;
    z-index: 2;
}

.features-container {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.feature-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(198, 65, 45, 0.15), transparent);
    margin: 0 auto 80px;
    width: 80%;
    position: relative;
    z-index: 1;
}

.feature-item.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.feature-content {
    padding: 2rem;
    direction: ltr;
    max-width: 500px;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-bg);
}

.feature-content > p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.5;
}

.feature-points {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    background: rgba(198, 65, 45, 0.15);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-point strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-bg);
    font-weight: 600;
}

.feature-point p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--light-gray);
    opacity: 0.9;
}

.feature-cta {
    display: inline-block;
    color: var(--primary-accent);
    font-weight: 500;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.feature-cta:hover {
    border-bottom-color: var(--primary-accent);
}

.feature-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    direction: ltr;
}

.feature-video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 62.5%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 22, 33, 0.1), rgba(14, 22, 33, 0));
    pointer-events: none;
    z-index: 2;
}

.feature-item:hover .feature-video {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-item::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(198, 65, 45, 0.15), transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.6;
    transition: transform 0.5s ease;
}

.feature-item:nth-child(odd)::before {
    right: 10%;
    top: 50%;
    transform: translate(0, -50%);
}

.feature-item:nth-child(even)::before {
    left: 10%;
    top: 50%;
    transform: translate(0, -50%);
}

.feature-item:hover::before {
    transform: translate(0, -50%) scale(1.2);
}

@media (max-width: 1100px) {
    .feature-item, 
    .feature-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }
    
    .feature-content {
        padding: 0;
        max-width: 100%;
    }
    
    .feature-points {
        gap: 1rem;
    }
    
    .feature-point {
        align-items: flex-start;
    }
    
    .feature-icon {
        margin-top: 0.25rem;
    }
    
    .feature-video-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .feature-divider {
        margin-bottom: 60px;
    }
}

/* Provider Logos */
.provider-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.provider-logos img {
    height: 40px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(30%);
}

.provider-logos img:hover {
    transform: translateY(-5px);
    opacity: 1;
    filter: grayscale(0%);
}

/* What's Next Section */
.whats-next {
    background-color: #0d1927;
    padding: 6rem 0;
    position: relative;
    background-image: linear-gradient(135deg, #0d1927 0%, #132237 100%);
    overflow: hidden;
}

.whats-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(198, 65, 45, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(198, 65, 45, 0.08) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.roadmap-header {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.roadmap-header h2,
.roadmap-header .section-desc {
    text-align: center !important;
}

.roadmap-items {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-item {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
    transition: all 0.3s ease;
}

.roadmap-item:hover {
    transform: translateY(-5px);
}

.roadmap-item:hover .roadmap-content {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.roadmap-item.priority .roadmap-content {
    background-color: rgba(40, 58, 76, 0.85);
    border: 1px solid rgba(198, 65, 45, 0.2);
}

.roadmap-content {
    background-color: rgba(35, 50, 70, 0.85);
    padding: 1.75rem;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.roadmap-content h3 {
    color: var(--primary-bg);
    margin-bottom: 0.75rem;
    font-size: 1.3rem;
    line-height: 1.3;
}

.roadmap-content p {
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.95rem;
    color: var(--light-gray);
}

.roadmap-content .feature-list {
    margin: 0 0 1.25rem 1.25rem;
    padding: 0;
    list-style-type: none;
}

.roadmap-content .feature-list li {
    position: relative;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.4;
}

.roadmap-content .feature-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-accent);
}

.tag {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.tag.comming-soon {
    background-color: var(--comming-soon-bg);
    color: var(--comming-soon-text);
}

.tag.in-development {
    background-color: var(--development-bg);
    color: var(--development-text);
}

.tag.planned {
    background-color: var(--planned-bg);
    color: var(--planned-text);
}

/* FAQ Section */
.faq {
    background-color: var(--secondary-dark);
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(28, 43, 58, 0.5);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.toggle-icon {
    font-size: 1.5rem;
    color: var(--primary-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 1000px;
}

/* Contact Section */
.contact {
    background-color: var(--primary-dark);
    padding: 6rem 0;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: rgba(14, 22, 33, 0.7);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(14, 22, 33, 0.9);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(198, 65, 45, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--primary-accent);
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-bg);
}

.contact-card p {
    margin-bottom: 0;
    color: var(--medium-gray);
}

.email-address {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-gray) !important;
}

.contact-icon-img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    border-radius: 50%;
}

/* Footer */
footer {
    background-color: var(--secondary-dark);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-accent);
}

.footer-text {
    text-align: right;
}

.footer-text p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text .subtitle {
        margin: 0 auto 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-list li {
        padding-left: 0;
    }
    
    .feature-list li::before {
        display: none;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-links {
        position: static;
        transform: none;
        justify-content: center;
        flex-wrap: wrap;
        margin: 1rem 0;
    }
    
    .navbar-container {
        flex-direction: column;
    }
    
    .cta-button {
        margin-top: 1rem;
    }
    
    .roadmap-header h2,
    .roadmap-header .section-desc {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
        line-height: 1.3;
    }
    
    .navbar {
        transform: translateY(-100%);
        transition: transform 0.3s ease;
    }
    
    .navbar.scrolled {
        transform: translateY(0);
    }
    
    .navbar .container,
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.8rem;
    }
    
    .nav-links {
        display: none; /* Hide the navigation links on mobile */
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-text {
        text-align: center;
    }
    
    .roadmap-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 2.5rem;
    }
    
    .hero-image {
        max-width: 85%;
        margin: 0 auto;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-buttons a {
        width: 100%;
        max-width: 250px;
        text-align: center;
        padding: 0.7rem 1.5rem;
    }
    
    /* Mobile timeline as horizontal scroll */
    .roadmap-items {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem 0 2rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .roadmap-items::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Edge */
    }
    
    .roadmap-item {
        min-width: 280px;
        max-width: 85%;
        margin-right: 1.5rem;
        margin-bottom: 1rem;
        scroll-snap-align: start;
        flex-direction: column;
    }
    
    .roadmap-content {
        width: 100%;
    }
    
    /* Add dot indicators for scrollable cards */
    .whats-next::after {
        content: '';
        display: block;
        text-align: center;
        margin-top: 1rem;
    }
    
    .roadmap-content .feature-list {
        margin-left: 0;
        text-align: left;
    }
    
    .roadmap-content .feature-list li {
        padding-left: 1.5rem;
    }
    
    .roadmap-content .feature-list li::before {
        display: block;
        left: 0.5rem;
    }
    
    .hero {
        padding: 2rem 0 3rem; /* Reduced top padding to account for hidden navbar */
    }
    
    .feature-point {
        align-items: flex-start;
    }
    
    .feature-icon {
        margin-top: 0.25rem;
    }
    
    .provider-logos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .provider-logos img {
        height: 30px;
    }
    
    /* Fix for features section */
    .features-container {
        padding: 0 0.5rem;
    }
    
    .feature-video-wrapper {
        width: 100%;
        margin: 0 auto;
    }
    
    .feature-content h3 {
        font-size: 1.6rem;
    }
    
    .feature-content p {
        font-size: 1rem;
    }
}

/* Animation Effects */
@keyframes glow {
    0% {
        opacity: 0.5;
        filter: blur(20px);
    }
    50% {
        opacity: 0.8;
        filter: blur(25px);
    }
    100% {
        opacity: 0.5;
        filter: blur(20px);
    }
}

.glow-effect, .glow-border {
    animation: glow 3s infinite alternate;
}

/* Chat Feature Special Styling - modified for new structure */
.feature-wrapper:nth-child(3) .content-box h3 {
    position: relative;
    display: inline-block;
}

.feature-wrapper:nth-child(3) .content-box h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-accent);
}

.feature-divider:last-of-type {
    margin-bottom: 30px;
}

.features-container > div.feature-item:last-of-type {
    margin-bottom: 30px;
}

/* Splash Screen Styles */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F4F0E6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.splash-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.splash-loader {
    width: 100px;
    height: auto;
    animation: float 2s ease-in-out infinite alternate;
    filter: drop-shadow(0 5px 15px rgba(198, 65, 45, 0.2));
}

.splash-shadow {
    width: 70px;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    margin-top: 15px;
    filter: blur(3px);
    animation: shadow-pulse 2s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-15px);
    }
}

@keyframes shadow-pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.7);
        opacity: 0.15;
    }
}

.splash-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Add transition effect to the body content */
body > *:not(#splash-screen) {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.content-loaded > *:not(#splash-screen) {
    opacity: 1;
} 