/* ============================================
   Лазертаг клуб "Воины Света" - Военная тематика
   ============================================ */

:root {
    --primary-color: #2d5016;        /* Темно-зеленый (камуфляж) */
    --primary-dark: #1a3009;         /* Очень темно-зеленый */
    --primary-light: #4a7c2a;        /* Светло-зеленый */
    --accent-color: #ff6b35;         /* Оранжевый (лазер) */
    --accent-dark: #e55a2b;          /* Темно-оранжевый */
    --danger-color: #dc3545;         /* Красный */
    --dark-color: #1a1a1a;           /* Почти черный */
    --light-color: #f5f5f5;          /* Светло-серый */
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --bg-camo: #3a4a2a;              /* Камуфляжный фон */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

/* ============================================
   Navigation
   ============================================ */

#mainNav {
    background: rgba(45, 80, 22, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

#mainNav.scrolled {
    background: rgba(26, 48, 9, 0.98) !important;
    padding: 0.5rem 0;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    color: rgba(255,255,255,0.9) !important;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
	width: 100%;
}

.btn-cta-nav {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--accent-color) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    color: white !important;
}

.btn-cta-nav:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

/* ============================================
   Hero Section
   ============================================ */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
	width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    will-change: opacity;
}

.hero-slide.active {
    opacity: 1;
    z-index: 0;
}

/* Предзагрузка первого изображения */
.hero-slide:first-child {
    opacity: 1;
    z-index: 0;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.hero-title {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9), 0 0 20px rgba(0,0,0,0.5);
    color: white !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-title .text-primary {
    color: var(--accent-color) !important;
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.8), 2px 2px 10px rgba(0,0,0,0.9);
    display: inline-block;
}

.hero-subtitle {
    text-shadow: 2px 2px 10px rgba(0,0,0,0.9), 0 0 15px rgba(0,0,0,0.5);
    color: white !important;
    font-weight: 500;
    font-size: 1.25rem;
}

.hero-cta {
    margin-top: 2rem;
}

.btn-cta {
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    background: var(--accent-color) !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white !important;
}

.btn-cta:hover {
    background: var(--accent-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--accent-color);
    font-size: 2rem;
    animation: bounce 2s infinite;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   Quick CTA Bar
   ============================================ */

.quick-cta-bar {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

/* ============================================
   Sections
   ============================================ */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
	position: relative;
    display: inline-block;
    color: var(--primary-dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* ============================================
   Feature Cards
   ============================================ */

.feature-card {
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid #e9ecef;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.feature-icon i,
.feature-icon svg {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.feature-icon svg {
    color: white;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--primary-color);
}

/* ============================================
   Pricing Cards
   ============================================ */

.pricing-card {
    background: white;
    border-radius: 20px;
    border: 3px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 80, 22, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-badge.bg-warning {
    background: var(--accent-color) !important;
    color: white;
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.pricing-features {
    text-align: left;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Game Cards
   ============================================ */

.game-card {
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.15);
    border-color: var(--primary-light);
}

.game-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

/* ============================================
   Gallery
   ============================================ */

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    border-color: var(--accent-color);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ============================================
   Contact Section
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-item {
    padding: 1.5rem;
}

.contact-item h5,
.contact-item h4,
.contact-item h3,
.contact-item h2,
.contact-item h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 8px rgba(255, 107, 53, 0.5));
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 107, 53, 0.5);
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: var(--text-dark) !important;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 1) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
    outline: none;
}

.form-control-custom::placeholder {
    color: #6c757d;
}

/* ============================================
   Buttons
   ============================================ */

.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.4);
}

.btn-warning {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
}

.btn-warning:hover {
    background-color: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline-primary {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.btn-outline-warning {
    border-color: var(--accent-color) !important;
    color: var(--accent-color) !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-outline-warning:hover {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: var(--dark-color) !important;
}

/* ============================================
   Floating CTA Button
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-cta .btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color) !important;
    border: none !important;
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.6);
    transition: all 0.3s ease;
}

.floating-cta .btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.8);
    background: var(--accent-dark) !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* ============================================
   Page Header
   ============================================ */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    margin-top: 76px;
    padding: 4rem 0;
}

.page-header h1,
.page-header h2,
.page-header h3,
.page-header h4,
.page-header h5,
.page-header h6,
.page-header p,
.page-header .lead,
.page-header * {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.page-header .section-title {
    color: white !important;
}

.page-header .section-title::after {
    background: var(--accent-color);
}

/* ============================================
   Content Blocks
   ============================================ */

.content-block {
    margin-bottom: 3rem;
}

.steps-timeline {
	position: relative;
    padding-left: 3rem;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 1.5rem;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.step-item {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.step-number {
    position: absolute;
    left: -3rem;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
}

.recommendation-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.recommendation-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 1s ease;
}

.animate-fade-in-delay {
    animation: fadeInUp 1.2s ease;
}

.animate-fade-in-delay-2 {
    animation: fadeInUp 1.4s ease;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in-up.visible {
	opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-cta .btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .steps-timeline {
        padding-left: 2rem;
    }
    
    .step-number {
        left: -2rem;
        width: 2.5rem;
        height: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ============================================
   Additional Components
   ============================================ */

.stat-card {
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.15);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.5rem 0;
}

.advantage-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(45, 80, 22, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-card {
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.15);
    border-color: var(--primary-color);
}

.contact-card .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
}

.cta-box {
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cta-box:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
}

.quick-contact-box {
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.2);
}

.about-image-wrapper img {
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.02);
}

/* ============================================
   Testimonials
   ============================================ */

.testimonial-card {
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 80, 22, 0.15);
    border-color: var(--primary-light);
}

.testimonial-rating {
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e9ecef;
    padding-top: 1rem;
}

/* ============================================
   Video Player
   ============================================ */

.video-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.video-wrapper:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transform: translateY(-2px);
}

.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    border-radius: 15px;
    display: block;
}

/* Стили для элементов управления видео */
.video-player::-webkit-media-controls-panel {
    background-color: rgba(0, 0, 0, 0.5);
}

/* Уменьшение размера кнопки play в панели управления */
.video-player::-webkit-media-controls-play-button {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    border-radius: 50%;
    background-color: var(--accent-color) !important;
    margin: 0 8px !important;
}

/* Большая центральная кнопка play (когда видео приостановлено) */
.video-player::-webkit-media-controls-start-playback-button {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    border-radius: 50% !important;
    background-color: var(--accent-color) !important;
    opacity: 0.9;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    z-index: 10;
    margin: 0 !important;
}

/* Для Firefox */
.video-player::-moz-media-controls-play-button {
    width: 60px;
    height: 60px;
}

/* Ограничение размера всех элементов управления */
.video-player::-webkit-media-controls-enclosure {
    max-width: 100%;
    overflow: hidden;
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    .video-wrapper {
        margin-bottom: 2rem;
    }
    
    .video-player {
        border-radius: 10px;
    }
    
    .video-player::-webkit-media-controls-start-playback-button {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    .video-wrapper {
        margin-bottom: 2rem;
    }
    
    .video-player {
        border-radius: 10px;
    }
}

/* ============================================
   Utility Classes
   ============================================ */

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-dark {
    background-color: var(--dark-color) !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loading.loaded {
    opacity: 1;
}
