/* Genel taşma kontrolü */
* {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    background-color: #f8f9fa;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand img {
    transition: transform 0.3s ease;
    height: 40px;
    width: auto;
}

.navbar-brand span {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1;
    display: inline;
    align-items: center;
}

.navbar-brand .brand-name {
    font-weight: 600;
}

.navbar-brand img:hover {
    transform: scale(1.1);
}

.video-container {
    background-color: white;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 1400px;
    margin: 40px auto;
}

.video-item {
    background-color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
    margin-bottom: 8px; /* Eskiden 20px idi, boşluğu azaltmak için düşürüldü */
}

.video-date {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    z-index: 1;
}

/* Video iframe responsive düzenlemeleri */
.video-frame-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%; /* Masaüstünde daha geniş ve tam sığması için artırıldı */
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
    max-width: 100%;
}

.video-frame-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
    max-width: 100%;
}

/* Desktop için daha geniş aspect ratio */
@media (min-width: 768px) {
    .video-frame-container {
        padding-bottom: 56.25%; /* 16:9 aspect ratio desktop için */
    }
}

/* Tablet için orta boyut */
@media (min-width: 576px) and (max-width: 767px) {
    .video-frame-container {
        padding-bottom: 100%; /* 1:1 aspect ratio tablet için */
    }
}

.ad-placeholder {
    color: #6c757d;
    text-align: center;
}

.download-btn {
    width: 100%;
    margin-top: 10px;
}

/* İndirme Uyarı Metni Stilleri */
.download-notice {
    text-align: center;
    padding: 0 10px;
}

.download-notice small {
    font-size: 0.75rem;
    line-height: 1.3;
    opacity: 0.8;
}

.download-notice .fa-info-circle {
    color: #6c757d;
}

/* Mobil için uyarı metni düzenlemeleri */
@media (max-width: 576px) {
    .download-notice small {
        font-size: 0.7rem;
    }
    
    .download-notice {
        padding: 0 5px;
    }
}

.navbar {
    margin-bottom: 20px;
}

footer {
    margin-top: 50px;
}

/* Sorumluluk Reddi Beyanı Stilleri */
.disclaimer-section {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.disclaimer-section h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.disclaimer-content {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.disclaimer-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.disclaimer-content li {
    margin-bottom: 8px;
}

.disclaimer-content p {
    margin-bottom: 15px;
}

/* İletişim Bilgisi Stilleri */
.contact-info {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Sosyal Medya İkonları Stilleri */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    color: #007bff;
}

/* Sosyal medya ikonları için özel renkler */
.social-link .fa-instagram:hover {
    color: #E1306C;
}

.social-link .fa-x-twitter:hover {
    color: #1DA1F2;
}

.social-link .fa-tiktok:hover {
    color: #69C9D0;
}

.social-link .fa-youtube:hover {
    color: #FF0000;
}

/* Filtreleme Stilleri */
.filter-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    min-width: auto;
    max-width: 100%;
}

.filter-controls .form-select, #dateFilter {
    border-radius: 20px;
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    background-color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    max-width: 100%;
    box-sizing: border-box;
}

.filter-controls input[type="date"] {
    border-radius: 20px;
    padding: 8px 15px;
    border: 1px solid #dee2e6;
    background-color: white;
    transition: all 0.3s ease;
    min-width: 140px;
    max-width: 100%;
    box-sizing: border-box;
}

.form-select:hover {
    border-color: #007bff;
}

