* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff4d5a;
    --secondary: #00b4d8;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray: #a0a5b0;
    --transition: all 0.3s ease;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
}

section {
    scroll-margin-top: 80px;
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 15px 5%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.logo {
    font-family: "Montserrat", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    text-decoration: none;
    z-index: 1001;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle i {
    font-size: 1.8rem;
    color: white;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-video.loaded {
    opacity: 0.8;
}

.hero-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.7;
    z-index: -3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(18, 18, 18, 0.6) 0%,
            rgba(18, 18, 18, 0.3) 50%,
            rgba(18, 18, 18, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 16px 42px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary);
    box-shadow: 0 4px 15px rgba(255, 77, 90, 0.3);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 77, 90, 0.4);
    background-color: transparent;
}

/* About Section */
.about-section {
    position: relative;
    padding: 120px 5%;
    background-color: var(--dark);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-content {
    padding: 20px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gray);
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.skill-tag:hover {
    background: rgba(255, 77, 90, 0.2);
}

/* Project Discussion Section */
.project-discussion-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.discussion-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
}

.discussion-video.loaded {
    opacity: 0.8;
}

.discussion-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    opacity: 0.7;
    z-index: -3;
}

.discussion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.discussion-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.discussion-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Showreel Section Styles */
.showreel-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
}

.showreel-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
}

.showreel-video.loaded {
    opacity: 0.8;
}

.showreel-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.7;
    z-index: -3;
}

.showreel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.showreel-content h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--light);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.showreel-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.showreel-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(255, 77, 90, 0.9);
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(255, 77, 90, 0.4);
    animation: pulse 2s infinite ease-in-out;
}

.showreel-play-btn:hover {
    background: rgba(255, 77, 90, 1);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(255, 77, 90, 0.6);
    animation: none;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 77, 90, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 77, 90, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 77, 90, 0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showreel-content h1 {
        font-size: 2.8rem;
    }

    .showreel-content p {
        font-size: 1.1rem;
    }

    .showreel-play-btn {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 576px) {
    .showreel-content h1 {
        font-size: 2.2rem;
    }

    .showreel-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Services Section */
.services-section {
    padding: 120px 5%;
    background-color: var(--darker);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 77, 90, 0.1);
    border-color: rgba(255, 77, 90, 0.3);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 0 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.view-work-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.view-work-btn:hover {
    background: #ff3443;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 77, 90, 0.3);
}

.view-work-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Project Pages */
.project-page {
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: var(--dark);
    display: none;
}

.project-header {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.project-header h1 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.5rem;
    color: var(--light);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.project-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 77, 90, 0.3);
}

.project-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
    cursor: pointer;
}

.project-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-thumbnail:hover img {
    transform: scale(1.05);
}

.project-item[data-video-src] .project-thumbnail .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 77, 90, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
    z-index: 2;
}

.project-item[data-video-src] .project-thumbnail:hover .play-button {
    background: rgba(255, 77, 90, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--light);
}

.project-info p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

/* Pagination */
.pagination-container {
    max-width: 1200px;
    margin: 50px auto 0;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.pagination-btn:hover {
    background: rgba(255, 77, 90, 0.3);
    border-color: var(--primary);
}

.pagination-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Video & Image Modals */
.video-modal,
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2001;
    overflow: auto;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    margin: auto;
    background: var(--darker);
    border-radius: 10px;
    overflow: hidden;
}

.image-modal .modal-content {
    max-width: 95%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
}

.image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    max-height: 80vh;
}

#modalImage {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.image-info {
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
}

#modalTitle {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--light);
}

#modalDescription {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
}

#videoContainer {
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    position: relative;
}

#videoContainer video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
}

/* Contact Section */
.contact-section {
    position: relative;
    text-align: center;
    padding: 120px 5%;
    overflow: hidden;
}

.contact-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0;
    transition: opacity 1s ease;
}

.contact-video.loaded {
    opacity: 0.6;
}

.contact-bg-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0.3;
    z-index: -3;
}

.contact-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.contact-content h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.highlight {
    color: var(--primary);
    font-weight: 600;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    grid-column: span 2;
}

.form-group.half {
    grid-column: span 1;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 77, 90, 0.1);
}

.form-group textarea {
    height: 150px;
    resize: none;
}

.submit-btn {
    grid-column: span 2;
    padding: 18px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

.submit-btn:hover {
    background: #ff3443;
    transform: translateY(-3px);
}

/* Footer */
footer {
    padding: 40px 5%;
    text-align: center;
    background: #0a0a0a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--gray);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Performance Warning */
.performance-warning {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 77, 90, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 0.9rem;
    z-index: 3000;
    display: none;
    max-width: 300px;
}


/* Responsive Design */
@media (max-width: 992px) {

    .hero-content h1,
    .discussion-content h1,
    .showreel-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p,
    .discussion-content p,
    .showreel-content p {
        font-size: 1.3rem;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .contact-form .half {
        grid-column: span 2;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 400px;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .project-header h1 {
        font-size: 2.5rem;
    }

    .image-modal .modal-content {
        max-width: 98%;
        max-height: 98vh;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 5%;
    }

    .hero-content h1,
    .discussion-content h1,
    .showreel-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p,
    .discussion-content p,
    .showreel-content p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .showreel-play-btn {
        width: 70px;
        height: 70px;
    }

    .contact-content {
        padding: 40px 20px;
    }

    .contact-content h2 {
        font-size: 2.2rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Menu */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--darker);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .section-header {
        text-align: center;
    }

    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .image-modal .modal-content {
        max-width: 95%;
    }
}

@media (max-width: 576px) {

    .hero-content h1,
    .discussion-content h1,
    .showreel-content h1 {
        font-size: 2.2rem;
    }

    .showreel-content p {
        font-size: 1rem;
    }

    .showreel-play-btn {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }


    .cta-button {
        padding: 14px 30px;
        font-size: 0.9rem;
    }

    .form-group.half {
        grid-column: span 2;
    }

    .project-header h1 {
        font-size: 2rem;
    }

    .project-info h3 {
        font-size: 1.5rem;
    }

    .project-item[data-video-src] .project-thumbnail .play-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .pagination {
        gap: 5px;
    }

    .pagination-btn {
        width: 35px;
        height: 35px;
    }

    .image-modal .modal-content {
        max-width: 98%;
        max-height: 98vh;
    }

    #modalTitle {
        font-size: 1.2rem;
    }

    #modalDescription {
        font-size: 0.9rem;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-video,
    .contact-video,
    .discussion-video,
    .showreel-video {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary: #ff6b7a;
        --gray: #ffffff;
    }
}