@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;500;700&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@media (max-width: 420px) {
    #card-header {
        flex-direction: row;
        gap: 8px;
        flex-wrap: nowrap;
    }

    .header-text {
        text-align: center;
    }
    
    .card {
        padding: 20px;
    }
}

@media (max-width: 375px) {
    #card-header {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }
    
    .header-text h1 {
		padding-top: 10px !important;
        font-size: 1.5rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .header-logo {
        width: 45px !important;
        height: 45px !important;
    }
}

html, body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%) !important;
    min-height: 100%;
    color: #333333; /* Yazıları siyaha yakın gri yapıyoruz */
}

body {
    font-family: 'Ubuntu', sans-serif;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.card {
    background: #ffffff; 
    backdrop-filter: none;
    border-radius: 16px;
    padding: 30px 40px;
    border: 1px solid rgba(0, 0, 0, 0.05); 
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 
                0 0 15px rgba(0, 0, 0, 0.05); 
    transition: transform 0.3s ease;
}

.card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 80%;
    height: 80%;
    background-image: url('../img/cropped-site-logo1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: grayscale(100%);
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

#card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
    flex-wrap: nowrap;
}
.header-logo {
    width: 60px;
    height: 60px;
    flex-shrink: 0;

    background-image: url('../img/logos/natlogo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.header-text {
    text-align: center;
}

.header-text h1 {
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    line-height: 1.2;
    word-wrap: break-word;
    hyphens: auto;
    margin: 0;
    padding: 0;
    text-align: center;
}

#card-header h1 {
    margin-bottom: 5px;
}

#card-header .subtitle {
    margin-bottom: 0;
}


#card-header h1 {
    font-size: 2.2rem;
    text-shadow: none; /* Gölgeyi kaldır, modern durur */
    margin-bottom: 10px;
    color: #1a1a1a; /* Koyu antrasit renk */
    font-weight: 700;
}

#card-header .subtitle {
    font-size: 1.1rem;
    color: #666666; /* Daha yumuşak gri */
    font-weight: 400;
    margin-bottom: 30px;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 768px) {
    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .brand-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 400px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.brand-item {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
	color: #333; /* Yazı rengi koyu */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    min-height: 70px;
    height: 70%;
}

.brand-item:hover {
    background: #ffffff;
    border-color: #007BFF; /* Hover olunca Ford Mavisi */
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    transform: translateY(-3px);
}

.brand-item img {
    max-width: 80px;
    max-height: 50px;
    object-fit: contain;
}

.brand-item span {
	color: #444;
    font-size: 0.9rem;
    font-weight: bold;
}

#serial-input-container {
    display: none;
}

.input-form {
	background: #f1f3f5;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #dee2e6;
}

.input-form input[type="text"] {
    flex-grow: 1;
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    outline: none;
    background-color: transparent;
    color: #333;
	font-weight: 600;
}
.input-form input[type="text"]::placeholder {
    color: #6c757d; 
    opacity: 0.8;
}

.input-form input[type="submit"] {
    background: linear-gradient(135deg, #0061f2 0%, #00c6ff 100%);
    border: none;
    color: #fff;
    padding: 0 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: filter 0.2s;
	letter-spacing: 0.5px;
}

.input-form input[type="submit"]:hover {
    filter: brightness(1.1);
}

.back-button {
    margin-top: 20px;
    padding: 12px 30px;
    
    background-color: #f8f9fa; /* Çok açık gri zemin */
    color: #555555;            /* Koyu gri yazı */
    border: 1px solid #dee2e6; /* İnce gri kenarlık */
    
    border-radius: 50px;       /* Hap şeklinde yuvarlak kenarlar */
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* Ok işareti ile yazı arası boşluk */
}

.back-button:hover {
    background-color: #e2e6ea; /* Hover olunca hafif koyulaşsın */
    color: #333;
    border-color: #adb5bd;
    transform: translateX(-5px); /* Geriye doğru hafif kayma efekti */
}

@media (max-width: 480px) {
    .back-button {
        width: 100% !important;  
        max-width: 100% !important; 
        padding: 12px 10px !important; 
        font-size: 0.85rem !important;
        margin-top: 15px !important; 
        box-sizing: border-box !important; 
        
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}

.alert {
    background-color: #d73851;
    padding: 12px;
    border-radius: 5px;
    margin-top: 15px;
    display: none;
    font-weight: bold;
}

#result-container {
    display: none;
}

#loader_feedback {
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 10px;
    background: #fff3cd; /* Sarı zemin */
    color: #856404;      /* Koyu sarı yazı */
    border: 1px solid #ffeeba; /* Sarı sınır */
    display: inline-block;
    margin-bottom: 0px;
    font-size: 0.8rem;
        
    max-width: 90%;
    word-wrap: break-word;
    text-align: center;
}

