/* --- DIŞARIDAN ÖZEL FONT EKLEME --- */
@font-face {
    font-family: 'TatliBaslik';
    src: url('baslik-fontu.ttf');
}

@font-face {
    font-family: 'yazi';
    src: url('yazi.ttf');
}

@font-face {
    font-family: 'yazi2';
    src: url('yazi2.ttf');
}

/* --- GENEL AYARLAR --- */
body {
    margin: 0;
    padding: 0;
    background-color: #fcecef;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: 'Muli', sans-serif;
    color: #5c4a4d;
    overflow: hidden;
    position: relative;
}

/* ÜSTTEKİ BAŞLIK */
.ana-baslik {
    color: #ff8fab;
    font-size: 80px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(255, 143, 171, 0.3);
    position: relative;
    z-index: 20;
    font-family: 'TatliBaslik', sans-serif;
    display: inline-block;
    text-align: center;
}

/* --- ORTADAKİ ANA KUTU --- */
.pinpad-kutu {
    background-color: #e9d5da;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0px 10px 30px rgba(233, 213, 218, 0.5);
    display: flex;
    gap: 20px;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 10;
}

.foto-taraf {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.foto-taraf img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #ffffff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.tus-taraf {
    flex: 1.2;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.ust-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #888888;
    margin-bottom: 15px;
    font-family: 'yazi2', sans-serif;
}

.ust-bar .emoji {
    width: 20px;
    height: 20px;
}

#sifre-input {
    width: 100%;
    border: none;
    background-color: #fdf2f4;
    padding: 10px;
    border-radius: 10px;
    font-size: 24px;
    text-align: center;
    letter-spacing: 5px;
    color: #ff8fab;
    outline: none;
    margin-bottom: 20px;
}

.sayilar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.rakam,
#sil-btn {
    width: 30%;
    padding: 15px 0;
    background-color: #fdf2f4;
    color: #ff8fab;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rakam:hover,
#sil-btn:hover {
    background-color: #ffc2d1;
    transform: scale(1.05);
}

#error-message {
    color: #ff4d4d;
    font-size: 12px;
    font-weight: bold;
    margin-top: 10px;
}

.hidden {
    display: none;
}

/* --- STICKER AYARLARI --- */
.sticker {
    position: absolute;
    opacity: 0.8;
    z-index: 20;
    pointer-events: none;
    animation: sallanma 3s infinite ease-in-out alternate;
}

.sticker.s1 {
    top: 15%;
    left: 21%;
    width: 158px;
}

.sticker.s2 {
    top: 15%;
    right: 21%;
    width: 100px;
}

.sticker.s3 {
    bottom: 10%;
    left: 21%;
    width: 100px;
}

.sticker.s4 {
    bottom: 15%;
    right: 21%;
    width: 100px;
}

@keyframes sallanma {
    from {
        transform: translateY(0px) rotate(0deg);
    }

    to {
        transform: translateY(15px) rotate(5deg);
    }
}

/* --- 2. SAYFA TASARIMI --- */
.yeni-ekran {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fcecef;
    z-index: 10000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'yazi', sans-serif;
}

.gift-baslik {
    font-family: 'TatliBaslik', sans-serif;
    color: #ff8fab;
    margin-bottom: 30px;
    font-size: 40px;
}

.taslak-kutu {
    position: relative;
    background: white;
    padding: 40px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hediye-btn {
    border: 2px solid #f27494;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
    background: #fffafa;
}

.oval {
    border-radius: 50px;
    height: 120px;
}

.dikdortgen {
    grid-column: 1 / 3;
    border-radius: 20px;
    height: 100px;
}

.ic-sticker {
    position: absolute;
    width: 60px;
    pointer-events: none;
}

.is1 {
    top: -30px;
    left: -30px;
}

.is2 {
    top: -30px;
    right: -30px;
}

.is3 {
    bottom: -30px;
    left: -30px;
}

.is4 {
    bottom: -30px;
    right: -30px;
}

/* --- MODALLAR VE ALBÜM --- */
.album-overlay,
.not-overlay,
.sarki-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 20000;
    justify-content: center;
    align-items: center;
}

