/* Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', serif;
}

body {
    background-color: #e3c17e; /* Lacivert ana renk */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

/* Arka Plan Dokusu */
.background-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('site-bg.png'); /* Dokuyu buraya ekleyin */
    background-repeat: norepeat;
    opacity: 0.2; /* Dokunun belirginliğini buradan ayarlayın */
    z-index: -1;
}

/* Ana Konteynır */
.container {
    background-color: #0d1b3e;
    width: 100%;
    max-width: 450px;
    padding: 40px 30px;
    border-radius: 40px;
    border: 2px solid #e3c17e; /* Altın rengi ince çerçeve */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Başlık ve Metinler */
h1 {
    color: #ffffff;
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.logo-container {
    margin: 20px 0;
}

.logo {
    width: 150px; /* Logo boyutunu buradan ayarlayın */
    height: auto;
}

.slogan {
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin: 20px 0 30px 0;
    opacity: 0.9;
}

/* Butonlar */
.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 18px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

/* Kenarlıklı Butonlar */
.btn-outline {
    color: #ffffff;
    border: 1.5px solid #ffffff;
    background: transparent;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: #e3c17e;
    color: #e3c17e;
}

/* Dolu Buton (Trendyol) */
.btn-filled {
    background-color: #e3c17e; /* Altın sarısı tonu */
    color: #0d1b3e;
    border: 1.5px solid #e3c17e;
}

.btn-filled:hover {
    background-color: #d4ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 193, 126, 0.3);
}

/* Mobil Uyumluluk Ekstra */
@media (max-width: 480px) {
    .container {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    h1 {
        font-size: 1.5rem;
    }
}