/* style.css */
body {
    background-color: #f4f6f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    margin-bottom: 30px;
    border-radius: 0 0 20px 20px;
}

.card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: transform 0.3s;
}

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

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 auto;
    border: 8px solid #eee;
    color: #333;
}

.score-good { border-color: #2ecc71; color: #2ecc71; }
.score-avg { border-color: #f1c40f; color: #f1c40f; }
.score-bad { border-color: #e74c3c; color: #e74c3c; }

.screenshot-frame {
    border: 10px solid #333;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #000;
    max-width: 300px;
    margin: 0 auto;
}

.screenshot-frame img {
    width: 100%;
    display: block;
}

.check-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

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

.icon-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.success { background: #d4edda; color: #155724; }
.danger { background: #f8d7da; color: #721c24; }
.warning { background: #fff3cd; color: #856404; }

#loading {
    display: none;
    text-align: center;
    padding: 50px;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}


/** yeni eklemeler **/

body { background: #f0f2f5; font-family: 'Segoe UI', sans-serif; }
.hero-section { background: linear-gradient(120deg, #2c3e50, #4ca1af); color: #fff; padding: 80px 0 50px; }

/* Skor Dairesi */
.score-circle {
    width: 100px; height: 100px;
    border-radius: 50%;
    border: 8px solid #ddd;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; font-weight: 800; color: #555;
}
.score-good { border-color: #0cce6b; color: #0cce6b; }
.score-avg { border-color: #ffa400; color: #ffa400; }
.score-bad { border-color: #ff4e42; color: #ff4e42; }

/* Screenshot Çerçeveleri */
.screenshot-frame { border: 8px solid #333; border-radius: 15px; overflow: hidden; background: #000; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.mobile-frame { max-width: 200px; }
.desktop-frame { width: 100%; }

/* Tab Tasarımı */
.nav-pills .nav-link { background: #fff; color: #555; margin: 0 5px; border: 1px solid #eee; }
.nav-pills .nav-link.active { background: #4ca1af; color: #fff; }

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