
/* Banner Reklam Alanı */
.banner-ad {
    width: 100%;
    min-height: 100px;
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border-radius: 10px;
    margin: 15px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(59, 130, 246, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.banner-ad:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.banner-ad::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: all 0.6s ease;
    z-index: 1;
}

.banner-ad:hover::before {
    left: 100%;
}

/* Banner Link Styling */
.banner-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
    border-radius: 10px;
    overflow: hidden;
}

/* Banner Image Styling */
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

/* Banner Overlay */
.banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
    z-index: 2;
}

.banner-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #3b82f6;
}

.banner-description {
    font-size: 12px;
    color: #ccc;
    margin: 0;
}

/* HTML Banner Content */
.banner-html {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

/* Varsayılan Banner Content */
.banner-content {
    text-align: center;
    color: #3b82f6;
    z-index: 2;
    position: relative;
}

.banner-content .banner-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 3px;
}

.banner-subtitle {
    font-size: 11px;
    color: #ccc;
}

/* Orta Banner Özel Styling */
.banner-middle {
    margin: 25px 0;
    min-height: 120px;
}

/* İlk banner (üst) özel margin */
.main-content .banner-ad:first-of-type {
    margin-top: 25px;
}

/* Casino Grid */
.casino-grid-top,
.casino-grid-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 19px;
    margin-top: 12px;
    margin-bottom: 50px;
}

.casino-grid-top {
    margin-bottom: 100px;
}

.casino-card {
    background: linear-gradient(135deg, #1a1a2e, #2a2a4e);
    border-radius: 18px;
    padding: 28px 28px 20px 28px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 31px rgba(0, 0, 0, 0.3);
    height: auto;
    min-height: 320px;
}

.mobile-card-link {
    display: none;
}

.casino-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: all 0.6s ease;
}

.casino-card:hover::before {
    left: 100%;
}

.casino-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.2);
}

.casino-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.casino-logo {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.casino-logo:hover {
    transform: scale(1.05);
}

.casino-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.casino-logo:hover img {
    filter: brightness(1.1);
}

.casino-features {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.feature-tag {
    background: linear-gradient(45deg, #3b82f6, #10b981);
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 9px;
    font-weight: bold;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 3px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    font-size: 8px;
}

.casino-bonus {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
    padding: 12px;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    font-size: 13px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 15px;
    line-height: 1.3;
}

.casino-actions {
    display: flex;
    gap: 10px;
}

.action-btn {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 12px;
}

.btn-primary {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 2px solid #10b981;
}

.btn-secondary {
    background: linear-gradient(45deg, #2a2a4e, #1a1a2e);
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

/* --- RESPONSIVE --- */
@media (max-width: 1400px) {
    .casino-grid-top, .casino-grid-bottom {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1000px) {
    .casino-grid-top, .casino-grid-bottom {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .casino-grid-top, .casino-grid-bottom {
        gap: 8px;
        margin-bottom: 15px;
    }

    .casino-card {
        margin-bottom: 8px;
        padding: 15px;
        min-height: auto;
    }

    .casino-card .casino-features,
    .casino-card .casino-actions {
        display: none;
    }

    .mobile-card-link {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        border-radius: 18px;
    }

    .casino-bonus {
        margin-bottom: 8px;
    }

    .casino-features {
        margin-bottom: 8px;
    }

    .casino-header {
        margin-bottom: 8px;
    }

    .banner-ad {
        margin: 10px 0;
        min-height: 80px;
    }

    .banner-middle {
        min-height: 100px;
    }

    .banner-title {
        font-size: 14px;
    }

    .banner-description {
        font-size: 11px;
    }

    .banner-overlay {
        padding: 10px;
    }
}