@font-face {
  font-family: "Cinzel", sans-serif;
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0")
      format("embedded-opentype"),
    url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"),
    url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"),
    url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular")
      format("svg");
}

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

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

body {
    background: #0a0a0a;
    color: #ffffff;
    /* font-family: 'Inter', sans-serif; */
    font: 400 15px/1.8 "Cinzel", sans-serif;

    min-height: 100vh;
    overflow-x: hidden;
}

/* Full screen background container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #0a0a0a;
}

.background-gif {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* transition: opacity 0.8s ease-in-out; */
    transition: opacity 0.4s ease-in-out;
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    
}

.background-still {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    /* transition: opacity 0.8s ease-in-out; */
    transition: opacity 0.4s ease-in-out;

    z-index: 2;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), transparent);
    /* backdrop-filter: blur(10px); */
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Space Mono', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.1em;
}

.header-logo {
    height: 113px;
    width: auto;
}

/* .header-logo {
    display: flex;
    justify-content: start;
    max-width: 100px;
} */

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
    text-transform: lowercase;
}

.nav-links a:hover {
    color: #ffffff;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    background: none;
    border: none;
    outline: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Instagram icon */
.instagram-icon {
    width: 20px;
    height: 20px;
    fill: #cccccc;
    transition: fill 0.3s ease;
}

.instagram-icon:hover {
    fill: #ffffff;
}

.nav-links .instagram-link {
    display: flex;
    align-items: center;
}

/* Main content */
.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.project-list {
    max-width: 600px;
    width: 100%;
    text-align: right;
}

.project-section-header:first-child {
    padding-top: 7rem;
}

.project-section-header {
    margin-top: 1rem;
}

.section-title {
    font-size: 1rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    margin: 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(136, 136, 136, 0.3);
    /* border-bottom: 1px solid #ffffff; */
}

.section-title::after {
    content: ' ▼'
}

.project-item {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.project-item:hover {
    color: #ffffff;
    padding-right: 2rem;
}

.project-item:hover::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 1;
    transform: translateX(0);
}

.project-item::before {
    content: '→';
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.artist-name {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.song-title {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 300;
}

/* Project page styles */
.project-page {
    display: none;
}

.project-page.active {
    display: block;
}

.project-header {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.project-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    backdrop-filter: blur(10px);
    position: absolute;
    bottom: 40px;
    width: 100%;
}

.project-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.project-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin: 0;
}

.watch-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.watch-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Looping videos section */
.looping-videos-section {
    width: 100%;
    background: #0a0a0a;
}

.looping-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease-in-out;
}

/* Lazy video loading states */
.lazy-video {
    opacity: 0.7;
    background: #0a0a0a;
}

.lazy-video:not([src]) {
    background-image: linear-gradient(45deg, #0a0a0a 25%, #1a1a1a 25%, #1a1a1a 50%, #0a0a0a 50%, #0a0a0a 75%, #1a1a1a 75%, #1a1a1a);
    background-size: 20px 20px;
    animation: loading-shimmer 1.5s infinite linear;
}

@keyframes loading-shimmer {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 20px 20px;
    }
}

/* Video loading optimization */
video {
    will-change: transform;
    transform: translateZ(0);
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .lazy-video:not([src]) {
        animation: none;
        background: #1a1a1a;
    }
    
    .looping-video {
        transition: none;
    }
}

.gallery-section {
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-grid-columns {
    max-width: 1200px;
    margin: 0 auto;
    columns: 300px;
}

.gallery-item {
    /* aspect-ratio: 16/9; */
    background: #1a1a1a;
    /* border-radius: 8px; */
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;

    /* display: inline-block;
    width: 100%;
    margin-bottom: 1rem;
    break-inside: avoid;
    page-break-inside: avoid; */
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bts-section {
    padding: 4rem 2rem;
    background: #111111;
}

.bts-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 3rem;
    text-transform: uppercase;
    color: gray;
    /* color: #ffffff; */
}

.bts-photo-credit {
    display: flex;
    justify-content: end;
    color: gray;
}

.carousel-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.carousel {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.carousel::-webkit-scrollbar {
    height: 8px;
}

.carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.carousel::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.carousel-item {
    flex: 0 0 250px;
    /* aspect-ratio: 16/9; */
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.next-project {
    padding: 2rem;
    text-align: center;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.next-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.next-link:hover {
    color: #ffffff;
}

.next-link .mask-logo {
    width: 60px;
    height: auto;
    transition: all 0.3s ease;
}

.next-link:hover .mask-logo {
    transform: scale(1.1);
}

.next-text {
    transition: color 0.3s ease;
}

.next-link:hover .next-text {
    color: #ffffff;
}

/* Arrow positioned to the right of the text */
.next-link::after {
    content: '▶';
    color: #888888;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.next-link:hover::after {
    color: #ffffff;
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .next-link .mask-logo {
        width: 50px;
    }
    
    .next-link::after {
        font-size: 1rem;
    }

    .header-logo {
        height: 49px;
        width: auto;
    }
    .navigation {
        padding: 1rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
        font-weight: 500;
    }
    
    .main-content {
        padding: 0 1rem;
    }
    
    .project-title {
        font-size: 1.1rem;
    }

    .project-subtitle {
        font-size: 1.1rem;
    }
    
    .project-info {
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-item {
        flex: 0 0 200px;
    }

    .project-section-header:first-child {
        padding-top: 4rem;
    }

    .project-item:hover {
        padding-right: 2rem;
        padding-left: 0;
    }
    
    .project-item:hover::before {
        content: '←';
        position: absolute;
        right: 0;
        left: auto;
    }
    
    .project-item::before {
        content: '←';
        position: absolute;
        right: 0;
        left: auto;
        transform: translateX(10px);
    }

    .contact-page {
        padding: 0.5rem;
        margin-top: 80px;
    }
    
    .contact-form-container,
    .social-links {
        padding: 1rem;
    }
}

/* Back button */
.back-button {
    position: fixed;
    top: 50%;
    left: 2rem;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.project-page.active .back-button {
    display: flex;
}

.loading {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    z-index: 1000;
}
.error {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: red;
    font-size: 18px;
    z-index: 1000;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 8px;
}

/* Contact Page Styles */
.contact-page {
    /* background-color: #000; */
    display: none;
    position: relative;
    min-height: calc(100vh - 120px);
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    margin-top: 50px;
    gap: 2rem;
    z-index: 1;
}

.contact-page.active {
    display: flex;
    flex-direction: column;
}

.contact-form-container {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form label {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background: #cc0000;
}

.social-links {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

.social-links a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.social-links a:hover {
    color: #ff0000;
}

.form-success {
    background: rgba(0, 255, 0, 0.2);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    text-align: center;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

/* Image Modal Styles */
.image-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.image-modal.active {
    display: flex;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-image {
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Ensure portrait images fit properly */
.modal-image[src*=".jpg"],
.modal-image[src*=".jpeg"],
.modal-image[src*=".JPG"],
.modal-image[src*=".JPEG"],
.modal-image[src*=".png"],
.modal-image[src*=".PNG"] {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 2001;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.modal-nav.disabled:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-50%) scale(1);
}

.modal-prev {
    left: -80px;
}

.modal-next {
    right: -80px;
}

.modal-caption {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    text-align: center;
    font-size: 0.9rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    max-width: 80%;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .modal-close {
        top: -40px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .modal-prev {
        left: -60px;
    }
    
    .modal-next {
        right: -60px;
    }
    
    .modal-caption {
        bottom: -50px;
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Loading Mask Styles */
.loading-mask {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    min-width: 100vw;
    /* background: #ffffff; */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease-out;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.loading-mask.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    animation: logoFadeIn 1s ease-in-out;
}

.mask-logo {
    /* width: 100vw;
    height: 100vh;
    object-fit: cover; */
    filter: invert(0);
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* About Page Styles */
.about-page {
    display: none;
    position: relative;
    min-height: 100vh;
    background: #000000;
    overflow: hidden;
    z-index: 1;
}

.about-page.active {
    display: block;
}

/* About Slideshow Section - Upper 2/3 */
.about-slideshow-section {
    position: relative;
    width: 100%;
    height: 66.67vh; /* 2/3 of viewport height */
    overflow: hidden;
}

.about-background-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.about-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.about-slide.active {
    opacity: 1;
}

.about-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* About Content Section - Lower 1/3 */
.about-content-section {
    position: relative;
    width: 100%;
    height: 33.33vh; /* 1/3 of viewport height */
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: none;
    position: relative;
    z-index: 10;
    border: none;
    box-shadow: none;
}

.about-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
}

.about-text {
    color: #ffffff;
    line-height: 1.6;
    font-size: 0.9rem;
    text-shadow: none;
    text-align: center;
}

.about-text p {
    margin-bottom: 1rem;
    text-align: center;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-page {
        min-height: 100vh;
    }
    
    .about-slideshow-section {
        height: 60vh; /* Slightly less on mobile for better text visibility */
    }
    
    .about-content-section {
        height: 40vh;
        padding: 1rem;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    .about-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .about-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .about-text p {
        margin-bottom: 0.8rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-slideshow-section {
        height: 55vh;
    }
    
    .about-content-section {
        height: 45vh;
        padding: 0.5rem;
    }
    
    .about-title {
        font-size: 1.2rem;
    }
    
    .about-text {
        font-size: 0.75rem;
    }
}

.contact-credit {
	display: block;
	font-size: .8rem;
	position: absolute;
	color: #999;
	bottom: 0px;
    text-decoration: none;
}

.contact_credit > span > a {
    color: #999;
    text-decoration: none !important;
}

/* Video Modal Styles */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2001;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.modal-video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    background: #000;
}

.video-modal .modal-close {
    position: absolute;
    top: -50px;
    right: -50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2002;
}

.video-modal .modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Watch Video Button Styles */
.watch-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
    margin-top: 1rem;
}

.watch-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.watch-button::before {
    content: '▶';
    font-size: 0.8rem;
    margin-right: 0.3rem;
}

@media (max-width: 768px) {
    .video-modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .modal-video {
        max-height: 70vh;
    }
    
    .video-modal .modal-close {
        top: -40px;
        right: -20px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
    
    .watch-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