@media (max-width: 768px) {
    #loader_feedback {
        font-size: 0.75rem;
        padding: 8px 15px;
        max-width: 85%;
    }
}

@media (max-width: 480px) {
    #loader_feedback {
        font-size: 0.7rem !important;
        padding: 6px 12px;
        max-width: 80%;
        line-height: 1.3;
    }
}

@media (max-width: 360px) {
    #loader_feedback {
        font-size: 0.65rem !important;
        padding: 5px 10px;
        max-width: 75%;
    }
}

@media (max-width: 320px) {
    #loader_feedback {
        font-size: 0.65rem !important;
        padding: 4px 6px;
        max-width: 95%;
        line-height: 1.2;
		margin-bottom: -10px;
        text-align: center;
    }
}

#loader_title {
    font-family: 'Arial Black', sans-serif;
    font-size: 3.0rem;
    font-weight: bold;
    color: #28a745;
    text-shadow: none;
    margin: 15px 0;
    letter-spacing: 2px;
    line-height: 1.2;
}

#loader_sponsor {
    display: none;
    background: #f8f9fa; /* Açık gri zemin */
    border-radius: 10px;
    padding: 15px;
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 15px auto 0 auto;
    border: 1px solid #e9ecef; /* İnce gri sınır */
    box-shadow: none; /* Neon gölgeyi kaldır */
    color: #555; /* Gri yazı */
    box-sizing: border-box;
    word-wrap: break-word;
}

#loader_sponsor a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

#loader_sponsor a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    #loader_sponsor {
        max-width: 100%; 
        padding: 12px;
        font-size: 0.75rem;
        margin: 12px auto 0 auto;
    }
}

@media (max-width: 480px) {
    #loader_sponsor {
        max-width: 100%;
        padding: 10px;
        font-size: 0.7rem !important;
        line-height: 1.5;
        margin: 10px auto 0 auto;
        border-radius: 8px;
    }
}

@media (max-width: 360px) {
    #loader_sponsor {
        max-width: 100%;
        padding: 8px;
        font-size: 0.65rem !important;
        line-height: 1.4;
        margin: 8px auto 0 auto;
    }
}

@media (max-width: 320px) {
    #loader_sponsor {
		max-width: 100%;
        padding: 8px;
        font-size: 0.6rem !important;
        line-height: 1.3;
    }
    
    #loader_sponsor a {
        display: inline-block;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    #card-header {
        gap: 12px;
    }
    
    .header-text h1 {
        padding-top: 5px !important;
        font-size: clamp(1.1rem, 3.5vw, 1.8rem);
    }
    
    .header-logo {
        width: 50px;
        height: 50px;
    }
}

/* Mobil Cihazlar İçin Uyum */
@media (max-width: 600px) {
    .card {
        padding: 25px;
    }
    #card-header h1 {
        font-size: 1.5rem !important;
    }
    #card-header .subtitle {
        font-size: 1rem;
    }
    .brand-grid {
        gap: 15px;
    }
    #loader_title {
        font-size: 2.2rem;
    }
}

/* Mobil için ayarlar */
@media (max-width: 480px) {
    #card-header {
        gap: 8px;
    }
    
    .header-text h1 {
        padding-top: 5px !important;
        font-size: 1.2rem !important;
        line-height: 1.2;
    }
    
    .header-logo {
        width: 40px;
        height: 40px;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
    #card-header {
        gap: 6px;
    }
    
    .header-text h1 {
        font-size: 1.1rem !important;
    }
    
    .header-logo {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 320px) {
    body #card-header {
        flex-wrap: nowrap !important;
        gap: 4px !important;
        justify-content: center;
        align-items: center;
    }
    
    body .header-logo {
        width: 30px !important;
        height: 30px !important;
        flex-shrink: 0;
    }
    
    body #card-header .header-text h1 {
        font-size: 1.20rem !important;
        white-space: nowrap !important;
        padding-top: 5px !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 200px;
    }
}

