.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.news-card {
    transition: transform 0.3s;
    background-color: #1e1e1e;
    border: 1px solid #333;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.blog-quote {
    border-left: 4px solid #6c757d;
    padding-left: 1rem;
}

.card {
    background-color: #1e1e1e;
    border: 1px solid #333;
    color: #e0e0e0;
}

.text-muted {
    color: #9e9e9e !important;
}

/* Карусель в темной теме */
.carousel-caption {
    background-color: rgba(30, 30, 30, 0.85);
    border-radius: 0.3rem;
    padding: 1rem;
    
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 2.5rem;
    height: 2.5rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
}

.new-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
}



.device-icon {
    width: 20px;
    height: 20px;
    filter: invert(0.8);
}

.game-image {
height: 500px;
object-fit: cover;
object-position: center;
transition: transform 0.3s ease;
}

.game-image:hover {
transform: scale(1.02);
}

/* Для миниатюр в других местах */
.game-thumbnail {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 8px;
border: 2px solid #333;
}
.player-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: center;
}
.player-avatar {
    width: 256px;
    height: 256px;
    border-radius: 5%;
    margin: 0 auto 10px;
    object-fit: cover;
    background-color: #3a3a3a;
}
.user-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}
.guest-message {
    font-size: 0.9rem;
    color: #aaa;
}
.main-content-area {
    background-color: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin: 0 15px 20px;
}