:root {
    --primary-color: #0f0c20;
    --secondary-color: #161233;
    --accent-gradient: linear-gradient(135deg, #ff2a5f 0%, #ff7e40 100%);
    --purple-gradient: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    --dark-gradient: linear-gradient(180deg, #0f0c20 0%, #1b163d 100%);
    --pink-accent: #ff2a5f;
    --red-accent: #e63946;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --text-light: #ffffff;
    --bg-light: #f3f4f6;
    --bg-white: #ffffff;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 30px;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.1);
    --font-main: 'Inter', sans-serif;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Custom Buttons */
.btn-accent {
    background: var(--accent-gradient);
    color: var(--text-light);
    border: none;
    border-radius: var(--border-radius-xl);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-accent:hover {
    opacity: 0.9;
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 42, 95, 0.3);
}

.btn-outline-light-custom {
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: var(--text-light);
    border-radius: var(--border-radius-xl);
    padding: 10px 24px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-light-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-light);
    color: var(--text-light);
}

/* Shared Cards */
.custom-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: none;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    overflow: hidden;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Standardized Unified Cards */
.standard-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    overflow: hidden;
    cursor: pointer;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.standard-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background-color: transparent !important;
    border-radius: 15px 15px 0 0 !important;
    clip-path: inset(0 round 15px 15px 0 0);
}

.standard-card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 15px 15px 0 0 !important;
    overflow: hidden !important;
    display: block;
    transition: transform 0.5s ease;
}

.detail-featured-image-frame {
    width: 100%;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 0;
}

.detail-featured-image {
    width: auto !important;
    height: auto !important;
    max-width: 100% !important;
    max-height: 480px !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 15px !important;
    clip-path: inset(0 round 15px);
    display: block !important;
    background: transparent !important;
}

.interview-play-btn {
    display: none !important;
    pointer-events: none !important;
}

.standard-card:hover .standard-card-img {
    transform: scale(1.05);
}

.standard-card-body {
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.standard-card-category {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.standard-card-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
}

.standard-card-summary {
    font-size: 0.76rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
}

.standard-card-meta {
    margin-top: auto; /* Push metadata to the bottom to align perfectly */
    padding-top: 8px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.68rem;
    color: var(--text-muted);
}

.standard-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Shared Utilities */
.bg-dark-theme {
    background: var(--dark-gradient);
    color: var(--text-light);
}

.text-accent {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header/Navbar base */
header.site-header {
    background-color: var(--primary-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Global Content Spacing */
section {
    padding: 60px 0;
}
