/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
    width: 100px;
    height: 100px;
    color: #ffffff;
    margin: 0 auto 1.5rem;
    animation: logoRotate 3s ease-in-out infinite;
}

.loading-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.loading-subtext {
    font-size: 0.9rem;
    color: #8a8a9a;
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

@keyframes loadingPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes logoRotate {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
        transform: rotate(0deg);
    }
    25% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 255, 255, 1));
        transform: rotate(5deg);
    }
    75% {
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.8));
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #0a0a0f;
    color: #e2e2e2;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==============================
   UNIVERSAL HOVER: white glow + zoom
   ============================== */
.nav-link,
.notification-btn,
.hero-btn,
.service-card,
.resource-card,
.filter-tab,
.sort-btn,
.watch-btn,
.search-bar input,
.section-title,
.section-header,
.card-thumbnail img,
.mobile-menu-btn {
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0f;
}

::-webkit-scrollbar-thumb {
    background: #2a2a35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a3a45;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-brand:hover {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.3));
    transform: scale(1.02);
}

.logo {
    width: 32px;
    height: 32px;
    color: #e2e2e2;
    transition: all 0.35s ease;
}

.logo:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
    transform: scale(1.1);
}

.logo svg {
    width: 100%;
    height: 100%;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    transition: text-shadow 0.35s ease;
    cursor: default;
}

.brand-name:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #a0a0b0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-link:hover,
.nav-link.active {
    background: #ffffff;
    color: #0a0a0f;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.notification-btn {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0b0;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-left: 0.5rem;
    overflow: hidden;
}

.notification-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.notification-btn svg {
    width: 20px;
    height: 20px;
}

.notification-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #0a0a0f;
}

/* Notification Panel */
.notif-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: 340px;
    background: #1a1a25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 200;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.notif-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notif-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notif-header h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
}

.notif-clear {
    font-size: 0.8rem;
    color: #6a6a7a;
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    border: none;
    font-family: inherit;
}

.notif-clear:hover {
    color: #ef4444;
}

.notif-list {
    max-height: 350px;
    overflow-y: auto;
}

.notif-list::-webkit-scrollbar {
    width: 4px;
}

.notif-list::-webkit-scrollbar-thumb {
    background: #2a2a35;
    border-radius: 2px;
}

.notif-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.2s ease;
    cursor: pointer;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: rgba(255, 255, 255, 0.04);
}

.notif-item.unread {
    background: rgba(255, 255, 255, 0.03);
    border-left: 3px solid #3b82f6;
}

.notif-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.05);
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-text {
    font-size: 0.82rem;
    color: #c0c0d0;
    line-height: 1.4;
    margin-bottom: 0.25rem;
}

.notif-text strong {
    color: #ffffff;
}

.notif-time {
    font-size: 0.72rem;
    color: #6a6a7a;
}

.mobile-menu-btn {
    display: none;
    color: #ffffff;
    padding: 0.5rem;
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem 4rem;
    overflow: hidden;
}

#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #8a8a9a;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    cursor: default;
    transition: text-shadow 0.35s ease;
}

.hero-title:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.15);
}

.hero-description {
    font-size: 1.1rem;
    color: #9a9aaa;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: transparent;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Shining shimmer effect */
.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

.hero-btn:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.05);
}

.hero-btn:hover::before {
    opacity: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: scrollBounce 2s ease-in-out infinite;
    z-index: 1;
    cursor: pointer;
}

.scroll-indicator:hover {
    animation-play-state: paused;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    position: relative;
    transition: all 0.35s ease;
}

.mouse:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.wheel {
    width: 4px;
    height: 8px;
    background: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: mouseWheel 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

.scroll-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.35s ease;
}

.scroll-indicator:hover .scroll-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes mouseWheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 20px;
    }
    100% {
        opacity: 1;
        top: 8px;
    }
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Core Services Section */
.core-services {
    padding: 6rem 3rem;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    cursor: default;
}

.section-title:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

.section-subtitle {
    font-size: 1rem;
    color: #8a8a9a;
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* White glow effect on hover */
.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    width: 200%;
    height: 200%;
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    color: #c0c0d0;
    transition: all 0.35s ease;
}

.service-card:hover .service-icon {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: all 0.35s ease;
}

.service-card:hover .service-title {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.service-desc {
    font-size: 0.9rem;
    color: #8a8a9a;
    line-height: 1.6;
}

/* Explore Section */
.explore-section {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.explore-title-wrap .section-title {
    text-align: left;
    font-size: 2.2rem;
}

.explore-title-wrap .section-subtitle {
    text-align: left;
    margin: 0;
}

.sort-dropdown {
    position: relative;
}

.sort-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #e2e2e2;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sort-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.sort-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.sort-dropdown.open .sort-btn svg {
    transform: rotate(180deg);
}

.sort-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: #1a1a25;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s ease;
    z-index: 100;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.sort-dropdown.open .sort-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sort-option {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: #a0a0b0;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.sort-option:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.sort-option.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

/* Search Bar */
.search-bar {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #6a6a7a;
    pointer-events: none;
}

.search-bar input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: #e2e2e2;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
    outline: none;
}

.search-bar input::placeholder {
    color: #6a6a7a;
}

.search-bar input:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
    transform: scale(1.01);
}