.custom-contribution-button {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    gap: 10px;
    margin-top: 0px;
    
    /* Orijinal Turuncu Gradyan */
    background: linear-gradient(135deg, #ff9900 0%, #ff6600 100%);
    
    border: none;
    color: white;
    
    padding: 12px 50px; 
    
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    text-shadow: none;

    /* DÜZELTME: Büyük harf iptal edildi, orijinal yazım şekli */
    text-transform: none !important;
    letter-spacing: normal !important;

    width: auto !important; 
    max-width: 100%;
    min-width: 250px;
    
    justify-content: center;
    text-align: center;
    position: relative;
    margin-bottom: 15px;
}

/* Hover Efekti (Parlaklık artışı) */
.custom-contribution-button:hover { 
    filter: brightness(1.1); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4); 
}

.custom-contribution-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.price-badge {
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 3px 12px;
    border-radius: 8px;
    border: 1px solid #007BFF;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
    /* Nabız animasyonu mevcut */
    animation: pulse-price 2s ease-in-out infinite; 
    white-space: nowrap;
    
    /* Işık efekti için gerekli ekleme: */
    overflow: hidden; /* Işığın kenarlardan taşmasını engeller */
    position: absolute; /* Mevcut position'ı koruyoruz */
}

/* Işık Efektini Oluşturan Sözde Element */
.price-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%; /* Başlangıçta solda gizli */
    width: 100%;
    height: 100%;
    
    /* Işığın rengi: Ortası parlak beyaz, kenarları şeffaf */
    background: linear-gradient(
        to right, 
        transparent 0%, 
        rgba(255, 255, 255, 0.8) 50%, 
        transparent 100%
    );
    
    /* Işığı hafif eğik yapmak için */
    transform: skewX(-20deg);
    
    /* Işık animasyonunu çağırıyoruz */
    animation: shine-effect 3s infinite;
}

/* Mevcut Nabız Animasyonunuz (Aynen kalıyor) */
@keyframes pulse-price {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
        border-color: #007BFF;
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 4px 12px rgba(255, 215, 0, 0.6);
        border-color: #007BFF;
    }
}

/* Yeni Eklenen Işık Animasyonu */
@keyframes shine-effect {
    0% {
        left: -100%; /* Soldan başla */
    }
    20% {
        left: 200%; /* Hızlıca sağa git */
    }
    100% {
        left: 200%; /* Geri kalan sürede bekle (döngü için bekleme süresi) */
    }
}

.custom-contribution-button::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path fill="%234285F4" d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z"/><path fill="%2334A853" d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z"/><path fill="%23FBBC05" d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z"/><path fill="%23EA4335" d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-right: 10px;
}

.custom-contribution-button:hover { 
    filter: brightness(1.1); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 198, 255, 0.4); 
}

.custom-contribution-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 198, 255, 0.3);
}

/* Tablet için */
@media (max-width: 768px) {
    .custom-contribution-button {
        font-size: 1rem;
        padding: 10px 20px;
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .custom-contribution-button i {
        font-size: 0.9rem;
    }
    
    .price-badge {
        font-size: 0.7rem;
        padding: 3px 10px;
        bottom: -12px;
        border: 2px solid #007BFF;
    }
}

/* Mobil için */
@media (max-width: 480px) {
    .custom-contribution-button {
        font-size: 0.9rem !important;
        padding: 10px 15px;
        gap: 6px;
        max-width: 95%;
        margin-bottom: 12px;
    }
    
    .custom-contribution-button i {
        font-size: 0.85rem;
        margin-right: 5px !important;
    }
    
    .custom-contribution-button span {
        white-space: nowrap;
    }
    
    .price-badge {
        font-size: 0.65rem;
        padding: 2px 8px;
        bottom: -10px;
        border: 2px solid #007BFF;
    }
}

/* Çok küçük ekranlar için */
@media (max-width: 360px) {
    .custom-contribution-button {
        font-size: 0.8rem !important;
        padding: 8px 12px;
        gap: 5px;
        margin-bottom: 10px;
    }
    
    .custom-contribution-button i {
        font-size: 0.75rem;
        margin-right: 4px !important;
    }
    
    .price-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        bottom: -10px;
        border: 1.5px solid #007BFF;
    }
}

