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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: white;
    overflow-x: hidden;
    min-height: 100vh;
}

#animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: linear-gradient(-45deg, #54b9d0, #ff6f59, #5465ff, #69585f, #2e294e);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease-out;
}

#loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    text-align: center;
}

.loader-ring {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 0.72s linear infinite;
    margin: 0 auto 20px;
}

.loader-text {
    font-size: 18px;
    color: white;
    opacity: 0.8;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#home {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

/* Page sections for full-height scrolling */
.page-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 40px;
    padding-top: 60px;
    padding-bottom: 120px;
}

.section-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

.main-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
}

.hero-content img {
    display: block;
    margin: 0 auto;
    height: auto;
}

.hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.9;
    font-weight: 300;
    margin: 30px 0;
    color: white;
    line-height: 1.4;
}

.service-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.service-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    max-width: 220px;
    min-width: 180px;
    user-select: none;
    text-decoration: none;
    color: inherit;
}

.service-button:link,
.service-button:visited,
.service-button:hover,
.service-button:active {
    text-decoration: none;
    color: inherit;
}

.service-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-button img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-button:hover img {
    transform: scale(1.1);
}

.service-button:active {
    transform: translateY(-2px) scale(0.98);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.1s ease;
}

.service-button:active img {
    transform: scale(1.05);
}

.service-button span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Footer Styles */
.global-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
    display: none; /* Hidden for now - can be unhidden by changing to 'block' */
}

.main-footer {
    width: 100%;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-center {
    display: flex;
    gap: 30px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: none;
}

/* Media Assets Page Styles */
.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 30px 0 10px;
    color: white;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
    margin-bottom: 50px;
    color: white;
    text-align: center;
}

.content-section {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.description-block {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.description-block:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.description-block h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.description-block p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.asset-types {
    margin: 40px 0;
}

.asset-types h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.asset-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.asset-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.asset-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.asset-icon-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.asset-item:hover .asset-icon-img {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.asset-item span {
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.cta-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.back-button,
.contact-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.back-button {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-button {
    background: rgba(84, 185, 208, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(84, 185, 208, 0.4);
    color: white;
}

.contact-button:hover {
    background: rgba(84, 185, 208, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(84, 185, 208, 0.4);
}

/* Carousel Styles */
.carousel-container {
    max-width: 800px;
    margin: 40px auto;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .carousel-container {
        margin: 30px auto;
    }
    
    .carousel-image {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-dots {
        padding: 15px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 900px) {
    .carousel-image {
        height: 200px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #ui-overlay,
    .page-section {
        padding: 20px;
        padding-top: 60px;
        padding-bottom: 140px;
        min-height: 100vh;
    }
    
    #ui-overlay {
        justify-content: center;
    }
    
    .page-section {
        justify-content: flex-start;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-content img {
        width: 90% !important;
        max-width: 400px !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin: 20px 0;
    }
    
    .service-buttons {
        gap: 12px;
        margin-top: 40px;
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .service-button {
        flex: 1;
        min-width: 100px;
        max-width: none;
        padding: 20px 10px;
    }
    
    .service-button img {
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .service-button span {
        font-size: 0.8rem;
    }
    
    .main-footer {
        padding: 15px 20px;
    }
    
    .footer-content {
        justify-content: center;
        text-align: center;
    }
    
    .footer-center {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-link {
        font-size: 0.8rem;
    }
    
    /* Media Assets Page Mobile */
    .page-title {
        font-size: 2rem;
        margin: 20px 0 10px;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .content-section {
        padding: 0 10px;
    }
    
    .description-block {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .description-block h2 {
        font-size: 1.3rem;
    }
    
    .description-block p {
        font-size: 1rem;
    }
    
    .asset-types h2 {
        font-size: 1.5rem;
    }
    
    .asset-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 15px;
    }
    
    .asset-item {
        padding: 15px 10px;
    }
    
    .asset-icon {
        font-size: 2rem;
    }
    
    .asset-icon-img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        object-position: center;
    }
    
    .asset-item span {
        font-size: 0.85rem;
    }
    
    .cta-section {
        gap: 15px;
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .back-button,
    .contact-button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    #ui-overlay,
    .page-section {
        padding-bottom: 160px;
        min-height: 100vh;
    }
    
    .hero-content img {
        width: 95% !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-buttons {
        gap: 8px;
    }
    
    .service-button {
        padding: 15px 8px;
    }
    
    .service-button img {
        width: 50px;
        height: 50px;
    }
    
    .service-button span {
        font-size: 0.75rem;
    }
    
    .footer-center {
        gap: 15px;
    }
    
    .footer-link {
        font-size: 0.75rem;
    }
    
    /* Media Assets Page Small Mobile */
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
        margin-bottom: 60px;
    }
    
    .back-button,
    .contact-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* Content Delivery Feature Styles */
.delivery-features {
    margin: 40px 0;
}

.delivery-features h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: white;
    text-align: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.feature-item {
    flex: 0 0 auto;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: default;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1;
    color: white;
    font-weight: normal;
}

.feature-item h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.4;
    margin: 0;
}

/* Mobile styles for content delivery features */
@media (max-width: 768px) {
    .delivery-features h2 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 18px 12px;
    }
}

/* Customer Logos Section */
.customer-logos {
    margin: 50px 0;
    text-align: center;
}

.customer-logos h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: white;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    min-height: 120px;
    flex: 0 1 auto;
    min-width: 150px;
}

.logo-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.customer-logo {
    max-width: 150px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.logo-item:hover .customer-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Mobile styles for customer logos */
@media (max-width: 768px) {
    .customer-logos {
        margin: 40px 0;
    }
    
    .customer-logos h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .logos-grid {
        gap: 20px;
    }
    
    .logo-item {
        padding: 15px;
        min-height: 100px;
    }
    
    .customer-logo {
        max-width: 120px;
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logos-grid {
        gap: 15px;
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-item {
        padding: 12px;
        min-height: 80px;
    }
    
    .customer-logo {
        max-width: 100px;
        max-height: 50px;
    }
}

/* Media Responsive */