body {
    display: flex;
    margin: 0;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth; /* Smooth scrolling */
    background: #E5E1E6;
    font-family: "Rowdies", serif;
    font-weight: 700;
    font-style: normal;
}
.main {
    display: flex;
    flex-grow: 1;
    width: 100%;
}


.sidebar {
    width: 300px;
    background-color: #2c3e50;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    transition: transform 0.3s ease-in-out;
    z-index: 1000;
}
.sidebar.closed {
    transform: translateX(-300px); /* Sidebar gizlendiğinde sola kayar */
}
.sidebar-logo {

    text-align: center;
}
.sidebar-logo img {
    width: 300px;
    height: auto;
}
.sidebar-menu {
    width: 100%;
    margin-top: 20px;
}
.sidebar-menu a {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.3s;
    margin-bottom: 10px;
}
.sidebar-menu a:hover {
    background-color: #34495e;
    transform: translateX(10px);
}
.sidebar-menu a .fa {
    margin-right: 15px;
    font-size: 1.4rem;
}
.sidebar-banner {
    margin-top: auto;
    margin-bottom: 20px;
    width: 260px;
}
.sidebar-banner img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.hamburger {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    background-color: #2c3e50;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    margin-left: 300px;
    transition: margin-left 0.3s ease-in-out;
}

.content.shifted {
    margin-left: 0;
}

.carousel-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 25px;
}


/* Card */
.card {
    border-radius: 10px;
    overflow: hidden;
}

/* Görsel Hover Butonu */
.btn-floating {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    background-color: rgba(52, 58, 64, 0.8); /* Sidebar renginde yarı şeffaf */
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: opacity 0.3s, transform 0.3s;
}
.card:hover .btn-floating {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1); /* Hafif büyüme efekti */
}

/* Alt Buton */
.btn-sidebar {
    background-color: #2c3e50; /* Sidebar rengi */
    color: white;
    width: 100%;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 0 0 5px;
    text-align: center;
}
.btn-sidebar:hover {
    background-color: #495057; /* Daha açık bir ton */
}

.play-icon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0);
    opacity: 0;
    transition: opacity 0.3s, color 0.3s;
}
.card:hover .play-icon {
    color: rgba(255, 255, 255, 1);
    opacity: 1;
}
.section-header {
    background-color: #2c3e50; /* Sliderdaki renk ile aynı */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Hafif gölge efekti */
    border-radius: 10px;
}
.section-header h3 {
    font-weight: bold;
    text-align: center;
}

footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
footer a {
    color: #007bff;
    text-decoration: none;
}
.special-card {
    border-radius: 20px;
    overflow: hidden;
    background-color: #f8f9fa; /* Kartın arka plan rengi */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15); /* Daha belirgin gölge */
    border: 2px solid #2c3e50; /* Çerçeve rengi */
}
.special-card-img {
    width:  175px;
    height: 80px;
    object-fit: cover;
    border-bottom: 2px solid #2c3e50;
}
.special-card-body {
    padding: 5px;
}
.special-card-title {
    font-size: 1.5rem;
    color: #2c3e50; /* Başlık rengi */
    margin-bottom: 10px;
}
.special-card-text {
    font-size: 1rem;
    color: #495057; /* Açıklama metni rengi */
    margin-bottom: 0;
}
.special-card-footer {
    background-color: #2c3e50; /* Footer arka plan rengi */
    border-top: 2px solid #2c3e50;
}
.special-btn {
    background-color: #2c3e50; /* Buton arka plan rengi */
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 0 0 8px 8px;
    transition: background-color 0.3s;
}
.special-btn:hover {
    background-color: #6c757d; /* Hover durumunda daha açık bir renk */
}


.footer-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #2c3e50; /* Ana renk */
    z-index: 1050;
    border-top: 1px solid #495057; /* Ayırıcı çizgi */
    height: 60px; /* Daha ince görünüm */
    display: flex;
    align-items: center;
}
.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 0.75rem;
    transition: color 0.3s, background-color 0.3s;
    height: 100%;
}
.footer-link i {
    font-size: 1.4rem;
    margin-bottom: 3px;
}
.footer-link:hover {
    background-color: #34495e; /* Hover rengi */
    color: #ffffff;
}
.footer-menu .col {
    border-right: 1px solid #495057; /* Sütunlar arasında çizgi */
}
.footer-menu .col:last-child {
    border-right: none;
}

/* Bildirim Butonu */
.fixed-notification-btn {
    position: fixed;
    bottom: 80px;
    right: 15px;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1050;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}
.fixed-notification-btn:hover {
    background-color: #34495e;
    transform: scale(1.1);
}
.fixed-notification-btn i {
    font-size: 1.5rem;
}


.notification-alert {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #e74c3c; /* Kırmızı renk */
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    border-radius: 50%;
    padding: 5px 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    z-index: 1060;
    animation: pulse 1.5s infinite;
}

/* Alert Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

#notificationsModal {
    z-index: 9999;
}

/* Modal Genel Ayarları */
#notificationsModal .notifications-modal {
    background-color: #2c3e50; /* Sidebar renginde arka plan */
    color: white;
    border-radius: 0; /* Fullscreen için köşeleri sıfırla */
}

#notificationsModal .notifications-modal-title {
    font-size: 1.8rem;
    color: #ffffff;
}

#notificationsModal .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
}

#notificationsModal .modal-body {
    padding: 20px;
}

/* Kart */
#notificationsModal .notifications-modal-card {
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#notificationsModal .notifications-modal-card .card-img-top {
    width: 100%;
    height: auto;
    border-bottom: 1px solid #ddd;
}

/* Buton */
#notificationsModal .notifications-modal-card .btn-notifications {
    background-color: #2c3e50; /* Sidebar rengi */
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

#notificationsModal .notifications-modal-card .btn-notifications:hover {
    background-color: #495057;
}

.game-card {
    cursor: pointer;
}


@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    .content {
        margin-left: 0;
    }
}