@media (max-width: 320px) {
    .custom-contribution-button {
        flex-direction: row !important;
        gap: 6px;
        padding: 8px 6px;
        font-size: 0.70rem !important;
        
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    
    .custom-contribution-button::before {
        width: 16px !important;
        height: 16px !important;
        margin-right: 6px !important;
    }
    
    .custom-contribution-button span {
        font-size: 0.70rem !important;
        white-space: normal;
    }
    
    .price-badge {
        font-size: 0.55rem;
        padding: 2px 5px;
        bottom: -10px;
        border: 1.5px solid #007BFF;
    }
}

/* Çok küçük ekranlarda (iPhone 5/SE vb.) kenar boşluklarını azalt */
@media (max-width: 340px) {
    .card {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    body {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* --- 1. SONUÇ KODU (Ödeme Sonrası - Işıksız, Net) --- */
.revealed-code {
    display: inline-block;
    font-size: 1.4em;
    font-weight: 800;
    color: #198754;
    text-shadow: none;
    
    background: #e8f5e9; 
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px dashed #198754;
    
    animation: successPulse 0.6s ease-in-out;
}

/* --- 2. MASKELİ KOD (Ödeme Öncesi - IŞIK EFEKTLİ) --- */
.displayed-code {
    display: inline-block;
    font-size: 1.4em;
    font-weight: 800;
    color: #198754;
    text-shadow: none;
    
    background: #e8f5e9;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px dashed #198754;
    
    /* Işık efekti için gerekli pozisyon ayarları */
    position: relative;
    overflow: hidden; /* Işık kutudan taşmasın */
    
    animation: successPulse 0.6s ease-in-out;
}

/* --- KONSER IŞIĞI (SPOTLIGHT) EFEKTİ --- */
/* Sadece maskeli koda (.displayed-code) eklenir */
.displayed-code::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Işık Rengi: Parlak Beyaz Geçiş */
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.8) 50%,
        transparent 100%
    );
    
    /* Işık Animasyonu */
    animation: spotlightSweep 3s ease-in-out infinite;
    pointer-events: none;
    filter: blur(8px); /* Işığı yumuşatır */
}

/* --- ANİMASYON KEYFRAME'LERİ --- */

/* Işığın yukarıdan aşağı kayması */
@keyframes spotlightSweep {
    0% {
        top: -100%;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    100% {
        top: 200%;
        opacity: 0;
    }
}

/* Kutunun ilk açılıştaki nabız hareketi */
@keyframes successPulse {
    0% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

.warranty-note {
    font-size: 0.75rem;
    color: #155724;
    font-weight: 500;
    margin-top: 10px;
    display: block;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
	font-family: 'Roboto', sans-serif;
    padding: 10px;
    border: 1px solid #c3e6cb; /* Açık yeşil sınır */
    background-color: #d4edda; /* Açık yeşil zemin */
    border-radius: 8px;
}

.warranty-note i {
    margin-right: 8px;
}

.copy-button {
    display: inline-block;
    margin-top: 15px; 
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    
    color: #333; /* Koyu yazı */
    background-color: #e9ecef; /* Gri buton zemini */
    border: 1px solid #ced4da;
    
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.copy-button:hover {
    background-color: #dee2e6;
    border-color: #adb5bd;
    transform: translateY(-2px);
}

.copy-button.copied {
    background-color: #198754; /* Koyu Yeşil (Bootstrap Success) */
    color: #ffffff; /* Yazı Beyaz */
    border-color: #198754;
    pointer-events: none;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .copy-button {
        font-size: 0.75rem;
        padding: 7px 18px;
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .copy-button {
        font-size: 0.7rem !important;
        padding: 6px 16px;
        margin-top: 10px;
    }
}

@media (max-width: 360px) {
    .copy-button {
        font-size: 0.65rem !important;
        padding: 6px 14px;
        margin-top: 10px;
    }
}

@media (max-width: 320px) {
    .copy-button {
        font-size: 0.6rem !important;
        padding: 5px 12px;
    }
}

.info-box {
    background-color: #e3f2fd;
	border: 1px solid #bbdefb;
    padding: 10px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    
    display: flex;
    align-items: center;
    gap: 15px;
    
    justify-content: center;
}

.info-box i {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: #1976d2; /* Koyu Mavi */
}

.info-box .subtitle {
	color: #0d47a1;
    font-size: clamp(0.75rem, 2.2vw, 1rem);
    line-height: 1.4;
	font-weight: 500;
    margin: 0;
}

@media (max-width: 320px) {
    .info-box .subtitle {
        font-size: 0.65rem;
    }
}

@media (max-width: 600px) {
    .input-form {
        flex-direction: column;
        gap: 15px;
        border: none;
        background: transparent;
        box-shadow: none;
    }
    
    .input-form input[type="text"] {
        /* DÜZELTME: Görünürlük ayarları */
        background-color: #ffffff; /* Zemin BEYAZ */
        border: 2px solid #d1d9e6; /* Çerçeve GRİ (Görünür) */
        border-radius: 10px;
        color: #333333; /* Yazı KOYU */
        
        font-size: 1.1rem;
        padding: 15px 20px;
        
        /* Derinlik katmak için gölge */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); 
        transition: all 0.3s ease;
    }

    /* Tıklayınca (Yazarken) Mavi Olsun */
    .input-form input[type="text"]:focus {
        border-color: #007BFF;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15);
        outline: none;
    }
    
    .input-form input[type="submit"] {
        border-radius: 10px;
        padding: 15px;
        font-size: 1rem;
        box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
    }
}

@media (max-width: 480px) {
    .input-form {
        gap: 12px;
    }
    
    .input-form input[type="text"] {
        font-size: 1rem;
        padding: 12px 15px;
    }
    
    .input-form input[type="submit"] {
        padding: 14px;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .input-form {
        gap: 10px;
    }
    
    .input-form input[type="text"] {
        font-size: 0.9rem;
        padding: 12px 12px; /* Padding'i biraz kıstık */
    }
    
    .input-form input[type="submit"] {
        padding: 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 320px) {
    .input-form input[type="text"] {
        font-size: 0.85rem !important;
        padding: 10px 12px;
    }
    
    .input-form input[type="submit"] {
        padding: 12px;
        font-size: 0.85rem !important;
    }
}

#button-row-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 40px;
}

#back-to-start-new {
    background-color: #e7f1ff;
    border: 2px solid #007BFF;
    color: #007BFF;
    padding: 10px 45px;
    border-radius: 10px;
    font-size: 0.70rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 15px rgba(0, 209, 255, 0.3), 
                inset 0 0 5px rgba(0, 209, 255, 0.2);
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

#back-to-start-new:hover {
    color: #FFFFFF;
    background-color: #007BFF;
    box-shadow: 0 0 30px rgba(0, 209, 255, 0.7);
    transform: scale(1.05);
}

#whatsapp-support-button-new {
    background-color: #e8f5e9;
    border: 2px solid #25D366;
    color: #25D366;
    padding: 10px 45px;
    border-radius: 10px;
    font-size: 0.70rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.3),
                inset 0 0 5px rgba(37, 211, 102, 0.2);
    text-decoration: none;
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    box-sizing: border-box;
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
}

#whatsapp-support-button-new:hover {
    color: #FFFFFF;
    background-color: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.7);
    transform: scale(1.05);
}