.form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Mobil Responsive Düzenlemeler */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        margin: 0;
        padding: 10px;
    }
    
    .video-item {
        padding: 10px;
        margin-bottom: 15px;
    }
    
    .video-date {
        font-size: 0.8rem;
        padding: 3px 8px;
        top: 8px;
        right: 8px;
    }
    
    /* Video başlık ve filtreleme alanı mobil düzenlemesi */
    .video-container .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
        min-width: auto;
    }
    
    .video-container h2 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .video-container .d-flex.align-items-center.gap-2 {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        min-width: auto;
        max-width: 100%;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }
    
    .filter-controls .form-select,
    .filter-controls input[type="date"] {
        width: 100%;
        min-width: auto;
        max-width: 100%;
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .video-container label[for="dateFilter"] {
        text-align: center;
        margin-bottom: 5px;
        font-size: 1rem;
    }
    
    /* Reklam alanı mobil düzenlemesi */
    .ad-container {
        margin-top: 20px;
        min-height: 200px;
    }
    
    /* Sorumluluk reddi beyanı mobil düzenlemesi */
    .disclaimer-section {
        padding: 20px 15px;
    }
    
    .disclaimer-section h3 {
        font-size: 1.3rem;
    }
    
    .disclaimer-content {
        font-size: 0.9rem;
    }
    
    /* Sosyal medya linkleri mobil düzenlemesi */
    .social-links {
        gap: 15px;
    }
    
    .social-link {
        font-size: 20px;
    }
    
    /* İndirme butonu mobil optimizasyonu */
    .download-btn {
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .video-container {
        padding: 10px;
    }
    
    .video-item {
        padding: 8px;
    }
    
    .video-container h2 {
        font-size: 1.2rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 30px;
    }
    
    /* Video iframe mobil optimizasyonu */
    .video-frame-container {
        padding-bottom: 177.78%; /* TikTok için daha uygun aspect ratio */
    }
    
    /* Filtreleme kontrolleri daha da kompakt */
    .filter-controls .form-select,
    .filter-controls input[type="date"] {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .video-container label[for="dateFilter"] {
        font-size: 0.9rem;
    }
    
    /* Modal mobil optimizasyonu */
    .modal-dialog {
        max-width: 98%;
        margin: 0.5rem auto;
    }
    
    .modal-body {
        padding: 20px 15px;
    }
    
    .modal-body p {
        font-size: 0.9rem;
    }
    
    /* Footer mobil optimizasyonu */
    footer {
        padding: 20px 0;
    }
    
    footer p {
        font-size: 0.9rem;
    }
}

/* Tablet için orta boyut düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .video-container .d-flex.justify-content-between.align-items-center.mb-4 {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .filter-controls {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .video-container h2 {
        font-size: 1.4rem;
    }
}

/* Video grid düzenlemesi */
.video-grid {
    display: grid;
    gap: 8px; /* Eskiden 20px idi, boşluğu azaltmak için düşürüldü */
}

@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading ve hata mesajları için responsive düzenlemeler */
.alert {
    margin: 15px 0;
    padding: 15px;
    border-radius: 8px;
}

@media (max-width: 576px) {
    .alert {
        padding: 12px;
        font-size: 0.9rem;
    }
}

/* Arama Kutusu Stilleri */
.search-container {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.search-container .input-group {
    max-width: 100%;
    overflow: hidden;
}

.search-container .form-control {
    border-radius: 0 20px 20px 0;
    border-left: none;
    padding: 12px 15px;
    font-size: 1rem;
    max-width: 100%;
    box-sizing: border-box;
}

.search-container .input-group-text {
    background-color: white;
    border-radius: 20px 0 0 20px;
    border-right: none;
    color: #6c757d;
}

.search-container .btn {
    border-radius: 0 20px 20px 0;
    border-left: none;
    padding: 12px 15px;
}

.search-container .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

.search-container .form-control:focus + .input-group-text {
    border-color: #007bff;
}

/* Video başlık stilleri */
.video-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
    flex: 1;
}

.video-title:hover {
    color: #007bff;
}

/* Kategori badge stilleri */
.badge {
    font-size: 0.75rem;
    padding: 5px 10px;
    border-radius: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.bg-primary {
    background-color: #007bff !important;
}

.badge.bg-success {
    background-color: #28a745 !important;
}

/* Video başlık ve kategori düzeni */
.video-item .d-flex.justify-content-between.align-items-start {
    gap: 10px;
}

/* Arama sonuçları için highlight */
.highlight {
    background-color: #fff3cd;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}

/* Arama kutusu mobil optimizasyonu */
.search-container {
    padding: 12px;
}

.search-container .input-group {
    max-width: 100%;
}

.search-container .form-control,
.search-container .btn {
    padding: 10px 12px;
    font-size: 0.9rem;
}

/* Video başlık mobil optimizasyonu */
.video-title {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Kategori badge mobil optimizasyonu */
.badge {
    font-size: 0.7rem;
    padding: 4px 8px;
}

/* Video başlık ve kategori düzeni mobil */
.video-item .d-flex.justify-content-between.align-items-start {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.video-item .badge {
    align-self: flex-start;
}

/* Yeni Sayfalar İçin Stiller */
.content-container {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.content-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.content-section h1 {
    color: #333;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.content-section h2 {
    color: #333;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.content-section .lead {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.content-section h3 {
    color: #555;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    margin-top: 20px;
}

.content-section p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.content-section li {
    margin-bottom: 8px;
    color: #666;
    line-height: 1.6;
}

/* İletişim Sayfası Stilleri */
.contact-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #333;
    margin-bottom: 10px;
}

.contact-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
    color: #0056b3;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-media-card:hover {
    transform: translateY(-5px);
    background-color: #007bff;
    color: white;
}

.social-media-card i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.faq-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Hakkımızda Sayfası Stilleri */
.value-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
}

.step-card {
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    height: 100%;
    border: 2px solid #e9ecef;
    position: relative;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
}

.step-number {
    background-color: #007bff;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step-card h4 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-card p {
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Footer Linkleri */
.footer-links a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #007bff !important;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .content-section h1 {
        font-size: 2rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .value-card,
    .step-card {
        margin-bottom: 20px;
    }
    
    .content-section {
        padding: 20px;
    }
    
    .social-media-links {
        gap: 15px;
    }
    
    .social-media-card {
        min-width: 100px;
        padding: 15px;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 0 !important;
    }
}

@media (max-width: 576px) {
    .content-section h1 {
        font-size: 1.8rem;
    }
    
    .content-section h2 {
        font-size: 1.3rem;
    }
    
    .value-card,
    .step-card {
        padding: 20px;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .social-media-card {
        min-width: 80px;
        padding: 10px;
    }
    
    .social-media-card i {
        font-size: 1.5rem;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-links a {
        margin: 0 !important;
    }
}

/* İletişim Formu Stilleri */
.contact-form-container {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.contact-form {
    max-width: 100%;
}

.contact-form .form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check-label {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.4;
}

.contact-form .form-check-label a {
    color: #007bff;
    text-decoration: none;
}

.contact-form .form-check-label a:hover {
    text-decoration: underline;
}

.contact-form .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    border-radius: 8px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.contact-form .btn-primary:hover {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.contact-form .btn-primary:disabled {
    background: #6c757d;
    transform: none;
    box-shadow: none;
    cursor: not-allowed;
}

.contact-form .alert {
    border-radius: 8px;
    border: none;
    padding: 16px 20px;
    font-weight: 500;
}

.contact-form .alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Mobil için form düzenlemeleri */
@media (max-width: 768px) {
    .contact-form-container {
        padding: 20px;
        margin: 0 -10px;
    }
    
    .contact-form .btn-primary {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 15px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .contact-form textarea.form-control {
        min-height: 100px;
    }
}

/* Mobil için ek düzenlemeler */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: 0;
        margin-right: 0;
    }
    
    .col-12, .col-md-6, .col-md-4, .col-md-3, .col-lg-8, .col-lg-3, .col-sm-6 {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .video-container,
    .content-section,
    .content-container {
        max-width: 1400px;
        margin: 40px auto;
    }
    
    .video-item {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
    
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .navbar-brand {
        max-width: 100%;
        overflow: hidden;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links a {
        margin: 5px;
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .video-container,
    .content-section,
    .content-container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .col-12, .col-md-6, .col-md-4, .col-md-3, .col-lg-8, .col-lg-3, .col-sm-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .navbar-brand span {
        font-size: 1rem;
    }
    
    .navbar-brand img {
        height: 35px;
    }
}

/* Modal için düzenleme */
.modal-dialog {
    max-width: 95%;
    margin: 1.75rem auto;
}

@media (max-width: 576px) {
    .modal-dialog {
        max-width: 98%;
        margin: 0.5rem auto;
    }
}

/* Form elemanları için düzenleme */
.form-control, .form-select, .btn {
    max-width: 100%;
    box-sizing: border-box;
}

/* Arama kutusu için özel düzenleme */
.search-container .input-group {
    max-width: 100%;
    overflow: hidden;
}

.search-container .form-control {
    max-width: 100%;
    box-sizing: border-box;
}

/* Filtre kontrolleri için düzenleme */
.filter-controls {
    min-width: auto;
    max-width: 100%;
    flex-wrap: wrap;
}

.filter-controls .form-select,
.filter-controls input[type="date"] {
    max-width: 100%;
    box-sizing: border-box;
} 

.progress-bar {
    float: none !important;
    direction: ltr !important;
} 

.container,
.video-container,
.content-section,
.content-container,
.row,
.faq-list,
.value-list,
.step-list {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Banner Reklam Stilleri */
.banner-ad-container {
    text-align: center;
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.banner-ad {
    transition: transform 0.2s ease;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 400px;
    max-height: 333px;
}

.banner-ad:hover {
    transform: scale(1.02);
}

/* Modal içindeki banner reklamı */
#modal-banner-ad {
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

#modal-banner-ad img {
    transition: transform 0.2s ease;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    max-width: 400px;
    max-height: 333px;
}

#modal-banner-ad img:hover {
    transform: scale(1.02);
}

/* Tablet için banner reklam düzenlemeleri */
@media (max-width: 768px) {
    .banner-ad {
        max-width: 350px !important;
        max-height: 292px !important;
    }
    #modal-banner-ad img {
        max-width: 350px !important;
        max-height: 292px !important;
    }
}

/* Mobil için banner reklam düzenlemeleri */
@media (max-width: 576px) {
    .banner-ad {
        max-width: 320px !important;
        max-height: 267px !important;
    }
    #modal-banner-ad img {
        max-width: 320px !important;
        max-height: 267px !important;
    }
} 

 