/* Genel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #2D3444;
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

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

/* Header - Yeni Renk ve Düzen */
.navbar {
    background-color: #000C21; /* İstenen koyu renk */
    padding: 15px 0; /* İç boşluğu biraz daralttık */
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Daha Büyük Logo */
.logo img {
    max-height: 80px; /* Logo boyutu büyütüldü */
    width: auto;
    display: block;
}

.btn-login {
    background-color: #529a02;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 400; 
    font-size: 15px;
    transition: background 0.3s;
}

.btn-login:hover {
    background-color: #5eb102;
}

/* Başlık Alanı - Minimal Boşluk */
.hero-section {
    text-align: center;
    padding: 30px 0 20px 0; /* Üst ve alt boşluk minimalize edildi */
}

.hero-section h1 {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -0.5px;
}

/* Grid Yapısı */
.content {
    padding-bottom: 50px;
}

.bonus-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.bonus-item {
    display: block;
    transition: transform 0.2s;
}

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

.bonus-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .logo img { max-height: 60px; } /* Mobilde çok devasa durmasın */
    .bonus-grid { grid-template-columns: repeat(1, 1fr); }
    .hero-section h1 { font-size: 1.5rem; }
}