.album-overlay {
    background: rgba(0, 0, 0, 0.9);
    overflow-y: auto;
    padding: 50px 0;
}

.film-seridi {
    background-color: #1a1a1a;
    padding: 40px 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-left: 15px dashed #fcecef;
    border-right: 15px dashed #fcecef;
}

.film-kare {
    width: 100%;
    height: 200px;
    background-color: #333;
    overflow: hidden;
    border: 2px solid #000;
}

.film-kare img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.film-kare img:hover {
    transform: scale(1.1);
}

/* --- MEKTUP --- */
/* =========================================
   AŞK MEKTUBU (NOT PENCERESİ) 
   ========================================= */

.not-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 194, 209, 0.5);
    /* Arka planı soft pembe ve hafif dumanlı yapar */
    backdrop-filter: blur(5px);
    z-index: 30000;
    justify-content: center;
    align-items: center;
}

.mektup-kağıdı {
    background: #fff9fa;
    width: 85%;
    max-width: 420px;
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 143, 171, 0.4);
    position: relative;
    /* Tatlı, silik pembe defter çizgileri */
    background-image: repeating-linear-gradient(transparent,
            transparent 29px,
            #ffc2d1 30px);
    border: 3px solid #ffb3c6;
    text-align: center;
}

.mektup-baslik {
    font-family: 'TatliBaslik', sans-serif;
    color: #ff4d6d;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 32px;
    background: #fff9fa;
    /* Çizgilerin başlığın içinden geçmesini engeller */
    display: inline-block;
    padding: 0 15px;
    border-radius: 10px;
}

.mektup-icerik {
    font-family: 'yazi', cursive;
    color: #5c4a4d;
    font-size: 18px;
    line-height: 30px;
    /* Yazıların tam çizgilere oturmasını sağlar */
    text-align: center;
}

.mektup-imza {
    margin-top: 25px;
    text-align: right;
    font-weight: bold;
    font-size: 20px;
    color: #ff4d6d;
    font-family: 'TatliBaslik', sans-serif;
    background: #fff9fa;
    display: inline-block;
    float: right;
    padding-left: 15px;
}

/* O Çirkin Gri Butonu Pembe ve Tatlı Yapıyoruz */
.not-overlay .kapat-btn {
    position: absolute;
    bottom: -65px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff8fab;
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.4);
    transition: 0.3s;
    font-family: 'Muli', sans-serif;
}

.not-overlay .kapat-btn:hover {
    background: #f27494;
    transform: translate(-50%, -3px);
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.6);
}

/* --- MÜZİK ÇALAR --- */
/* --- MÜZİK ÇALAR (MİNİ PEMBE SPOTIFY) --- */
.playlist-kutu {
    background: #ffffff;
    width: 90%;
    max-width: 340px;
    padding: 25px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 143, 171, 0.25);
}

.playlist-baslik {
    font-family: 'TatliBaslik', sans-serif;
    color: #ff8fab;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 26px;
}

.sarki-listesi {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 180px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 5px;
}

.sarki-listesi::-webkit-scrollbar {
    width: 5px;
}

.sarki-listesi::-webkit-scrollbar-thumb {
    background: #ffc2d1;
    border-radius: 10px;
}

.sarki-satir {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background: #fff0f3;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.sarki-satir:hover {
    background: #ffe5ec;
    transform: translateY(-2px);
}

.sarki-satir.playing {
    border: 2px solid #ff8fab;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(255, 143, 171, 0.2);
}