#whatsapp-support-button-new i {
    font-size: 1em;
}

@media (max-width: 768px) {
    #button-row-container {
        gap: 12px;
        padding: 0 30px;
    }
    
    #back-to-start-new,
    #whatsapp-support-button-new {
        font-size: 0.65rem;
        padding: 9px 30px;
        gap: 7px;
        letter-spacing: 1.2px;
    }
}

@media (max-width: 480px) {
    #button-row-container {
        gap: 10px;
        padding: 0 20px;
    }
    
    #back-to-start-new,
    #whatsapp-support-button-new {
        font-size: 0.60rem !important;
        padding: 8px 24px;
        gap: 6px;
        letter-spacing: 1px;
    }
    
    #back-to-start-new i,
    #whatsapp-support-button-new i {
        font-size: 0.85em;
    }
}

@media (max-width: 360px) {
    #button-row-container {
        gap: 8px;
        flex-direction: column;
        align-items: stretch;
        padding: 0 15px;
    }
    
    #back-to-start-new,
    #whatsapp-support-button-new {
        font-size: 0.58rem !important;
        padding: 8px 20px;
        gap: 5px;
        letter-spacing: 0.8px;
        width: 100%;
    }
}

@media (max-width: 320px) {
    #back-to-start-new,
    #whatsapp-support-button-new {
        font-size: 0.55rem !important;
        padding: 7px 16px;
        letter-spacing: 0.5px;
        gap: 4px;
    }
    
    #back-to-start-new i,
    #whatsapp-support-button-new i {
        font-size: 0.75em;
    }
}

