/* Ana Container */
.main-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #800020 50%, #000000 100%);
    color: white;
    font-family: 'Arial', sans-serif;
    display: flex;
    flex-direction: column;
}

/* Content Area */
.content-area {
    flex: 1;
}

/* Header Stilleri */
.main-title {
    font-size: 3rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 1rem;
}

.sub-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 0;
}

/* Site Kartları */
.site-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 2px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Renk Temaları */
.site-card.gold {
    border-color: #FFD700;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 215, 0, 0.1));
}

.site-card.orange {
    border-color: #FF8C00;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(255, 140, 0, 0.1));
}

.site-card.red {
    border-color: #DC143C;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(220, 20, 60, 0.1));
}

.site-card.green {
    border-color: #32CD32;
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.2), rgba(50, 205, 50, 0.1));
}

/* Kart Header */
.card-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px;
}

.site-name {
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
    color: #FFFFFF;
}

/* Giriş Butonu */
.btn-login {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #000;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-login:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: scale(1.05);
    color: #000;
}

/* Site Açıklaması */
.site-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #E0E0E0;
    margin: 0;
}

/* Footer */
.footer-text {
    color: #CCCCCC;
    font-size: 0.8rem;
    margin: 0;
}

/* Kayan Bildirimler */
.floating-notifications {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.notification {
    background: rgba(0, 0, 0, 0.8);
    color: #FFD700;
    padding: 10px 15px;
    border-radius: 25px;
    margin-bottom: 10px;
    border: 1px solid #FFD700;
    animation: slideIn 3s infinite;
    opacity: 0;
}

.notification-1 {
    animation-delay: 0s;
}

.notification-2 {
    animation-delay: 1.5s;
}

.notification-text {
    font-size: 0.8rem;
    font-weight: bold;
}

/* Animasyonlar */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    20% {
        opacity: 1;
        transform: translateX(0);
    }
    80% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-100px);
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .sub-title {
        font-size: 1.2rem;
    }
    
    .site-card {
        margin-bottom: 15px;
    }
    
    .card-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .floating-notifications {
        right: 10px;
        bottom: 10px;
    }
    
    .notification {
        padding: 8px 12px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 1.5rem;
    }
    
    .site-card {
        padding: 15px;
    }
}

/* Footer - Sticky bottom */
footer {
    margin-top: auto;
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-text {
    color: #CCCCCC;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    footer {
        padding: 15px 0;
    }
    
    .footer-text {
        font-size: 0.8rem;
    }
}