.search-bar input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #a0a0b0;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-tab:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.filter-tab.active {
    background: #ffffff;
    color: #0a0a0f;
    border-color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
}

/* Resources Grid */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
}

.resource-card.hidden {
    display: none;
}

/* Card Thumbnail */
.card-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a25;
}

.card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .card-thumbnail img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255, 0, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
}

.play-overlay svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
    margin-left: 3px;
}

.resource-card:hover .play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 30px rgba(255, 0, 0, 0.5);
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 2;
}

.card-badge.new {
    background: #ffffff;
    color: #0a0a0f;
}

.card-badge.hot {
    background: #ef4444;
    color: #ffffff;
}

.card-badge.beta {
    background: #f59e0b;
    color: #0a0a0f;
}

.card-badge.premium {
    background: #a855f7;
    color: #ffffff;
}

.card-badge.featured {
    background: #3b82f6;
    color: #ffffff;
}

/* Card Content */
.card-content {
    padding: 1.25rem;
}

.card-category {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 500;
    color: #8a8a9a;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.35s ease;
}

.resource-card:hover .card-title {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.card-desc {
    font-size: 0.85rem;
    color: #8a8a9a;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.watch-btn {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: #ffffff;
    color: #0a0a0f;
    text-align: center;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.watch-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* Coming Soon Section */
.coming-soon {
    padding: 6rem 3rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==============================
   PAGE SECTION (shared for non-home pages)
   ============================== */
.page-section {
    padding-top: 6rem;
    min-height: 100vh;
}

/* ==============================
   ABOUT PAGE
   ============================== */
.about-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.about-showcase {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-banner-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-banner-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.1);
}

.about-banner-bg {
    position: relative;
    background: linear-gradient(135deg, #0c0c18 0%, #141428 40%, #1a1a35 70%, #0f0f20 100%);
    padding: 4rem 3rem;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(1px 1px at 30% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
                       radial-gradient(1px 1px at 50% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
                       radial-gradient(1px 1px at 70% 60%, rgba(255,255,255,0.25) 0%, transparent 100%),
                       radial-gradient(1px 1px at 85% 30%, rgba(255,255,255,0.35) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 20% 80%, rgba(255,255,255,0.3) 0%, transparent 100%),
                       radial-gradient(1px 1px at 60% 85%, rgba(255,255,255,0.2) 0%, transparent 100%),
                       radial-gradient(1px 1px at 90% 75%, rgba(255,255,255,0.3) 0%, transparent 100%);
    pointer-events: none;
    animation: twinkle 4s ease-in-out infinite;
}

/* Additional animated stars */
.banner-stars::before,
.banner-stars::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.banner-stars::before {
    background-image: radial-gradient(2px 2px at 15% 35%, rgba(255,255,255,0.6) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 45% 70%, rgba(255,255,255,0.5) 0%, transparent 100%),
                       radial-gradient(2px 2px at 75% 45%, rgba(255,255,255,0.7) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 95% 15%, rgba(255,255,255,0.4) 0%, transparent 100%);
    animation: twinkle 3s ease-in-out infinite 1s;
}

.banner-stars::after {
    background-image: radial-gradient(1.5px 1.5px at 25% 65%, rgba(255,255,255,0.5) 0%, transparent 100%),
                       radial-gradient(2px 2px at 55% 25%, rgba(255,255,255,0.6) 0%, transparent 100%),
                       radial-gradient(1.5px 1.5px at 80% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
                       radial-gradient(2px 2px at 40% 45%, rgba(255,255,255,0.7) 0%, transparent 100%);
    animation: twinkle 5s ease-in-out infinite 2s;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

.banner-planet {
    position: absolute;
    top: 12px;
    left: 18px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #d0d0d0, #888);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

.banner-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    width: 60px;
    height: 60px;
    color: #ffffff;
    z-index: 2;
    animation: logoGlow 3s ease-in-out infinite;
}

.banner-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
}

.banner-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.banner-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.35);
    margin: 0.6rem auto 0;
}

.banner-subtitle {
    font-size: 0.95rem;
    color: #8a8a9a;
    letter-spacing: 4px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.about-text-block {
    padding: 1rem 0;
}

.about-main-title {
    font-size: 2.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1.2rem;
    letter-spacing: -0.5px;
    transition: text-shadow 0.35s ease;
    cursor: default;
}

.about-main-title:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.15);
}

.about-text-block p {
    font-size: 0.95rem;
    color: #b0b0bf;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-sub-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.25rem;
    transition: all 0.35s ease;
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: #8a8a9a;
    font-weight: 500;
}

/* ==============================
   CONTACT PAGE
   ============================== */
.contact-section {
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-bottom: 4rem;
}

.contact-hero {
    text-align: center;
    margin-bottom: 4rem;
    padding-top: 3rem;
}

.contact-main-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    transition: text-shadow 0.35s ease;
    cursor: default;
}

.contact-main-title:hover {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4), 0 0 60px rgba(255, 255, 255, 0.15);
}

.contact-tagline {
    font-size: 1.15rem;
    color: #8a8a9a;
    max-width: 500px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #c0c0d0;
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #e2e2e2;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #5a5a6a;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 1rem 2rem;
    background: #ffffff;
    color: #0a0a0f;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.info-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 255, 255, 0.15);
}

.info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    color: #c0c0d0;
    transition: all 0.35s ease;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-card:hover .info-icon {
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.info-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.35s ease;
}

.info-card:hover h3 {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.info-card p {
    font-size: 0.85rem;
    color: #8a8a9a;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.info-link {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.info-link:hover {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

/* ==============================
   POLICIES PAGE
   ============================== */
.policies-section {
    padding: 8rem 3rem 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.policies-main-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policies-main-title:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.policies-tagline {
    color: #8a8a9a;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.policies-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.policies-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
}

.policy-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 0.35rem;
    width: fit-content;
}

.policy-tab {
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #8a8a9a;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
}

.policy-tab:hover {
    color: #e2e2e2;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.policy-tab.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.policy-content p {
    color: #b0b0bf;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.policy-content p:last-child {
    margin-bottom: 0;
}

/* ==============================
   QUICK CATEGORIES
   ============================== */
.quick-categories {
    padding: 5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.qc-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    cursor: default;
    transition: text-shadow 0.35s ease;
}

.qc-title:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3), 0 0 40px rgba(255, 255, 255, 0.1);
}

.qc-subtitle {
    font-size: 1rem;
    color: #8a8a9a;
    margin-bottom: 1.5rem;
}

.qc-tags {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.qc-tag {
    padding: 0.6rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #c0c0d0;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qc-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.qc-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.qc-btn:hover {
    background: #ffffff;
    color: #0a0a0f;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
}

/* ==============================
   FOOTER
   ============================== */
.site-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 3rem 3rem;
}

.footer-brand h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    transition: all 0.35s ease;
    cursor: default;
}