.test-payment-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    background: linear-gradient(90deg, #FF6B6B, #FF3838);
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    text-shadow: none;
    max-width: 90%;
    justify-content: center;
    text-align: center;
}

.test-payment-button:hover { 
    filter: brightness(1.1); 
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4); 
}

.test-payment-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .test-payment-button {
        font-size: 1rem;
        padding: 10px 20px;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .test-payment-button {
        font-size: 0.9rem !important;
        padding: 10px 15px;
        gap: 6px;
        max-width: 95%;
    }
    
    .test-payment-button span {
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .test-payment-button {
        font-size: 0.8rem !important;
        padding: 8px 12px;
        gap: 5px;
    }
}

@media (max-width: 320px) {
    .test-payment-button {
        flex-direction: column;
        gap: 4px;
        padding: 8px 10px;
        font-size: 0.75rem !important;
    }
}

#brand-logo-display {
  display: none;           
  height: 100px;            
  width: 100%;             
  max-width: 180px;        
  object-fit: contain; 
  margin: 0 auto 10px;
  
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(255, 255, 255, 1));
  }
  100% {
    filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.5));
  }
}

#form-alert {
    display: flex;
    align-items: center;
    
    background-color: #f8d7da;
    
    color: #721c24;
    
    border: 1px solid #f5c6cb;
    
    box-shadow: 0 0 10px rgba(215, 56, 81, 0.2);
    
    border-radius: 8px;
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

#form-alert .alert-icon {
    color: #ff5566;
    
    font-size: 1.2rem;
    margin-right: 12px;
    flex-shrink: 0;
}

#form-alert .alert-text {
    flex-grow: 1;
    word-break: break-word;
}

#form-alert .alert-text strong {
    color: #721c24; /* Kalın yazılar da koyu kırmızı olsun */
    font-weight: 700;
}

.support-btn-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 10px;
    width: 100%;
    flex-wrap: nowrap;
    padding: 0 10px;
}

.support-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    padding: 10px 12px;
    border-radius: 10px;
    
    text-decoration: none !important;
    border-bottom: none !important;
    
    color: white !important;
    font-family: 'Ubuntu', sans-serif;
    font-weight: bold;
    font-size: 0.75rem;
    
    transition: all 0.3s ease;
    border: none;
    line-height: 1;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    
    flex: 1;
    min-width: 0;
    max-width: 180px;
}

.support-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    fill: currentColor;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.support-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.15);
    text-decoration: none !important; 
    border-bottom: none !important;
}

.support-btn:hover svg {
    transform: scale(1.1);
}

