/* Ana Stiller */
body {
    background-color: #2a2a2a;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #e0e0e0;
}

/* Header Stili */
.site-header {
    background-color: #1a1a2e;
    color: white;
    padding: 0.5rem 0;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.site-logo img {
    height: 40px;
    margin-right: 10px;
}

.site-logo span {
    font-size: 1.5rem;
    font-weight: 600;
}

.user-section {
    display: flex;
    align-items: center;
}

.user-info {
    display: flex;
    align-items: center;
    margin-right: 15px;
    color: white;
}

.user-info img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin-right: 10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Container Stili */
.main-container {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content-card {
    background-color: #333333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 2rem;
    margin-bottom: 2rem;
}

/* Kart Stilleri */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #3a3a3a;
}

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

.card-img-top {
    height: 200px;
    object-fit: contain;
    background-color: #2c2c2c;
    padding: 10px;
    border-bottom: 1px solid #444;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #e0e0e0;
}

.card-text {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* NSFW Rozeti */
.nsfw-badge {
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

/* Admin Kontrolleri */
.admin-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.admin-controls .btn {
    border-radius: 4px;
    font-size: 0.85rem;
    padding: 0.4rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Spray Resmi */
.spray-image {
    cursor: pointer;
    transition: opacity 0.2s;
}

.spray-image:hover {
    opacity: 0.9;
}

/* Yaş Doğrulama Modal */
#ageVerificationModal .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#ageVerificationModal .modal-header {
    background-color: #1a1a2e;
    color: white;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 1.5rem;
}

#ageVerificationModal .modal-body {
    padding: 2rem;
}

.modal-content {
    background-color: #333333;
    color: #e0e0e0;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #444;
}

.modal-footer {
    border-top: 1px solid #444;
}

#ageVerificationModal .btn {
    padding: 0.75rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Footer Stili */
footer {
    background-color: #333333;
    padding: 1.5rem 0;
    border-top: 1px solid #444;
    margin-top: 3rem;
}


/* Responsive Ayarlar */
@media (max-width: 768px) {
    .header-container {
        padding: 0.5rem 1rem;
        flex-direction: column;
        text-align: center;
    }

    .site-logo {
        margin-bottom: 1rem;
    }

    .user-section {
        flex-direction: column;
        gap: 10px;
    }

    .user-info {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .admin-controls {
        flex-direction: column;
    }

    .admin-controls .btn {
        width: 100%;
    }

    .content-card {
        padding: 1.5rem 1rem;
    }
}

/* Yükleme Göstergesi Stilleri */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(42, 42, 42, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}

#previewLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
}

/* Spray Resmi Konteyneri */
.spray-container {
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
}

/* Appeal Section Styles */
.appeal-section {
    border-top: 1px solid #dee2e6;
    padding-top: 1rem;
}

.appeal-section .btn {
    width: 100%;
    font-weight: 500;
}

/* Modal Enhancements */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    border-radius: 15px 15px 0 0;
}

.form-check-label {
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.form-check-label:hover {
    background-color: #f8f9fa;
}

.form-check-input:checked + .form-check-label {
    background-color: #e3f2fd;
    color: #1976d2;
}

#detailsSection {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

/* User Profile Card Enhancements */
.user-profile-card {
    background: #404040;
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #555;
}

.user-details {
    margin-top: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid #555;
}

.detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    font-weight: 500;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.detail-value {
    font-family: 'Segoe UI', sans-serif;
    color: #e0e0e0;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    font-family: 'Courier New', monospace;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}