@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0c0c0c;
    min-height: 100vh;
    padding: 20px;
    color: #3d3d3d;
    
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    
    border-radius: 12px;
    
    border: 1px solid #3a2c1a;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            rgba(212, 175, 55, 0.03) 50%, 
            transparent 100%);
    pointer-events: none;
}

.header {
    
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid #3a2c1a;
    position: relative;
    overflow: hidden;
    
    
    /* YENİ: Desenli arkaplan ekleyelim */
    background: 
    

        /* Desen resminiz */
        url('desen-resmi2.png');
    
    background-size:contain; /* veya auto - desene göre ayarlayın */
    background-position: center;
    background-repeat: repeat; /* veya no-repeat */
    background-blend-mode: overlay; /* Karışım modu */
}

.header-image {
    
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit:cover;
    z-index: 1; /* Resmi arkada tutmak için */
    
}

.header-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.header-statistic-item {
    flex: 1;
    text-align: center;
    padding: 15px;
    background: rgba(42, 35, 24, 0.6);
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.header-statistic-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, 0) 0%,
        rgba(255, 255, 255, 0.144) 50%,
        rgba(212, 175, 55, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine-stat 8s infinite;
}

@keyframes shine-stat {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.header-statistic-item:last-child {
    position: relative;
    overflow: hidden;
}

.header-statistic-item:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(212, 175, 55, 0) 0%,
        rgba(212, 255, 255, 0.144) 50%,
        rgba(212, 175, 55, 0) 100%
    );
    transform: skewX(-25deg);
    
    animation: shine-stat 8s infinite;
}

@keyframes shine-stat-second {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.header-statistic-item:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6), 0 4px 12px rgba(0, 0, 0, 0.3);
    background: rgba(42, 35, 24, 0.8);
}

.statistic-number {
    font-size: 1.4em;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.statistic-label {
    font-size: 0.9em;
    color: #b8a070;
    font-weight: 600;
}

.header-content {
    flex: 2;
    padding: 0 30px;
}

.header-subtitle {
    font-size: 1em;
    color: #b8a070;
    font-weight: 600;
    text-align: center;
    padding: 15px;
    
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #b8941f, 
        #d4af37, 
        transparent);
}

.header h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #d4af37;
    text-transform: uppercase;
    background: linear-gradient(135deg, #2a2318, #1a1612, #0f0c08);
    -webkit-background-clip: text;
    background-clip: text;

}

.header p {
    font-size: 1.3em;
    color: #b8a070;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}



.main-content {
    display: grid;
    grid-template-columns: 100% 100%;
    gap: 0;
    padding: 0;
}

/* Ana sayfa iki sütun düzeni */
#mainTab .main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 20px;
}

#mainTab .left-column {
    
    padding: 10px;
    position: relative;
    
}

#mainTab .right-column {
    
    padding: 10px;
    position: relative;
}



/* Karşılaştırma sekmesi iki sütun düzeni */
#comparisonTab .main-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 5px;
}

#comparisonTab .left-column {
    
    padding: 10px;
    position: relative;
    
}

#comparisonTab .right-column {
    
    padding: 10px;
    position: relative;
}

#comparisonTab {
    padding: 0;
}

#comparisonTab .comparison-container {
    width: 100%;
    padding: 0;
}

#comparisonTab .comparison-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#comparisonTab .team-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

#comparisonTab .team-column {
    
    padding: 10px;
    
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.7), inset 0 -3px 8px rgba(0, 0, 0, 0.5);
}

#comparisonTab .team-select {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #0f0c08 0%, #1a1612 100%);
    border: 1px solid #5d4c37;
    
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 4px rgba(212, 175, 55, 0.1);
    margin-top: 15px;
}

#comparisonTab .team-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8), inset 0 -2px 6px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.3);
}

#comparisonTab .comparison-results {
    margin-top: 20px;
}

.comparison-results .section-title {
    font-size: 1.3em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    border-radius: 8px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Tahmin sonuçları stilleri */
.prediction-results {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.final-prediction {
    
    color: #d4af37;
    padding: 25px;
    
    border: 1px solid #3a2c1a;
    text-align: center;
    margin-bottom: 25px;
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.7), inset 0 -4px 12px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.final-prediction:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 4px 15px rgba(0, 0, 0, 0.8), inset 0 -4px 15px rgba(0, 0, 0, 0.6), 0 6px 20px rgba(0, 0, 0, 0.5);
}

.final-prediction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    
    border-radius: 10px;
    animation: borderGlow 3s infinite;
}



@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.prediction-title {
    font-size: 1em;
    font-weight: 700;
    margin-bottom: 15px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.prediction-result {
    font-size: 1em;
    font-weight: 800;
    margin: 15px 0;
    color: #d4af37;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    background: linear-gradient(135deg, #d4af37, #b8941f, #d4af37);
    -webkit-background-clip: text;
    background-clip: text;
}

.prediction-confidence {
    font-size: 1em;
    color: #b8a070;
    font-weight: 600;
}

.prediction-details {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

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

.result-item span:first-child {
    color: #b8a070;
}

.result-item strong {
    color: #d4af37;
    font-weight: 700;
}

.info-box {
    margin-top: 30px;
    
    border-radius: 15px;
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), 
                inset 0 -3px 12px rgba(0, 0, 0, 0.6),
                0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.info-box:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 3px 15px rgba(0, 0, 0, 0.9), 
                inset 0 -3px 15px rgba(0, 0, 0, 0.7), 
                0 8px 25px rgba(0, 0, 0, 0.5);
}

.info-box .section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
    padding: 12px;
    background: linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    border-radius: 10px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-content {
    background: rgba(42, 35, 24, 0.4);
    border-radius: 10px;
    padding: 15px;
    border: 1px solid #3a2c1a;

}

.category-section {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(26, 22, 18, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 0.95em;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
    
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    background: rgba(42, 35, 24, 0.5);
    border-radius: 6px;
    border: 1px solid rgba(58, 44, 26, 0.3);
    transition: all 0.2s ease;
}

.info-item:hover {
    background: rgba(42, 35, 24, 0.7);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateX(2px);
}

.factor-name {
    color: #b8a070;
    font-weight: 300;
    font-size: 0.75em;
    flex: 1;
}

.factor-value {
    color: #d4af37;
    font-weight: 500;
    font-size: 0.75em;
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    min-width: 60px;
    text-align: center;
}

.info-note {
    text-align: center;
    color: #d4af37;
    font-weight: 500;
    margin-top: 15px;
    padding: 5px;
    background: rgba(212, 175, 55, 0.1);
    
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.8em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 25px;
}

.team-stats-card {
    background: linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    border-radius: 10px;
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), inset 0 -3px 12px rgba(0, 0, 0, 0.6);
    padding: 25px;
    transition: all 0.3s ease;
}

.team-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: inset 0 3px 15px rgba(0, 0, 0, 0.9), inset 0 -3px 15px rgba(0, 0, 0, 0.7), 0 10px 20px rgba(0, 0, 0, 0.5);
}

