   body {
        background-color: #141414;
        color: #fff;
        font-family: 'Arial', sans-serif;
    }

    .game-container-custom {
        padding: 20px;
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Banner Slider Stili */
    .carousel-inner img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .search-menu-custom {
        width: 100%;
        max-width: 1200px;
        margin: 20px auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #1e1e1e;
        padding: 10px 20px;
        border-radius: 8px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
    }

    .search-filter-custom {
        display: flex;
        align-items: center;
        width: 100%;
    }

    .dropdown-custom {
        position: relative;
        display: inline-block;
        margin-right: 10px;
    }

    .dropdown-btn-custom {
        padding: 8px 15px;
        background: #ff9400;
        border: none;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s;
    }

    .dropdown-btn-custom:hover {
        background: #e58300;
    }

    .dropdown-content-custom {
        display: none;
        position: absolute;
        background-color: #1e1e1e;
        min-width: 220px;
        box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5);
        z-index: 1;
        border-radius: 8px;
        overflow-y: auto;
        max-height: 300px;
    }

    .dropdown-content-custom .provider-item-custom {
        display: flex;
        align-items: center;
        padding: 10px;
        background: #282828;
        color: #fff;
        border-bottom: 1px solid #333;
        cursor: pointer;
        transition: background 0.3s;
    }

    .dropdown-content-custom .provider-item-custom img {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .dropdown-content-custom .provider-item-custom:hover {
        background: #ff9400;
    }

    .dropdown-custom:hover .dropdown-content-custom {
        display: block;
    }

    .search-input-custom {
        padding: 8px 15px;
        border: none;
        border-radius: 5px;
        width: 100%;
        max-width: 500px;
        outline: none;
        background: #282828;
        color: #fff;
    }

    .custom-game-grid {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 20px;
    }

    .casino-item-custom {
        position: relative;
        width: calc(12.5% - 10px);
        height: 150px;
        margin: 5px;
        overflow: hidden;
        border-radius: 15px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
        cursor: pointer;
        transition: transform 0.3s;
    }

    .casino-item-custom img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        border-radius: 15px 15px 0 0;
    }

    .casino-item-custom:hover {
        transform: scale(1.05);
    }

    .game-info-custom {
        background: #1e1e1e;
        padding: 5px;
        text-align: center;
        font-size: 12px;
        border-radius: 0 0 15px 15px;
    }

    .game-name-custom {
        font-size: 12px;
        color: #fff;
    }

    .game-section-custom {
        font-size: 10px;
        color: #ff9400;
    }

    /* Mobilde 2 sütun görünüm */
    @media (max-width: 768px) {
        .casino-item-custom {
            width: calc(50% - 10px); /* Mobilde 2 sütun */
            height: auto;
        }

        .game-info-custom {
            font-size: 10px;
        }

        .search-input-custom {
            width: 80%;
        }
    }
    