.sarki-ikon {
    width: 36px;
    height: 36px;
    background: #ff8fab;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.sarki-bilgi {
    text-align: left;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sarki-bilgi strong {
    color: #5c4a4d;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sarki-bilgi small {
    color: #999;
    font-size: 11px;
    margin-top: 3px;
}

.player-controls {
    background: #fff0f3;
    padding: 15px 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.sarki-bilgi-alt {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: bold;
    color: #ff8fab;
}

#progress-bar {
    width: 100%;
    height: 6px;
    background: #ffc2d1;
    border-radius: 5px;
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
    margin: 10px 0;
}

#progress-bar::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    background: #ff8fab;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 2px 5px rgba(255, 143, 171, 0.5);
}

#progress-bar::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.zamanlar {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ff8fab;
    font-weight: bold;
    margin-top: 5px;
}

.butonlar-alt {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

#play-pause-btn {
    background: #ff8fab;
    color: white;
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.4);
    transition: 0.2s;
}

#play-pause-btn:hover {
    transform: scale(1.08);
    background: #f27494;
}

#sarki-kapat {
    width: 100%;
    background: transparent;
    border: 2px solid #ffc2d1;
    color: #ff8fab;
    font-weight: bold;
    padding: 12px;
    border-radius: 15px;
    font-size: 14px;
    transition: 0.2s;
}

#sarki-kapat:hover {
    background: #fff0f3;
}

/* --- KALP EFEKTİ --- */
.kalp {
    position: fixed;
    top: -20px;
    color: #ff8fab;
    pointer-events: none;
    z-index: 50000;
    animation: dusme linear forwards;
}

@keyframes dusme {
    to {
        transform: translateY(105vh) rotate(360deg);
    }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    body {
        overflow: hidden;
        height: 100dvh;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    #login-screen {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .yeni-ekran {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .pinpad-kutu {
        margin: 0 auto;
        width: 88%;
        max-width: 350px;
        padding: 15px;
        box-sizing: border-box;
        position: relative;
        flex-direction: column;
    }

    .ana-baslik {
        font-size: 50px;
        text-align: center;
        width: 100%;
        padding: 0 10px;
        margin-top: 15px;
        margin-bottom: 5px;
        line-height: 1;
    }

    .foto-taraf img {
        width: 105px;
        height: 105px;
    }

    .sticker {
        width: 65px !important;
        position: absolute !important;
        z-index: 100;
        margin: 0 !important;
    }

    /* S1: Sol üst köşe */
    .sticker.s1 {
        width: 95px !important;
        top: calc(50dvh - 220px);
        left: 3vw;
    }

    /* S2: Sağ üst köşe */
    .sticker.s2 {
        top: calc(50dvh - 195px);
        right: 3vw;
        left: auto;
    }

    /* S3: Sol alt köşe */
    .sticker.s3 {
        top: calc(50dvh + 150px);
        left: 6vw;
    }

    /* S4: Sağ alt köşe (sil tuşunu engellemesin diye hafif aşağıda ve dışta) */
    .sticker.s4 {
        top: calc(50dvh + 170px);
        right: 1vw;
        left: auto;
    }

    .ust-bar {
        justify-content: center;
        gap: 8px;
        margin-bottom: 8px;
    }

    .taslak-kutu {
        grid-template-columns: 1fr;
        width: 90%;
        padding: 20px !important;
        box-sizing: border-box;
    }

    .dikdortgen {
        grid-column: 1 / 2;
    }

    #reklam-kutusu,
    .kupon-kapsayici,
    .mektup-kağıdı,
    .playlist-kutu {
        width: 95% !important;
        padding: 20px !important;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .sayilar {
        gap: 5px;
    }

    .rakam,
    #sil-btn {
        padding: 10px 0;
        font-size: 16px;
    }
}


/* =========================================
   HATA DÜZELTMELERİ: ALBÜM VE TÜM BUTONLAR
   ========================================= */