.btn-whatsapp {
    background: linear-gradient(45deg, #25D366, #128C7E);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-telegram {
    background: linear-gradient(45deg, #0088cc, #005f8f);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .support-btn {
        font-size: 0.70rem;
        padding: 9px 10px;
    }
    
    .support-btn svg {
        width: 15px;
        height: 15px;
        margin-right: 4px;
    }
}

@media (max-width: 480px) {
    .support-btn-row {
        flex-direction: column;
        gap: 10px;
        padding: 0;
        width: 100%;
    }
    
    .support-btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.85rem !important;
        padding: 12px;
        letter-spacing: 0.5px;
        justify-content: center;
    }
    
    .support-btn svg {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
}

@media (max-width: 380px) {
    .support-btn-row {
        gap: 5px;
    }
    
    .support-btn {
        font-size: 0.60rem !important;
        padding: 7px 6px;
        letter-spacing: 0.1px;
    }
    
    .support-btn svg {
        width: 13px;
        height: 13px;
    }
}

@media (max-width: 330px) {
    .support-btn-row {
        flex-direction: column;
        gap: 8px;
    }
    
    .support-btn {
        width: 100%;
        max-width: 100%;
        font-size: 0.60rem !important;
        padding: 6px 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .support-btn svg {
        width: 16px;
        height: 16px;
        margin-right: 6px;
        display: inline-block;
        vertical-align: middle;
    }
}

.video-ref-container {
    margin-bottom: 12px;
    width: 100%;
    text-align: center;
}

.video-ref-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    margin: 0px auto;
    box-sizing: border-box;

    padding: 12px 15px;
    background-color: #ff9800;
    color: white !important;
    text-decoration: none !important;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.video-ref-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.video-ref-btn i {
    flex-shrink: 0;
    margin-right: 8px;
    font-size: 1.4em;
}

.video-ref-btn span {
    position: relative;
    z-index: 1;
}

@keyframes shine-effect {
    0% { left: -100%; opacity: 0; }
    10% { opacity: 0.5; }
    50% { left: 100%; opacity: 0; }
    100% { left: 100%; opacity: 0; }
}

.video-ref-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine-effect 3s infinite;
    pointer-events: none;
}

@media (max-width: 480px) {
    .video-ref-btn {
        font-size: 11px !important;
    }
    
    .video-ref-btn i {
        font-size: 1.2em;
    }
}

.customer-ref-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 15px 20px;
    margin-top: 18px;
    background: linear-gradient(145deg, #ff6600, #ff8c00, #ffa500);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 6px 20px rgba(255, 102, 0, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.15),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1),
        inset 2px 0 3px rgba(255, 140, 0, 0.6),
        inset -2px 0 3px rgba(255, 140, 0, 0.6);
    transition: all 0.35s ease;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0px;
}

.customer-ref-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 10px 30px rgba(255, 102, 0, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.2),
        inset 0 -2px 5px rgba(0, 0, 0, 0.15),
        inset 3px 0 5px rgba(255, 165, 0, 0.7),
        inset -3px 0 5px rgba(255, 165, 0, 0.7);
    background: linear-gradient(145deg, #ff7700, #ff9d00, #ffb700);
}

.customer-ref-btn:active {
    transform: translateY(-1px);
}

.customer-ref-btn i {
    margin-right: 10px;
    font-size: 1.15em;
    flex-shrink: 0;
    transition: transform 0.35s ease;
    z-index: 2;
    position: relative;
}

.customer-ref-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.6s ease;
    z-index: 1;
}

.customer-ref-btn:hover::before {
    left: 100%;
}

.customer-ref-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; 
    width: 100%; 
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.4) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-20deg);
    animation: shine-loop 3.5s linear infinite; 
    pointer-events: none; 
}

@keyframes shine-loop {
    0% { left: -150%; }
    100% { left: 150%; } 
}

@media (max-width: 480px) {
    .customer-ref-btn {
        font-size: 12px;
        padding: 13px 16px;
        border-radius: 8px;
    }
    
    .customer-ref-btn i {
        margin-right: 8px;
        font-size: 1.1em;
    }
}

@media (max-width: 360px) {
    .customer-ref-btn {
        font-size: 11px;
        padding: 11px 14px;
    }
    
    .customer-ref-btn i {
        margin-right: 6px;
        font-size: 1em;
    }
}

.header-refund-logo {
    width: 130px; 
    height: auto;
    margin: 0 auto; 
    
    animation: fadeInLogo 0.5s ease-out, pulse-glow 2.5s ease-in-out infinite;
    
    cursor: pointer;
}

@keyframes fadeInLogo {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
    .header-refund-logo {
        width: 115px;
    }
}

.refund-modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    
    align-items: center;
    justify-content: center;
    
    animation: fadeInModal 0.3s ease-out;
    padding: 20px; 
}

