.hero-section {
    background: linear-gradient(135deg, #D0662A 25%, #25140a 100%);
    color: white;
    padding: 60px 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.hero-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.social-cta {
    background-color: #f8f9fa;
    padding: 50px 20px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

[data-bs-theme="dark"] .social-cta {
    background-color: #2b2b2b;
}

.social-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.social-icons-large a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #D0662A 0%, #25140a 100%);
    border-radius: 50%;
    transition: transform 0.3s ease;
    color: white;
}

.social-icons-large a:hover {
    transform: scale(1.1);
}

.video-placeholder {
    background-color: #e9ecef;
    border: 3px dashed #6c757d;
    border-radius: 15px;
    padding: 80px 20px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
}

[data-bs-theme="dark"] .video-placeholder {
    background-color: #343a40;
    border-color: #495057;
}

.video-placeholder::before {
    content: "▶";
    font-size: 80px;
    color: #6c757d;
    opacity: 0.3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-placeholder h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.video-placeholder p {
    font-size: 1.1rem;
    color: #6c757d;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

[data-bs-theme="dark"] .feature-card {
    background-color: #2b2b2b;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.badge-coming-soon {
    background: linear-gradient(135deg, #D0662A 0%, #25140a 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: inline-block;
    margin-top: 15px;
    border: #2b2b2b 2px solid;
}