/* Albümdeki butonun sağa kaymasını engeller, alt alta dizer */
.album-overlay {
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 40px 0 150px 0 !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Film şeridini daha kaliteli, gölgeli ve şık bir hale getirir */
.film-seridi {
    padding: 30px 20px !important;
    width: 90% !important;
    max-width: 350px !important;
    border-left: 20px dashed #fcecef !important;
    border-right: 20px dashed #fcecef !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 20px !important;
}

.film-kare {
    height: 250px !important;
    border: 3px solid #222 !important;
    border-radius: 5px !important;
}

/* Çirkin gri butonları (Geri Dön, Kapat vs.) pembe, dolgun ve tatlı yapar */
.kapat-btn {
    background: #ff8fab !important;
    border: none !important;
    color: white !important;
    padding: 12px 35px !important;
    border-radius: 25px !important;
    font-weight: bold !important;
    font-size: 16px !important;
    cursor: pointer !important;
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.4) !important;
    transition: 0.3s !important;
    font-family: 'Muli', sans-serif !important;
    margin-top: 20px !important;
    margin-bottom: 40px !important;
    display: inline-block !important;
}

.kapat-btn:hover {
    background: #f27494 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(255, 143, 171, 0.6) !important;
}


/* =========================================
   HOŞ PEMBE IŞILTI EFEKTİ (HOVER) 
   ========================================= */

/* 1. Ana Menüdeki Büyük Butonlar (Not, Şarkı, Albüm) */
.hediye-btn {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    /* Yumuşak bir yaylanma efekti */
}

.hediye-btn:hover {
    background: #fff0f3 !important;
    border-color: #ff8fab !important;
    transform: scale(1.05) translateY(-5px) !important;
    /* Hafifçe havaya kalkar */
    box-shadow: 0 15px 30px rgba(255, 143, 171, 0.5) !important;
    /* Etrafına pembe ışık saçar */
}

/* 2. Kapat ve Geri Dön Butonları */
.kapat-btn:hover {
    background: #ff6b93 !important;
    /* Üstüne gelince daha canlı, tatlı bir pembe */
    transform: translateY(-4px) !important;
    box-shadow: 0 10px 25px rgba(255, 143, 171, 0.7) !important;
    /* Pembe parlama */
}

/* 3. Şifre Ekranındaki Rakamlar ve Sil Tuşu */
.rakam:hover,
#sil-btn:hover {
    background: #ffb3c6 !important;
    /* İçi tatlı pembeyle dolar */
    color: white !important;
    /* Yazı rengi beyaz olur */
    transform: scale(1.1) !important;
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.6) !important;
}




/* =========================================
   SAYAÇ VE KUPON TASARIMLARI
   ========================================= */

/* Sayaç Kutu Tasarımı */
.sayac-kutu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.zaman-kutu {
    background: #fff0f3;
    border: 2px solid #ffb3c6;
    padding: 15px 10px;
    border-radius: 15px;
    min-width: 65px;
    box-shadow: 0 5px 15px rgba(255, 143, 171, 0.3);
}

.zaman-kutu span {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #ff4d6d;
    font-family: 'Muli', sans-serif;
}

.zaman-kutu small {
    color: #888;
    font-size: 13px;
    font-weight: bold;
    font-family: 'Muli', sans-serif;
}

/* Kupon Kutusu */
.kupon-kapsayici {
    background: #fff9fa;
    width: 85%;
    max-width: 420px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 143, 171, 0.4);
    max-height: 85vh;
    overflow-y: auto;
    border: 3px solid #ffb3c6;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 30005;
    /* Önde durması için */
}

