/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --accent-color: #2481cc; /* Telegram link blue - unified across site */
    --accent-darker: #2481cc; /* Telegram link blue for buttons */
    --accent-hover: #3390ec; /* Lighter blue for hover states */
    --text-color: #ffffff; /* White */
    --text-secondary: #ffffff; /* White for subtitles */
    --bg-dark: #000000;
    --bg-darker: #000000;
    --spacing-xl: 120px;
    --spacing-lg: 80px;
    --spacing-md: 40px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 60px;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10,10,10,0.9) 0%, rgba(10,10,10,0) 100%);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.logo-video {
    height: 60px;
    width: auto;
    display: block;
    object-fit: contain;
    max-width: 150px;
}

/* Fallback if video doesn't load */
.logo:has(.logo-video:not([src])) {
    font-size: 24px;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--accent-color); /* Gold */
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff; /* White on hover */
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: #000000;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-video {
    max-width: 800px;
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .hero-logo-video {
        max-width: 560px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-title .line {
    display: block;
}

.hero-title .highlight {
    background: linear-gradient(90deg, var(--accent-color), #ff8c5a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: var(--accent-darker);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    background: var(--accent-hover); /* Lighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--text-secondary) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.3; }
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    color: var(--accent-color); /* Gold */
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 300;
}

/* What We Do Section */
.what-we-do {
    background: var(--bg-darker);
    padding-bottom: 40px; /* Reduce bottom spacing */
}

.content-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.content-text .lead {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Beyond The Lens */
.beyond-lens {
    background: var(--bg-dark);
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(255,107,53,0.05) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.split-image .image-placeholder::after {
    content: '🎬';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    opacity: 0.3;
}

.beyond-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.split-text .emphasis {
    color: var(--text-color);
    font-weight: 600;
    font-size: 20px;
}

/* Services Section */
.services {
    background: var(--bg-darker);
    padding-top: 40px; /* Reduce top spacing */
    padding-bottom: 60px; /* Reduce bottom spacing */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: rgba(255,255,255,0.03);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    cursor: default;
}

.service-card-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255,107,53,0.05);
    border-color: rgba(255,107,53,0.3);
    transform: translateY(-5px);
}

.service-card-link:hover {
    background: rgba(212,175,55,0.08);
    border-color: var(--accent-color);
}

/* Service icons removed for compact layout */

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* About Section */
.about {
    background: var(--bg-dark);
    text-align: center;
    padding: 60px 0; /* Increased padding for content */
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-tagline {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.emphasis.large {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 300;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 700;
}

/* Contact Section */
.contact {
    background: var(--bg-darker);
    text-align: center;
    padding-top: 60px; /* Reduce top spacing */
}

.contact-subtitle {
    font-size: 24px;
    color: var(--text-secondary);
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact-button {
    display: inline-block;
    padding: 20px 60px;
    background: var(--accent-darker);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.4);
}

.location {
    font-size: 16px;
    color: var(--text-secondary);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 80px;
        --spacing-lg: 60px;
    }
    
    .navbar {
        padding: 20px 30px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .split-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 48px;
    }
}

/* Contact Form Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #1a1a1a;
    border: 2px solid var(--accent-darker);
    border-radius: 10px;
    padding: 50px;
    max-width: 600px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--accent-color);
}

.modal h2 {
    font-size: 36px;
    font-weight: 900;
    color: var(--accent-darker);
    margin-bottom: 20px;
    text-align: center;
}

.modal-intro {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 30px;
    padding: 0 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    background: #000000;
    border: 2px solid #333;
    border-radius: 5px;
    color: var(--text-color);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-darker);
}

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

.form-submit {
    padding: 18px 48px;
    background: var(--accent-darker);
    color: var(--text-color);
    border: none;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: 10px;
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 117, 32, 0.4);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.form-status {
    text-align: center;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.form-status.error {
    display: block;
    background: rgba(244, 67, 54, 0.2);
    color: #f44336;
    border: 1px solid #f44336;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal h2 {
        font-size: 28px;
    }
}


/* ========================================
   CONTACT PAGE - SPLIT LAYOUT
   ======================================== */

.contact-split-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    padding-top: 80px;
}

/* Left Side - Black with Gold accents */
.contact-left {
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
}

.contact-left-content {
    max-width: 500px;
    color: var(--text-color);
    text-align: center;
}

/* Arrow Divider */
.arrow-divider {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 2px;
}

.arrow-line {
    width: 120px;
    height: 2px;
    background: var(--accent-color);
    position: relative;
}

.arrow-line::before,
.arrow-line::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
}

.arrow-line::before {
    left: -8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 8px solid var(--accent-color);
    transform: translateY(-50%);
}

.arrow-line::after {
    right: -8px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid var(--accent-color);
    transform: translateY(-50%);
}

/* Text Styles */
.embark-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.brand-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.revolution-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
    font-weight: 400;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: var(--accent-darker);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Right Side - Light gray with form */
.contact-right {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.contact-right-content {
    max-width: 600px;
    width: 100%;
}

.form-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.form-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

/* Contact Form */
.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}

.required {
    color: #e74c3c;
}

.form-field input,
.form-field textarea {
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 5px;
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent-darker);
    box-shadow: 0 0 0 3px rgba(139, 117, 32, 0.1);
}

.form-field textarea {
    resize: vertical;
}

.submit-button {
    padding: 18px 50px;
    background: transparent;
    color: var(--accent-darker);
    border: 2px solid var(--accent-darker);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    align-self: flex-start;
}

.submit-button:hover {
    background: var(--accent-darker);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 117, 32, 0.3);
}

.submit-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.contact-footer {
    background: #2c2c2c;
    padding: 30px 0;
    color: #ffffff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 968px) {
    .contact-split-full {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }
    
    .contact-left,
    .contact-right {
        padding: 60px 30px;
    }
    
    .brand-title {
        font-size: 38px;
    }
    
    .form-title {
        font-size: 36px;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-left,
    .contact-right {
        padding: 40px 20px;
    }
    
    .brand-title {
        font-size: 32px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .submit-button {
        width: 100%;
    }
}

/* Video Carousel Section */
.work-carousel {
    background: #000;
    padding: 40px 0 100px 0; /* Reduce top padding, keep bottom */
    overflow: hidden;
}

.carousel-wrapper {
    position: relative;
    margin: 60px 0;
    padding: 0 60px;
}

.carousel-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.carousel-slide {
    min-width: calc(33.333% - 20px);
    flex-shrink: 0;
}

.video-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

.video-placeholder svg {
    opacity: 0.3;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card:hover .video-placeholder svg {
    opacity: 0.8;
    transform: scale(1.2);
}

.thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.7;
}

.video-card:hover .play-button-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.15);
}

.video-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.video-description {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-slide {
        min-width: calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .carousel-slide {
        min-width: 100%;
    }
    
    .carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .video-title {
        font-size: 1.25rem;
    }
}

/* Placeholder Video Cards */
.placeholder-card {
    cursor: default;
}

.placeholder-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.placeholder-content p {
    margin-top: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
}

.placeholder-card .video-title,
.placeholder-card .video-description {
    color: rgba(255, 255, 255, 0.5);
}

/* About Section Image */
.about-image {
    width: 375px;
    height: 375px;
    object-fit: cover;
    object-position: top; /* Crop from bottom, keep top (face/hat) */
    border-radius: 20px;
    display: block;
}

/* About Section Text Alignment */
.about .split-text {
    text-align: left;
}
