/* Genel Stiller */
:root {
    --primary-color: #28a745;
    --secondary-color: #218838;
    --dark-color: #1e7e34;
    --betting-gradient: linear-gradient(120deg, #006400, #33cc33);
    --betting-hover: linear-gradient(120deg, #005000, #2eb82e);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
}



.navbar-brand {
    color: white !important;
    font-weight: bold;
}

/* Kupon Kartları */
.coupon-card {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.3s ease;
}

.coupon-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.card-header {
    background: var(--betting-gradient);
    color: white;
    border-bottom: none;
    padding: 1rem;
}

.card-header h5 {
    margin: 0;
    font-weight: 600;
}

.card-header .text-muted {
    color: rgba(255,255,255,0.8) !important;
}

/* Maç Listesi */
.matches-list {
    background-color: #fff;
    max-height: 300px;
    overflow-y: auto;
}

.match-item {
    transition: background-color 0.2s;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.match-item:hover {
    background-color: #f8f9fa;
}

.match-item:last-child {
    border-bottom: none;
}

.match-info .teams {
    color: #2c3e50;
    font-size: 0.95rem;
    font-weight: 600;
}

.match-details {
    color: #6c757d;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

.match-status .odds {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--betting-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.match-status .status {
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

/* Bahis Tipi Badge */
.bet-type {
    background: var(--betting-gradient);
    color: white;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 500;
    border-radius: 0.25rem;
}

/* Beğeni Butonu */
.btn-like {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    color: white;
    transition: all 0.2s;
    padding: 0.25rem 0.5rem;
}

.btn-like:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    color: white;
}

.btn-like.liked {
    background: white;
    color: #28a745;
    border-color: white;
}

.btn-like .like-count {
    margin-left: 0.3rem;
    font-size: 0.9em;
}

/* Kupon Footer */
.card-footer {
    background-color: #fff;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding: 1rem;
}

.total-odds {
    color: #2c3e50;
    font-weight: 500;
}

.total-odds .fw-bold {
    background: var(--betting-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 1.1em;
}

/* Durum İkonları */
.fa-check {
    color: #28a745;
}

.fa-times {
    color: #dc3545;
}

.fa-circle {
    color: #dc3545;
    animation: pulse 2s infinite;
}

.fa-clock {
    color: #007bff;
}

.fa-ban {
    color: #6c757d;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .match-info .teams {
        font-size: 0.9rem;
    }
    
    .match-details {
        font-size: 0.8rem;
    }
    
    .match-status .odds {
        font-size: 1rem;
    }
    
    .card-header {
        padding: 0.75rem;
    }
    
    .match-item {
        padding: 0.75rem !important;
    }
    
    .container-fluid {
        padding: 0 10px;
    }
    
    .matches-list {
        max-height: none;
    }
}

/* Badge Stilleri */
.badge {
    padding: 0.4em 0.6em;
    font-weight: 500;
}

/* Form Elemanları */
.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #80bdff;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

/* Footer Styles */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    margin-top: 50px;
}

/* Scrollbar Styles */
.matches-list::-webkit-scrollbar {
    width: 4px;
}

.matches-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.matches-list::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.matches-list::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Button Styles */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary, .btn-outline-secondary {
    border-width: 1px;
}

.btn-outline-primary:hover, .btn-outline-secondary:hover {
    transform: translateY(-1px);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