.kupon-listesi {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.kupon {
    background: #fff;
    border: 3px dashed #ff8fab;
    /* Bilet gibi kesik çizgi */
    padding: 20px;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
    text-align: center;
    font-weight: bold;
    color: #5c4a4d;
    transition: 0.3s;
    overflow: hidden;
    font-family: 'Muli', sans-serif;
    box-shadow: 0 4px 10px rgba(255, 143, 171, 0.2);
}

.kupon:hover {
    background: #ffe5ec;
    transform: scale(1.03);
}

/* KULLANILDI MÜHRÜ (EFSANE KISIM BURASI) */
.kupon.kullanildi {
    background: #f1f1f1 !important;
    border-color: #ccc !important;
    color: #aaa !important;
    pointer-events: none;
    /* Tekrar tıklanmasın diye kilitler */
    box-shadow: none !important;
}

.kupon.kullanildi::after {
    content: 'KULLANILDI';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg) scale(1.2);
    font-size: 26px;
    font-family: 'TatliBaslik', sans-serif;
    color: rgba(255, 77, 109, 0.7);
    border: 4px solid rgba(255, 77, 109, 0.7);
    padding: 5px 20px;
    border-radius: 10px;
    pointer-events: none;
    letter-spacing: 2px;
}



/* =========================================
   ANA MENÜ BUTON BOYUTLARINI KÜÇÜLTME
   ========================================= */

/* Oval butonların boyunu ve kavisini kibarlaştırıyoruz */
.oval {
    height: 75px !important;
    /* Eskiden 120px idi */
    border-radius: 40px !important;
}

/* Ortadaki uzun butonun boyunu daraltıyoruz */
.dikdortgen {
    height: 65px !important;
    /* Eskiden 100px idi */
}

/* Kutu içindeki yazılar da yeni boyuta uyum sağlasın */
.hediye-btn span {
    font-size: 16px !important;
}

/* Ana beyaz kutunun iç boşluklarını ve butonlar arası mesafeyi biraz sıkılaştıralım ki derli toplu dursun */
.taslak-kutu {
    padding: 25px 35px !important;
    gap: 15px !important;
}


/* =========================================
   YAĞAN PNG GÖRSELLERİ İÇİN AYAR
   ========================================= */
img.kalp {
    object-fit: contain;
    /* Resmin yamulmasını engeller */
    opacity: 0.8;
    /* İstersen yağarken hafif şeffaf, masalsı dursun diye. İstemezsen bu satırı silebilirsin. */
    pointer-events: none;
    /* Fareyle üstüne yanlışlıkla tıklanmasını engeller */
}


/* =========================================
   BUTONLARA ÖZEL YENİ FONT
   ========================================= */

/* Fontumuzu sitemize tanıtıyoruz */
@font-face {
    font-family: 'ButonFontum';
    src: url('buton-fontu.ttf');
    /* Eğer indirdiğin dosya .otf ise burayı .otf yapmayı unutma */
}

/* Ana menüdeki butonların yazılarına bu fontu uyguluyoruz */
.hediye-btn span {
    font-family: 'ButonFontum', sans-serif !important;
    font-size: 22px !important;
    /* Yeni font küçük gelirse bu sayıyı büyütebilirsin */
    letter-spacing: 1px !important;
    /* Harfler arası çok hafif boşluk, daha şık durur */
    text-transform: none !important;
    /* İstersen baş harfi büyük, gerisi küçük yazabilmen için */
}

/* --- MOBİL İÇİN KÜÇÜLTÜLMÜŞ FİLM ŞERİDİ GÖRÜNÜMÜ --- */
@media (max-width: 768px) {
    .album-overlay {
        overflow: hidden !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 !important;
    }

    .film-seridi-kapsayici {
        width: 100%;
        display: flex;
        justify-content: center;
        max-height: 85vh;
    }

    .film-seridi {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        justify-content: space-evenly !important;
        padding: 10px !important;
        gap: 10px !important;
        width: 80% !important;
        max-width: 220px !important;
        border-left: 10px dashed #fcecef !important;
        border-right: 10px dashed #fcecef !important;
        background-color: #1a1a1a !important;
    }

    .film-kare {
        width: 100% !important;
        height: 100px !important;
        border-radius: 0 !important;
        border: 2px solid #000 !important;
    }

    .album-overlay .kapat-btn {
        margin-top: 15px !important;
        margin-bottom: 20px !important;
    }
}