:root {
    --primary-color: #0092cb;
    --primary-rgb: 0, 146, 203;
    --secondary-color: #ff8000;
    --foreground-color: #262d3a;
    --muted-color: #f5f3f0;
    --destructive-color: #e53e3e;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--foreground-color);
    scroll-behavior: smooth;
}

/* Header */
.header-fixed {
    background: rgba(38, 45, 58, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--foreground-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/wp-content/uploads/2025/creators-community/banner-bg.png') center/cover;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

/*.hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(38, 45, 58, 0.9), rgba(38, 45, 58, 0.85), rgba(38, 45, 58, 0.75));
        }*/
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(38, 45, 58, -2.1), rgba(38, 45, 58, -0.15), rgba(38, 45, 58, -0.25));
}

.hero-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: linear-gradient(to right, white 1px, transparent 1px),
        linear-gradient(to bottom, white 1px, transparent 1px);
    background-size: 100px 100px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Buttons */
.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-primary:hover {
    background: #007aa8;
    border-color: #007aa8;
    box-shadow: 0 12px 32px rgba(var(--primary-rgb), 0.3);
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 600;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Mission Strip */
.mission-strip {
    background: rgba(245, 243, 240, 0.3);
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.pulse-animation {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Stats */
.stat-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Video Cards */
.video-card {
    cursor: pointer;
    transition: var(--transition-smooth);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-card:hover .play-overlay {
    opacity: 1;
}

.video-card:hover .video-title {
    color: var(--primary-color);
}

.video-thumbnail-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 1rem;
    overflow: hidden;
    background: white;
    border: 1px solid #e5e5e5;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease;
}

.play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.play-button {
    background: white;
    border-radius: 50%;
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
}

.video-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.category-release {
    background: var(--primary-color);
    color: white;
}

.category-compliance {
    background: var(--secondary-color);
    color: white;
}

.category-fundamentals {
    background: var(--muted-color);
    color: var(--foreground-color);
}

.category-tips {
    background: var(--destructive-color);
    color: white;
}

.gradient-release {
    background: linear-gradient(135deg, rgba(0, 146, 203, 0.9), rgba(0, 146, 203, 0.5));
}

.gradient-compliance {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.9), rgba(255, 128, 0, 0.5));
}

.gradient-fundamentals {
    background: linear-gradient(135deg, rgba(245, 243, 240, 0.9), rgba(0, 146, 203, 0.6));
}

.gradient-tips {
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.8), rgba(229, 62, 62, 0.5));
}

/* Tabs */
.nav-tabs {
    border-bottom: none;
    background: rgba(245, 243, 240, 0.5);
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.nav-tabs .nav-link {
    border: none;
    color: #666;
    font-weight: 500;
    border-radius: 0.375rem;
    width: 16rem;
}

.nav-tabs .nav-link.active {
    background: white;
    color: var(--foreground-color);
}

/* Anchors */
.anchor-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.anchor-card:hover {
    border-color: rgba(0, 146, 203, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.anchor-header {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-card svg {
    width: 6rem;
    height: 3rem;
}

.stat-card .orange {
    color: #ff6a00 !important;
}

.allVideosIcon {
    width: 3rem;
    height: 3rem;
}

.anchor-avatar {
    width: 30rem;
    height: 13rem;
    background: rgba(255, 255, 255, 0.9);
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.anchor-card:hover .anchor-avatar {
    transform: scale(1.1);
}

.gradient-1 {
    background: linear-gradient(135deg, rgba(0, 146, 203, 0.2), rgba(0, 146, 203, 0.05));
}

.gradient-2 {
    background: linear-gradient(135deg, rgba(255, 128, 0, 0.2), rgba(255, 128, 0, 0.05));
}

.gradient-3 {
    background: linear-gradient(135deg, rgba(245, 243, 240, 1), rgba(245, 243, 240, 0.5));
}

.gradient-4 {
    background: linear-gradient(135deg, rgba(0, 146, 203, 0.15), rgba(245, 243, 240, 0.2));
}

/* Footer */
.footer-dark {
    background: var(--foreground-color);
    color: white;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dark a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-dark a:hover {
    color: var(--primary-color);
}

.text-primary {
    color: #107bb6 !important;
}

.text-destructive {
    color: hsl(0 84% 60%);
}

.fill-destructive {
    fill: hsl(0 84% 60%);
}

.fill-primary {
    fill: #107bb6 !important;
}

#videos .fade {
    background-color: rgb(255 255 255);
}

#videoModal .modal-content,
iframe.embed-responsive-item {
    height: 30rem !important;
}

@media (min-width:280px) {
    .profileBannerImg {
        height: 7rem;
    }

    .anchorsLogoBanner {
        width: 10rem;
    }
}

@media (min-width:425px) {
    .anchorsLogoBanner {
        width: 16rem;
    }
}

@media (min-width:576px) {
    .anchorsLogoBanner {
        width: 17rem;
    }
}

@media (min-width:1200px) {
    .profileBannerImg {
        height: 11rem;
    }

    .anchorsLogoBanner {
        width: 22rem;
    }
}

@media (min-width:1440px) {
    .anchorsLogoBanner {
        width: 20rem;
    }
}