.team-stats-card h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3a2c1a;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: rgba(42, 35, 24, 0.5);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #3a2c1a;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(42, 35, 24, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 11px;
    color: #b8a070;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
}

.impact-score {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.5em;
    margin-left: 10px;
}

.form-record {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.form-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.form-win { 
    background: #27ae60; 
    color: white; 
}

.form-draw { 
    background: #f39c12; 
    color: white; 
}

.form-loss { 
    background: #e74c3c; 
    color: white; 
}

/* Info icon styles */
.info-icon {
    background: #d4af3700;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    
    flex-shrink: 0;
    filter: invert();
}

.info-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.info-icon-img {
    width: 30px;
    height: 30px;
    cursor: pointer;
}

/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #3a2c1a;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: #d4af37;
    text-align: center;
    position: relative;
}

.info-text {
    color: #b8a070;
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    margin-top: 20px;
    padding: 15px;
    background: rgba(42, 35, 24, 0.5);
    border-radius: 8px;
    border: 1px solid #3a2c1a;
}

.close {
    color: #b8a070;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 15px;
}

.close:hover {
    color: #d4af37;
}

.section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
    padding: 18px 20px;
    
    
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-upload {
    background: 
        linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid #3a2c1a;
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.file-upload:hover {
    box-shadow: 
        inset 0 3px 12px rgba(0, 0, 0, 0.8),
        inset 0 -3px 12px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.2);
    border-color: #8b7355;
}

.upload-btn {
    background: 
        linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    color: #d4af37;
    padding: 16px 24px;
    border: 1px solid #5d4c37;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 
        inset 0 2px 4px rgba(212, 175, 55, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.upload-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.2), 
        transparent);
    transition: left 0.5s ease;
}

.upload-btn:hover::before {
    left: 100%;
}

.upload-btn:hover {
    box-shadow: 
        inset 0 2px 6px rgba(212, 175, 55, 0.2),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4),
        0 4px 12px rgba(212, 175, 55, 0.3);
    border-color: #d4af37;
}

.upload-btn:active {
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.8),
        inset 0 -2px 4px rgba(212, 175, 55, 0.1);
    transform: translateY(1px);
}

.file-info {
    margin-top: 20px;
    padding: 16px;
    background: 
        linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    border-radius: 6px;
    border: 1px solid #3a2c1a;
    color: #b8a070;
    font-weight: 100;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.4);
    font-size: 0.9em;
}

.odds-input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.odds-input-group {
    
    padding: 20px 15px;
    
    border: 1px solid #3a2c1a;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.odds-input-group::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    
    background: linear-gradient(135deg, 
        #8b7355e8, 
        #d4af37dc, 
        #8b7355e8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.odds-input-group:hover::before {
    opacity: 1;
}

.odds-input-group:hover {
    box-shadow: 
        inset 0 3px 12px rgba(0, 0, 0, 0.8),
        inset 0 -3px 12px rgba(0, 0, 0, 0.6);
    transform: translateY(-2px);
}

.odds-input-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #d4af37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.odds-input {
    width: 100%;
    padding: 14px;
    background: #0c0c0c;
    border: 1px solid #5d4c37;
    
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    color: #d4af37;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        inset 0 -2px 4px rgba(212, 175, 55, 0.1);
}

.odds-input:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: 
        inset 0 2px 8px rgba(0, 0, 0, 0.8),
        inset 0 -2px 6px rgba(212, 175, 55, 0.2),
        0 0 15px rgba(212, 175, 55, 0.3);
}

.analyze-btn {
    background: #b3b610;
    color: #1a1612;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.analyze-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #383838;
    
}

.analyze-btn:hover::before {
    left: 100%;
}

.analyze-btn:hover {
    background: #383838;
    transform: translateY(-2px);
}

.analyze-btn:active {
    box-shadow: 
        inset 0 3px 10px rgba(0, 0, 0, 0.2),
        inset 0 -2px 6px rgba(212, 175, 55, 0.2);
    transform: translateY(1px);
}

.analysis-levels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.level-card {
    
    padding: 18px 15px;
    
    border: 1px solid #3a2c1a;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.level-card:hover::before {
    opacity: 1;
}

.level-card:hover {
    box-shadow: 
        inset 0 3px 12px rgba(0, 0, 0, 0.8),
        inset 0 -3px 12px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(212, 175, 55, 0.2);
    border-color: #8b7355;
    transform: translateY(-2px);
}