.refund-modal-overlay[style*="display: flex"] {
    display: flex !important;
}

.refund-modal-content {
    background: #ffffff;
    border: 1px solid #d4edda; /* Açık, yumuşak yeşil sınır */
    border-radius: 15px;
    padding: 30px;
    width: 100%; 
    max-width: 450px; 
    max-height: 85vh;
    overflow-y: auto;
    text-align: center;
    position: relative;
    /* Koyu gölgeyi yumuşattık */
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    color: #333333;
    font-family: 'Ubuntu', sans-serif;
    transform: scale(0.9);
    animation: popInModal 0.3s forwards;
}

@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
@keyframes popInModal { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.modal-header-icon i {
    font-size: 3rem;
    color: #28a745; /* Standart Başarı Yeşili */
    margin-bottom: 15px;
    filter: none; /* Neon parlamayı kaldırdık */
}

.refund-modal-content h3 {
    color: #28a745;
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.3;
}

.modal-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 15px;
}

.modal-text-highlight {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
	color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: left;
}

.modal-text-highlight strong {
    color: #000;
    font-weight: bold;
}

.modal-footer-text {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 20px;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 5;
    background: transparent;
    border: none;
    padding: 0;
    line-height: 1;
}

.close-modal-btn:hover { 
    color: #28a745; 
}

.modal-ok-btn {
    background: linear-gradient(90deg, #00C6FF, #007BFF);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
    font-size: 1rem;
}
.modal-ok-btn:hover { transform: scale(1.05); }

@media (max-width: 480px) {
    .refund-modal-content {
        padding: 20px 15px;
        width: 95%;
        border-radius: 12px;
    }

    .modal-header-icon i {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .refund-modal-content h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .modal-text {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .modal-text-highlight {
        padding: 12px;
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .modal-footer-text {
        margin-bottom: 15px;
    }

    .close-modal-btn {
        top: 8px;
        right: 12px;
        font-size: 24px;
    }
    
    .modal-ok-btn {
        padding: 10px 30px;
        font-size: 0.9rem;
        width: 100%;
    }
}

.how-to-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    margin: 0px auto;
    box-sizing: border-box;

    padding: 12px 15px;
    
    background: linear-gradient(145deg, #ff0000, #cc0000);
    color: white !important;
    text-decoration: none !important;
    
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    white-space: normal;
    cursor: pointer;
    font-family: 'Ubuntu', sans-serif;
    
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    position: relative; 
    overflow: hidden;   
}

.how-to-pay-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
}

.how-to-pay-btn:active {
    transform: translateY(-1px);
}

.how-to-pay-btn i {
    flex-shrink: 0;
    margin-right: 8px;
    font-size: 1.4em;
    transition: transform 0.3s ease;
}

.how-to-pay-btn:hover i {
    transform: rotate(-10deg) scale(1.1);
}

.how-to-pay-btn span {
    position: relative;
    z-index: 1;
}

.how-to-pay-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.6) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine-effect 3s infinite;
    pointer-events: none;
}

@media (max-width: 480px) {
    .how-to-pay-btn {
        font-size: 11px !important;
    }
    
    .how-to-pay-btn i {
        font-size: 1.2em;
    }
}

.video-modal-content {
    background: #000; 
    /* Kenarlığı kaldırdık, video zaten karanlık ortamda izlenir */
    border: none; 
    border-radius: 15px;
    padding: 0; 
    width: auto;
    height: 85vh; 
    aspect-ratio: 9 / 16;
    max-width: 90vw; 
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    animation: popInModal 0.3s forwards;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: auto;
}

.video-modal-content .close-modal-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    line-height: 1;
    border: 1px solid rgba(255,255,255,0.3);
}

.video-modal-content .close-modal-btn:hover {
    background: #ff0000;
    color: white;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 480px) {
    .video-modal-content {
        height: auto;
        width: 100%; 
        max-width: 350px;
        max-height: 80vh;
        aspect-ratio: 9/16;
    }
}

@media (max-height: 600px) {
    .video-modal-content {
        height: 90vh;
        width: auto;
        max-width: none;
        aspect-ratio: 9/16;
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}