body {
    background-color: #1a1a1a;
    color: #fff;
    font-family: 'Arial', sans-serif;
}

.navbar {
    background-color: #1a1a1a;
    border-bottom: 2px solid #e64c29;
}

.navbar-nav .fa {
    font-size: 1.2rem; 
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand span{
    color: #e64c29;
}

.hero-section, .featured-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    padding: 50px 0;
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-section .bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    filter: blur(15px);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    background: #0000008a;
    border-radius: 15px;
    padding: 25px;
}

.section {
    background-color: #1a1a1a;
}

.card {
    border: none;
    transition: transform 0.3s;
}

.card:hover {
    transform: scale(1.05);
}

.card-img-top {
    border-radius: 10px;
}

.btn-danger {
    background-color: #e64c29;
    border: none;
}

.btn-outline-danger {
    border-color: #e64c29;
    color: #e64c29;
}

.btn-outline-danger:hover {
    background-color: #e64c29;
    color: #fff;
}

.btn-warning {
    background-color: #079cff;
    border-color: #079cff;
}
.btn-warning:hover {
    background-color: #046eb4;
    border-color: #046eb4;
}

.videoList .videoCard{
    display: block;
    height: 100%;
}

.videoList .videoCard > * {
    height: 100%;
}

.footer {
    background-color: #1a1a1a;
    border-top: 2px solid #e64c29;   
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer a {
    text-decoration: none;
    color: #fff;
}

.footer a:hover {
    color: #e64c29;
}

.newsCard{
    margin-bottom: 15px;
}