.level-title {
    font-weight: 400;
    margin-bottom: 10px;
    font-size: 12px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.level-stats {
    font-size: 11px;
    color: #b8a070;
    margin: 4px 0;
    font-weight: 600;
}

.weight-bar {
    height: 8px;
    background: 
        linear-gradient(135deg, #0f0c08 0%, #1a1612 100%);
    border-radius: 4px;
    margin: 12px 0;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.6);
    border: 1px solid #3a2c1a;
    position: relative;
}

.weight-fill {
    height: 100%;
    transition: width 0.5s ease;
    box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.weight-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.weight-exact { 
    background: linear-gradient(90deg, #8b7355, #d4af37, #8b7355); 
    width: 20%; 
}
.weight-near { 
    background: linear-gradient(90deg, #b8a070, #d4af37, #b8a070); 
    width: 40%; 
}
.weight-dominant { 
    background: linear-gradient(90deg, #d4af37, #b8941f, #d4af37); 
    width: 30%; 
}
.weight-single { 
    background: linear-gradient(90deg, #5d4c37, #8b7355, #5d4c37); 
    width: 10%; 
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.over-under-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 25px 0;
}

.result-card {
    background: 
        linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    padding: 20px 15px;
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 3px 8px rgba(0, 0, 0, 0.7),
        inset 0 -3px 8px rgba(0, 0, 0, 0.5);
    position: relative;
}

.result-card:hover {
    box-shadow: 
        inset 0 3px 12px rgba(0, 0, 0, 0.8),
        inset 0 -3px 12px rgba(0, 0, 0, 0.6),
        0 4px 12px rgba(212, 175, 55, 0.2);
    border-color: #8b7355;
    transform: translateY(-2px);
}

.result-title {
    font-weight: 600;
    color: #b8a070;
    margin-bottom: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
}

.result-value {
    font-size: 1.6em;
    font-weight: 700;
    margin: 12px 0;
    color: #d4af37;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.positive { color: #8b7355; }
.negative { color: #b8a070; }
.neutral { color: #d4af37; }

.hidden {
    display: none;
}

/* YÜKLEME EKRANI */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0202023f;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: opacity 0.5s ease;
    box-sizing: border-box;
}

.loading-content {
    text-align: center;
    width: 600px;
    padding: 10px;
    background: #d8b90900;
    border-radius: 4px;
    border: 0.1px solid #33333305;
    box-shadow: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 300px;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #f3d00c;
    background: #000000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.loading-image {
    width: 100%;
    height: 100%;
    object-fit:cover;
    background: #000000;
}

.progress-container {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #333333;
    border-radius: 4px;
    border: none;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: none;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: #4a90e2;
    transition: width 0.5s ease;
    border-radius: 4px;
}

.loading-text h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.4em;
    font-weight: 400;
    text-shadow: none;
}

.loading-text p {
    color: #aaaaaa;
    font-size: 1em;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.initial-message {
    box-shadow: inset 0 3px 8px rgb(0 0 0 / 92%), inset 0 -3px 8px 15px rgb(0 0 0 / 59%);
    border: 0.1px solid #3a2c1a !important;
    border-radius: 4px !important;
    text-align: center;
    padding: 50px;
    color: #d4af37;
    font-size: 0.9em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    
}

.loading {
    text-align: center;
    padding: 50px;
    color: #d4af37;
    font-size: 1.2em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.loading-gif {
    width: 200px;
    height: auto;
    margin: 0 auto 20px;
    display: block;
}



/* Carousel Animasyonları */
@keyframes fadeInOut {
    0% { opacity: 0; transform: scale(0.95); }
    10% { opacity: 1; transform: scale(1); }
    30% { opacity: 1; transform: scale(1); }
    40% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 0; transform: scale(0.95); }
}

.carousel-slide:nth-child(1) {
    animation: fadeInOut 9s infinite;
}

.carousel-slide:nth-child(2) {
    animation: fadeInOut 9s infinite 3s;
}

.carousel-slide:nth-child(3) {
    animation: fadeInOut 9s infinite 6s;
}

/* Sekme Navigasyonu */
.tab-navigation {
    display: flex;
    border-bottom: 1px solid #3a2c1a;
    padding: 0 30px;
}

.tab-button {
    background: transparent;
    color: #b8a070;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tab-button:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
}

.tab-button.active {
    color: #d4af37;
    position: relative;
    background: transparent;
}




.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Karşılaştırma Sayfası */
.comparison-container {
    width: 100%;
    padding: 20px;
}

.comparison-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.comparison-content .analyze-btn {
    
    color: #1a1612;
    border: none;
    padding: 18px 24px;
    font-size: 16px;
    
    cursor: pointer;
    width: 100%;
    font-weight: 700;
    transition: all 0.3s ease;
    margin: 25px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.comparison-content .analyze-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(212, 175, 55, 0.4), 
        transparent);
    
}

.comparison-content .analyze-btn:hover::before {
    left: 100%;
}

.comparison-content .analyze-btn:hover {
    background: #383838;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.comparison-content .analyze-btn:active {
    box-shadow: inset 0 3px 10px rgba(0, 0, 0, 0.2), inset 0 -2px 6px rgba(212, 175, 55, 0.2);
    transform: translateY(1px);
}

.team-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.team-column {
    
    padding: 25px;
    
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), inset 0 -3px 12px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

.team-column:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 3px 15px rgba(0, 0, 0, 0.9), inset 0 -3px 15px rgba(0, 0, 0, 0.7), 0 6px 15px rgba(0, 0, 0, 0.5);
}

.team-column .section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    padding: 15px;
   
    
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-select {
    width: 100%;
    padding: 14px;
    
    border: 1px solid #5d4c37;
    
    font-size: 16px;
    font-weight: 600;
    color: #d4af37;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 4px rgba(212, 175, 55, 0.1);
    margin-top: 15px;
    transition: all 0.3s ease;
}

.team-select:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8), inset 0 -2px 6px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.3);
}

.team-select:hover {
    border-color: #d4af37;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8), inset 0 -2px 6px rgba(212, 175, 55, 0.2);
}

.comparison-results {
    margin-top: 20px;
}

.team-stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.team-stats-card {
    background: linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.7), inset 0 -3px 8px rgba(0, 0, 0, 0.5);
    padding: 20px;
}

.team-stats-card h3 {
    color: #d4af37;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3a2c1a;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.stat-item {
    background: rgba(42, 35, 24, 0.5);
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #3a2c1a;
}

.stat-item:hover {
    background: rgba(42, 35, 24, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 11px;
    color: #b8a070;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 14px;
    font-weight: 700;
    color: #d4af37;
}

.impact-score {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.5em;
    margin-left: 10px;
}

.form-record {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.form-item {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.form-item:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.form-win { 
    background: #27ae60; 
    color: white; 
}

.form-draw { 
    background: #f39c12; 
    color: white; 
}

.form-loss { 
    background: #e74c3c; 
    color: white; 
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .loading-content {
        width: 95%;
        padding: 25px;
    }
    
    .carousel-container {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .loading-text h2 {
        font-size: 1.3em;
    }
    
    .loading-text p {
        font-size: 0.95em;
    }
    .main-content {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #mainTab .main-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #mainTab .left-column {
        border-right: none;
        
    }
    
    #comparisonTab .main-layout {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    #comparisonTab .left-column {
        border-right: none;
        
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }

    .tab-button.active {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
    }

    .header {
        padding: 5px;
        max-width: 100% !important; /* JS eklentisi */
    }

    .header-subtitle {
        font-size: 0.3em;
        padding: 5px;
        margin: 10px 0 !important; /* JS eklentisi: margin = '2px 0' */
    }

    .tab-button {
        padding: 8px 10px !important;
        font-size: 12px !important;
        flex: 1 !important; /* eşit dağılım */
        
        white-space: nowrap !important;
        text-align: center !important;
        margin: 0 2px !important;
    }
}

@media (max-width: 768px) {
    .team-selection {
        grid-template-columns: 1fr;
    }
    
    .team-stats-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .loading-content {
        width: 95%;
        padding: 20px;
    }
    
    .carousel-container {
        height: 180px;
        margin-bottom: 15px;
    }
    
    .loading-text h2 {
        font-size: 1.2em;
    }
    
    .loading-text p {
        font-size: 0.9em;
    }
    
    .progress-bar {
        margin-bottom: 20px;
    }

    .tab-button.active {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
    }

    .header {
        padding: 5px;
        max-width: 100% !important; /* JS eklentisi */
    }
    .header-subtitle {
        font-size: 0.3em;
        padding: 5px;
        margin: 10px 0 !important; /* JS eklentisi: margin = '2px 0' */
    }

    .tab-button {
        padding: 8px 10px !important;
        font-size: 12px !important;
        flex: 1 !important; /* eşit dağılım */
        
        white-space: nowrap !important;
        text-align: center !important;
        margin: 0 2px !important;
    }
}

/* Detailed analysis section */
.level-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    font-size: 12px;
    color: #666;
}

.detail-box {
    background: linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    border: 1px solid #3a2c1a;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    box-shadow: 
        inset 0 2px 6px rgba(0, 0, 0, 0.6),
        inset 0 -2px 6px rgba(0, 0, 0, 0.4);
}

.detail-box span {
    display: block;
    color: #b8a070;
    font-size: 11px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-box strong {
    display: block;
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
}

/* Head to head section */
.head-to-head-section {
    margin-top: 10px;
}

.head-to-head-section .section-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 25px;
    padding: 18px 20px;
    background: linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    border-radius: 8px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.head-to-head-section table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(42, 35, 24, 0.5);
    border-radius: 6px;
    overflow: hidden;
}

.head-to-head-section th {
    padding: 12px;
    text-align: left;
    color: #d4af37;
    border-bottom: 1px solid #3a2c1a;
    background: #2a2318;
    font-weight: 600;
}

.head-to-head-section td {
    padding: 10px;
    color: #b8a070;
    border-bottom: 1px solid #3a2c1a;
}

.head-to-head-section tr:last-child td {
    border-bottom: none;
}

.head-to-head-section tr:hover {
    background: rgba(212, 175, 55, 0.1);
}

.head-to-head-section .win {
    color: #27ae60;
    font-weight: bold;
}

.head-to-head-section .draw {
    color: #f39c12;
    font-weight: bold;
}

.head-to-head-section .loss {
    color: #e74c3c;
    font-weight: bold;
}

.head-to-head-section .over {
    color: #27ae60;
    font-weight: bold;
}

.head-to-head-section .under {
    color: #e74c3c;
    font-weight: bold;
}

.pattern-opacity {
    background: linear-gradient(135deg, #b3b6104a, #400b7c00);
    position: relative;
}

.pattern-opacity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('desen.png');
    background-repeat: repeat;
    opacity: 0.1; /* SADECE RESME OPACITY */
    background-size: auto; /* İstediğiniz boyuta ayarlayın */
    pointer-events: none;
    z-index: 1;
    animation: none !important;
    
}

.pattern-opacity > * {
    position: relative;
    z-index: 2; /* Yazıların üstte kalması için */
}

/* Team search input styles */
.team-search {
    width: 100%;
    padding: 10px 10px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #0f0c08 0%, #1a1612 100%);
    border: 1px solid #5d4c37;
    
    font-size: 16px;
    color: #d4af37;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 4px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.team-search:focus {
    outline: none;
    border-color: #d4af37;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.8), inset 0 -2px 6px rgba(212, 175, 55, 0.2), 0 0 15px rgba(212, 175, 55, 0.3);
}

.team-search::placeholder {
    color: #b8a070;
    font-weight: 300;
}

/* Comparison info section */
.comparison-info {
    text-align: center;
    color: #d4af37;
    font-weight: 500;
    margin: 15px 0;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.5em;
    text-transform: none;
    letter-spacing: 0.5px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);  
}

.contact-itemm {
    
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);  
}

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

.contact-icon {
    font-size: 1.8em;
    margin-right: 15px;
    color: #d4af37;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 0.5em;
    color: #d4af37;
    margin-bottom: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    text-align: center;
    font-size: 1em;
    color: #d4af37;
    font-weight: 600;
    line-height: 1.4;
}

.team-members {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.team-member-card {
    background: linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    padding: 20px;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), inset 0 -3px 12px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
}

.member-avatar {
    font-size: 2.5em;
    margin-right: 15px;
}

.member-info {
    flex: 1;
}

.member-name {
    font-size: 1.1em;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 5px;
}

.member-title {
    font-size: 0.9em;
    color: #b8a070;
    margin-bottom: 8px;
}

.member-contact {
    font-size: 0.85em;
    color: #8b7355;
    font-weight: 600;
}

.map-placeholder {
    background: linear-gradient(135deg, #1a1612 0%, #0f0c08 100%);
    border-radius: 8px;
    border: 1px solid #3a2c1a;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), inset 0 -3px 12px rgba(0, 0, 0, 0.6);
}

.map-content {
    text-align: center;
    padding: 20px;
}

.map-icon {
    font-size: 3em;
    margin-bottom: 15px;
    color: #d4af37;
}

.map-text {
    font-size: 1.2em;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 10px;
}

.map-coordinates {
    font-size: 0.9em;
    color: #b8a070;
}

.about-content {
    
    
    border: 1px solid #3a2c1a;
    padding: 25px;
    box-shadow: inset 0 3px 12px rgba(0, 0, 0, 0.8), inset 0 -3px 12px rgba(0, 0, 0, 0.6);
}

.about-content p {
    color: #b8a070;
    line-height: 1.6;
    margin-bottom: 15px;
}

.values-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.value-item {
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 10px;
    text-align: center;
}

.value-icon {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #d4af37;
}

.value-text {
    font-size: 0.9em;
    color: #d4af37;
    font-weight: 600;
}

/* Mobile devices (480px and below) */
/* Mobile devices (480px and below) */
@media (max-width: 480px) {
    /* 1. JavaScript'teki CRITICAL FIX'ler - Önce bunlar */
    body {
        padding: 10px;
        overflow-x: hidden !important; /* JS'deki: yatay scroll önleme */
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* JavaScript'teki: el.style.maxWidth = '100%' */
    .container, .main-content, .tab-content, .main-layout, .left-column, .right-column {
        max-width: 100% !important;
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* JavaScript'teki: padding = '2px' */
    .container {
        border-radius: 8px;
        padding: 2px !important; /* JS override */
    }
    
    /* JavaScript'teki: el.style.padding = '2px' */
    .main-content, .tab-content, .main-layout {
        padding: 2px !important; /* JS override */
    }
    
    .header {
        padding: 5px;
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .header-content-wrapper {
        flex-direction: row;
        gap: 20px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .header-content {
        padding: 0;
        text-align: center;
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .header h1 {
        font-size: 1.0em;
        font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    }
    
    .header p {
        font-size: 0.5em;
    }
    
    .header-statistic-item {
        padding: 10px;
        margin: 1px 0 !important; /* JS eklentisi: margin = '1px 0' */
    }
    
    .statistic-number {
        font-size: 0.6em;
    }
    
    .statistic-label {
        font-size: 0.5em;
        padding: 1px !important; /* JS eklentisi: padding = '1px' */
        margin: 0 !important; /* JS eklentisi: margin = '0' */
    }
    
    .header-subtitle {
        font-size: 0.7em;
        padding: 5px;
        margin: 10px 0 !important; /* JS eklentisi: margin = '2px 0' */
    }
    
    .tab-navigation {
        padding: 0 5px !important;
        flex-wrap: nowrap !important; /* wrap yerine nowrap */
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important; /* kaydırma için */
        display: flex !important;
        justify-content: space-between !important;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tab-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .tab-button {
        padding: 8px 10px !important;
        font-size: 12px !important;
        flex: 1 !important; /* eşit dağılım */
        
        white-space: nowrap !important;
        text-align: center !important;
        margin: 0 2px !important;
    }
    
    .main-layout {
        padding: 2px !important; /* JS override: '2px' yerine '10px' */
        gap: 15px;
        width: 100% !important; /* JS eklentisi */
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .section-title {
        text-align: center;
        padding: 4px 6px !important; /* JS override: '4px 6px' yerine '12px 15px' */
        font-size: 0.6em !important; /* JS override: '0.8em' yerine '1em' */
        margin: 5px 0 !important; /* JS eklentisi */
    }
    
    .odds-input-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        width: 100% !important;
    }

    #comparisonTab .comparison-results {
    margin-top: 20px;
    }

    .comparison-results .section-title {
    font-size: 1.3em;
    font-weight: 100;
    color: #d4af37;
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #2a2318 0%, #1a1612 100%);
    border-radius: 8px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 6px rgba(0, 0, 0, 0.4);
    border: 1px solid #3a2c1a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

    .comparison-info {
    text-align: center;
    color: #d4af37;
    font-weight: 500;
    margin: 15px 0;
    padding: 12px;
    background: rgba(212, 175, 55, 0.1);
    
    border: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.3em;
    text-transform: none;
    letter-spacing: 0.5px;
    }
    
    .odds-input-group {
        padding: 8px !important;
        margin: 0 !important;
        font-size: 0.75em !important;
        width: auto !important;
        max-width: none !important;
    }
    
    .odds-input-group label {
        font-size: 0.5em !important;
        padding: 2px 0 !important;
        margin: 0 !important;
        display: block;
    }
    
    .odds-input {
        padding: 8px !important;
        font-size: 0.85em !important;
        min-width: 0;
        margin: 0 !important;
        width: 100% !important;
    }
    
    .analyze-btn {
        padding: 6px !important; /* JS override: '6px' yerine '15px 20px' */
        font-size: 0.8em !important; /* JS override: '0.8em' yerine '14px' */
        margin: 8px 0 !important; /* JS eklentisi */
        font-family: poppins;
    }
    
    .analysis-levels {
        grid-template-columns: 1fr !important; /* JS eklentisi: kesin 1fr */
        gap: 2px !important; /* JS override: '2px' yerine '10px' */
        padding: 0 !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
        width: 100% !important; /* JS eklentisi */
    }
    
    .level-card {
        padding: 4px !important; /* JS override: '4px' yerine '15px 10px' */
        margin: 1px 0 !important; /* JS eklentisi */
        font-size: 0.7em !important; /* JS eklentisi */
        width: 100% !important; /* JS eklentisi */
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .level-title {
        font-size: 0.6em !important; /* JS override: '0.6em' yerine '11px' */
        padding: 5px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .level-stats {
        font-size: 0.8em !important; /* JS override: '0.6em' yerine '10px' */
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }

    .team-search {
    width: 100%;
    padding: 10px 10px;
    
    background: linear-gradient(135deg, #0f0c08 0%, #1a1612 100%);
    border: 1px solid #5d4c37;
    
    font-size: 10px;
    color: #d4af37;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), inset 0 -2px 4px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    }

    .header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #b8941f, 
        #d4af37, 
        transparent);
    }

    .header::before {
    content: '';
    position: absolute;
    top: 0; /* üste yerleşsin */
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #b8941f, 
        #d4af37, 
        transparent);
    }

    

    .level-header {
    font-size: 10px !important; /* veya istediğin küçük boyut */
    font-weight: 500 !important; /* normal'den biraz kalın ama bold değil */
    }
    
    .results-grid,
    .over-under-grid {
        grid-template-columns: repeat(3, fr) !important; /* 2'li yan yana */
        gap: 8px !important; /* 2px yerine 8px */
        padding: 5px !important;
        margin: 5px 0 !important;
        width: 100% !important;
        
    }
    
    .result-card {
        padding: 10px !important; /* 4px yerine 10px */
        margin: 0 !important;
        font-size: 0.8em !important; /* 0.7em yerine 0.8em */
    }
    
    .result-title {
        font-size: 0.6em !important; /* JS override: '0.6em' yerine '11px' */
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .result-value {
        font-size: 1em !important; /* JS override: '1em' yerine '1.3em' */
        padding: 2px !important; /* JS eklentisi */
        margin: 1px 0 !important; /* JS eklentisi */
    }
    
    .team-selection {
        gap: 15px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .team-column {
        padding: 15px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .team-select {
        padding: 6px !important; /* JS override: '6px' yerine '12px' */
        font-size: 0.6em !important; /* JS override: '0.8em' yerine '14px' */
        margin: 2px 0 !important; /* JS eklentisi */
    }
    
    .team-stats-container {
        gap: 15px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .team-stats-card {
        
        padding: 15px;
        width: 100% !important; /* JS eklentisi */
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .stats-grid {
        gap: 10px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .stat-item {
        padding: 10px;
        
    }
    
    .stat-label {
        font-size: 0.6em !important; /* JS override: '0.6em' yerine '10px' */
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .stat-value {
        font-size: 0.6em !important; /* JS override: '0.6em' yerine '12px' */
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .form-item {
        width: 20px;
        height: 20px;
        font-size: 10px;
        margin: 1px 0 !important; /* JS eklentisi */
    }
    
    .loading-content {
        width: 95%;
        padding: 15px;
        max-width: 100% !important; /* JS eklentisi */
    }
    
    .carousel-container {
        height: 150px;
        margin-bottom: 15px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .loading-text h2 {
        font-size: 1em;
        margin: 2px 0 !important; /* JS eklentisi */
    }
    
    .loading-text p {
        font-size: 0.8em;
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .progress-bar {
        height: 6px;
        margin-bottom: 15px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .contact-item {
        flex-direction: column;
        align-items: center;
        gap: 5px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .contact-icon {
        font-size: 1.5em;
    }
    
    .contact-details {
        width: 100%;
        padding: 2px !important; /* JS eklentisi */
    }
    
    .team-member-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .member-avatar {
        font-size: 2em;
    }
    
    .info-box .section-title {
        font-size: 1em;
        padding: 4px 6px !important; /* JS eklentisi */
        margin: 2px 0 !important; /* JS eklentisi */
        text-align: center;
    }
    
    .category-section {
        margin-bottom: 15px;
        padding: 10px;
        width: 100% !important; /* JS eklentisi */
    }
    
    .category-title {
        font-size: 0.85em;
        padding: 4px 6px !important; /* JS eklentisi */
        margin: 2px 0 !important; /* JS eklentisi */
    }
    
    .info-item {
        
        margin: 0px 0 !important; /* JS eklentisi */
    }
    
    .factor-name,
    .factor-value {
        font-size: 0.6em !important; /* JS override: '0.6em' yerine '0.7em' */
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .info-note {
        font-size: 0.3em;
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .detailed-results .level-details {
        grid-template-columns: 1fr 1fr;
        width: 100% !important; /* JS eklentisi */
    }
    
    .detail-box {
        padding: 2px !important; /* JS override: '2px' yerine '8px' */
        margin: 1px 0 !important; /* JS eklentisi */
        font-size: 0.6em !important; /* JS eklentisi */
    }
    
    .detail-box span {
        font-size: 10px;
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    .detail-box strong {
        font-size: 12px;
        padding: 1px !important; /* JS eklentisi */
        margin: 0 !important; /* JS eklentisi */
    }
    
    /* JavaScript'teki EKSİK BÖLÜMLER - CSS'inde olmayanlar */
    
    /* 1. SORU.PNG İCONLARI - JavaScript'te: width: '15px' */
    .info-icon-img {
        width: 15px !important;
        height: 15px !important;
    }
    
    /* 2. SONUÇ BÖLÜMLERİ - JavaScript'te: width: '100%' */
    #resultsSection, #valueAnalysisSection, #adjustedResultsSection {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
        margin: 0 !important;
    }
    
    /* 3. FINAL PREDICTION - JavaScript'te var, CSS'inde yok */
    .final-prediction, .value-card {
        width: 100% !important;
        text-align: center;
        max-width: 100% !important;
        padding: 10px !important;
        margin: 1px 0 !important;
        font-size: 0.7em !important;
    }
    
    /* 4. PREDICTION TITLE - JavaScript'te var */
    .prediction-title {
        font-size: 0.8em !important;
        padding: 4px 6px !important;
        margin: 2px 0 !important;
    }
    
        
    
    /* 6. LEVEL DETAILS - JavaScript'te var */
    .level-details {
        padding: 2px !important;
        
        font-size: 0.6em !important;
    }
    
    /* 7. JavaScript'teki INLINE STYLE DÜZELTMELERİ */
    #adjustedResultsSection > div:first-child > div {
        padding: 8px !important;
        gap: 5px !important;
    }
    
    #adjustedResultsSection [style*="grid-template-columns"] {
        justify-content: center;
        gap: 5px !important;
    }
    
    #adjustedResultsSection [style*="font-size: 1.4em"] {
        font-size: 1em !important;
    }
    
    #adjustedResultsSection [style*="font-size: 0.9em"] {
        font-size: 0.7em !important;
    }
    
    /* 8. JavaScript'teki RIGHT-COLUMN - CSS'inde yok */
    .right-column {
        max-width: 100% !important;
        overflow-x: hidden !important;
        
        width: 100% !important;
    }
    
    /* 9. EXTRA: Yatay scroll kesin önleme */
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .final-prediction::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent, rgba(212, 175, 55, 0.1));
    
    animation: borderGlow 3s infinite;
    font-size: 5px !important;
    }

    .tab-button.active {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
    background: rgba(212, 175, 55, 0.1);
    }

    .pattern-opacity {
    background: linear-gradient(135deg, #b3b6104a, #400b7c00);
    position: relative;
   }

   .pattern-opacity::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('desen.png');
    background-repeat: repeat;
    opacity: 0.1; /* SADECE RESME OPACITY */
    background-size: auto; /* İstediğiniz boyuta ayarlayın */
    pointer-events: none;
    z-index: 1;
    animation: none !important;
    
   }

   .pattern-opacity > * {
    position: relative;
    z-index: 2; /* Yazıların üstte kalması için */
   }

    
}


/* PROFESYONEL 3 KOLONLU FOOTER */
.site-footer {
    
    border-top: 3px solid #d4af37;
    margin-top: 60px;
    padding: 50px 0 25px;
    position: relative;
    overflow: hidden;
}

/* Altın çizgi efekti */
.site-footer::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        #d4af37, 
        #ffd700, 
        #d4af37, 
        transparent
    );
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Ana içerik - 3 eşit kolon */
.footer-content {
    display: grid;
    grid-template-columns: 350px 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* Sol kolon - Logo ve açıklama */
.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-size: 2.5rem;
    color: #d4af37;
}

.footer-logo-text h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin: 0;
    font-weight: 700;
}

.footer-tagline {
    color: #d1b865;
    font-size: 0.9rem;
    margin: 5px 0 0 0;
}

.footer-description {
    color: #d1b865b3;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-top: 15px;
}

/* Orta kolon - Menü */
.footer-menu {
    padding: 0 15px;
}

.menu-title {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.footer-link-item a {
    color: #d1b865e3;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 0;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;
}

.footer-link-item a::before {
    content: '›';
    color: #d4af37;
    position: absolute;
    left: 0;
    transition: transform 0.3s ease;
}

.footer-link-item a:hover {
    color: #d4af37;
    transform: translateX(5px);
}

.footer-link-item a:hover::before {
    transform: translateX(3px);
}

/* Sağ kolon - Bilgiler */
.footer-info {
    padding: 0 15px;
}

.info-title {
    color: #d4af37;
    font-size: 1.2rem;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    font-weight: 600;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d1b865b3;
    font-size: 0.9rem;
    line-height: 1.5;
}

.info-icon {
    color: #d4af37;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Alt kısım */
.footer-bottom {
    border-top: 1px solid rgba(58, 44, 26, 0.6);
    padding-top: 25px;
    margin-top: 30px;
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #d1b865b3;
    font-size: 0.9rem;
}

.disclaimer {
    color: #d1b86580;
    font-size: 0.8rem;
    font-style: italic;
    text-align: right;
    max-width: 400px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-menu,
    .footer-info {
        padding: 0;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .disclaimer {
        text-align: center;
    }
}

/* MOBİL FOOTER DÜZENLEMELERİ */
@media (max-width: 768px) {
    /* Footer içeriği */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }
    
    /* Footer bağlantıları - yatay scroll önleme */
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .footer-link-item a {
        padding: 10px 0;
        font-size: 0.9rem;
        white-space: normal;
        word-break: break-word;
        max-width: 100%;
    }
    
    /* Bilgi öğeleri */
    .info-items {
        gap: 12px;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        padding: 8px 0;
        border-bottom: 1px solid rgba(58, 44, 26, 0.3);
    }
    
    .info-item:last-child {
        border-bottom: none;
    }
    
    /* Footer alt kısmı */
    .footer-bottom {
        padding: 15px;
        margin-top: 20px;
    }
    
    .bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .copyright, .disclaimer {
        font-size: 0.8rem;
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
    }
}

/* TELEFONLAR İÇİN EKSTRA KÜÇÜK EKRANLAR */
@media (max-width: 480px) {
    /* Footer tam genişlik */
    .site-footer {
        padding: 25px 0 15px;
        margin-top: 30px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Footer konteyner genişliği */
    .footer-container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Logo ve marka */
    .footer-brand {
        padding: 0;
        text-align: center;
    }
    
    .footer-logo {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .footer-logo-icon {
        font-size: 2rem;
    }
    
    .footer-logo-text h3 {
        font-size: 1.3rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 5px;
    }
    
    /* Menü başlıkları */
    .menu-title, .info-title {
        font-size: 1rem;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    /* Bağlantılar - tam liste görünümü */
    .footer-links-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .footer-link-item a {
        padding: 8px 12px;
        background: rgba(58, 44, 26, 0.2);
        border-radius: 6px;
        border-left: 3px solid #d4af37;
        font-size: 0.85rem;
    }
    
    .footer-link-item a::before {
        display: none; /* Ok işaretini kaldır */
    }
    
    /* Bilgi maddeleri - liste görünümü */
    .info-items {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .info-item {
        background: rgba(58, 44, 26, 0.2);
        padding: 10px;
        border-radius: 6px;
        border-left: 3px solid rgba(212, 175, 55, 0.5);
        font-size: 0.8rem;
    }
    
    /* Altın çizgi efekti */
    .site-footer::before {
        height: 2px;
    }
    
    /* Yatay scroll KESİNLİKLE OLMASIN */
    .site-footer,
    .footer-container,
    .footer-content,
    .footer-links-grid,
    .info-items {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* YATAY SCROLL KESİN ÖNLEME - TÜM CİHAZLAR İÇİN */
.site-footer {
    overflow-x: hidden;
    width: 100%;
}

.footer-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* Firefox için scrollbar gizleme */
.site-footer {
    scrollbar-width: none;
}

/* Chrome/Safari için scrollbar gizleme */
.site-footer::-webkit-scrollbar {
    display: none;
}

/* MOBİL UYUMLU CSS KODLARI */

/* Genel mobil ayarları */
@media (max-width: 768px) {
    .initial-message {
        padding: 15px !important;
        margin: 10px !important;
    }

    /* Büyük başlık mobil uyumu */
    .initial-message h1 {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 10px !important;
        letter-spacing: 0.5px !important;
        word-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Açıklama paragrafı mobil uyumu */
    .initial-message > div:first-of-type {
        padding: 1.2rem !important;
        margin-bottom: 1.5rem !important;
        border-width: 1px !important;
    }

    .initial-message > div:first-of-type p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        text-align: left !important;
        padding: 0 5px !important;
    }

    /* İkinci bölüm başlığı mobil uyumu */
    .initial-message > div:nth-of-type(2) {
        margin-top: 2rem !important;
        padding-top: 1.5rem !important;
    }

    .initial-message > div:nth-of-type(2) h2 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        padding-left: 0.8rem !important;
        line-height: 1.4 !important;
    }

    /* Grid kartları mobil uyumu */
    .initial-message > div:nth-of-type(2) > div {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .initial-message > div:nth-of-type(2) > div > div {
        padding: 1.2rem !important;
        margin: 0 5px !important;
    }

    .initial-message > div:nth-of-type(2) h3 {
        font-size: 0.95rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .initial-message > div:nth-of-type(2) p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }

    /* Üçüncü bölüm mobil uyumu */
    .initial-message > div:nth-of-type(3) {
        margin-top: 1.5rem !important;
    }

    .initial-message > div:nth-of-type(3) h2 {
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        padding-left: 0.8rem !important;
        line-height: 1.4 !important;
    }

    .initial-message > div:nth-of-type(3) ol {
        padding-left: 1.2rem !important;
        line-height: 1.5 !important;
        margin: 0 5px !important;
    }

    .initial-message > div:nth-of-type(3) li {
        font-size: 0.85rem !important;
        margin-bottom: 0.8rem !important;
        line-height: 1.5 !important;
        padding-right: 5px !important;
    }
}

/* Çok küçük ekranlar için (telefonlar) */
@media (max-width: 480px) {
    .initial-message h1 {
        font-size: 1.1rem !important;
        padding: 0 5px !important;
        margin-bottom: 1.2rem !important;
    }

    .initial-message > div:first-of-type {
        padding: 1rem !important;
    }

    .initial-message > div:first-of-type p {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
    }

    .initial-message > div:nth-of-type(2) h2,
    .initial-message > div:nth-of-type(3) h2 {
        font-size: 1.1rem !important;
        padding-left: 0.5rem !important;
    }

    .initial-message > div:nth-of-type(2) > div > div {
        padding: 1rem !important;
    }

    .initial-message > div:nth-of-type(2) h3 {
        font-size: 0.9rem !important;
    }

    .initial-message > div:nth-of-type(2) p {
        font-size: 0.8rem !important;
    }

    .initial-message > div:nth-of-type(3) li {
        font-size: 0.8rem !important;
        margin-bottom: 0.7rem !important;
    }

    /* Liste işaretçileri için daha iyi hizalama */
    .initial-message ol {
        padding-left: 1rem !important;
    }
}

/* Yatay mod (landscape) için */
@media (max-width: 768px) and (orientation: landscape) {
    .initial-message h1 {
        font-size: 1.1rem !important;
    }

    .initial-message > div:nth-of-type(2) > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
    }

    .initial-message > div:nth-of-type(2) > div > div {
        min-height: 120px !important;
    }
}

/* Tablet'ler için (768px - 1024px arası) */
@media (min-width: 769px) and (max-width: 1024px) {
    .initial-message h1 {
        font-size: 1.3rem !important;
    }

    .initial-message > div:first-of-type p {
        font-size: 0.95rem !important;
    }

    .initial-message > div:nth-of-type(2) > div {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.2rem !important;
    }

    .initial-message > div:nth-of-type(2) h3 {
        font-size: 1rem !important;
    }

    .initial-message > div:nth-of-type(2) p,
    .initial-message > div:nth-of-type(3) li {
        font-size: 0.9rem !important;
    }
}

/* Gelişmiş mobil iyileştirmeler */
.initial-message {
    overflow-x: hidden !important;
    word-wrap: break-word !important;
}

/* Daha iyi dokunmatik deneyimi için */
@media (max-width: 768px) {
    .initial-message > div:nth-of-type(2) > div > div {
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(211, 175, 55, 0.1) !important;
    }

    /* Mobilde daha iyi tıklanabilir alanlar */
    .initial-message h1,
    .initial-message h2,
    .initial-message h3 {
        cursor: default !important;
        -webkit-touch-callout: none !important;
        user-select: none !important;
    }
}

/* Yazı boyutlarının daha iyi ölçeklenmesi için */
@media (max-width: 768px) {
    html {
        font-size: 14px !important;
    }
}

/* iOS Safari için özel düzeltmeler */
@supports (-webkit-touch-callout: none) {
    @media (max-width: 768px) {
        .initial-message {
            -webkit-font-smoothing: antialiased !important;
        }
        
        .initial-message p,
        .initial-message li {
            letter-spacing: -0.01em !important;
        }
    }
}