.footer-brand h3:hover {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.footer-brand p {
    font-size: 0.9rem;
    color: #7a7a8a;
    line-height: 1.6;
    max-width: 380px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #8a8a9a;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a svg,
.footer-contact a svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
    transform: translateX(4px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer-links a:hover svg,
.footer-contact a:hover svg {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.25rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #6a6a7a;
    line-height: 1.5;
}

.footer-bottom p:first-child {
    margin-bottom: 0.25rem;
    color: #c0c0d0;
}

.footer-copyright {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.8rem;
    color: #6a6a7a;
}

.footer-copyright strong {
    color: #e2e2e2;
}

.footer-bottom a {
    color: #9a9aaa;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

/* ==============================
   NO RESULTS MESSAGE
   ============================== */
.no-results {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeInUp 0.4s ease;
}

.no-results.show {
    display: block;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.05), 0 0 40px rgba(255, 255, 255, 0.02);
        border-color: rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.1), 0 0 60px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.2);
    }
}

.no-results-icon {
    width: 64px;
    height: 64px;
    color: #6a6a7a;
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.no-results p {
    font-size: 1rem;
    color: #8a8a9a;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-showcase {
        grid-template-columns: 1fr;
    }
    
    .about-banner-bg {
        min-height: 240px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .explore-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .explore-title-wrap .section-title {
        font-size: 1.8rem;
    }
    
    .filter-tabs {
        gap: 0.5rem;
    }
    
    .filter-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .about-showcase {
        grid-template-columns: 1fr;
    }
    
    .about-banner-bg {
        min-height: 200px;
        padding: 3rem 2rem;
    }
    
    .banner-title {
        font-size: 1.6rem;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-main-title,
    .contact-main-title {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main,
    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .quick-categories {
        padding: 3rem 1.5rem;
    }
}

/* 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: 10001;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    background: #1a1a24;
    border-radius: 16px;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.4s ease;
}

.video-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.video-modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    background: #000;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-error-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.video-error-content {
    text-align: center;
    padding: 3rem;
    max-width: 500px;
}

.video-error-content svg {
    width: 80px;
    height: 80px;
    color: #ff4444;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.4));
}

.video-error-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.video-error-content p {
    font-size: 1rem;
    color: #8a8a9a;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.video-error-content .youtube-link-btn {
    display: inline-flex;
    margin: 0 auto;
}

.video-controls-info {
    padding: 1.5rem 2rem;
    background: #1a1a24;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.video-controls-info p {
    color: #8a8a9a;
    font-size: 0.9rem;
    margin: 0 0 1rem 0;
}

.video-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.youtube-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ff0000;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.youtube-link-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.youtube-link-btn svg {
    width: 20px;
    height: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Video Modal */
@media (max-width: 768px) {
    .video-modal {
        padding: 1rem;
    }
    
    .video-modal-content {
        max-height: 95vh;
    }
    
    .video-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .video-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .video-controls-info {
        padding: 1rem 1.5rem;
    }
    
    .video-controls-info p {
        font-size: 0.85rem;
    }
    
    .youtube-link-btn {
        width: 100%;
        justify-content: center;
    }
}
