/* Duyuru Banner Stilleri */
.announcement-banner {
    background: linear-gradient(90deg, #00AFFF 0%, #4842A8 50%, #DC2E3D 100%);
    color: white;
    font-size: 0.95rem;
    position: relative;
    z-index: 1060;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    animation: gradientShift 10s ease infinite;
    background-size: 200% 200%;
    height: 40px;
    display: flex;
    align-items: center;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.announcement-icon {
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.announcement-text {
    font-weight: 500;
}

.announcement-link {
    color: white;
    text-decoration: underline;
    margin-left: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.announcement-link:hover {
    color: rgba(255,255,255,0.8);
}

/* Footer dil seçici stilleri */
.language-selector-footer {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.language-selector-footer a {
    transition: all 0.3s ease;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.language-selector-footer a:hover {
    background-color: rgba(255,255,255,0.15);
}

.language-selector-footer img {
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    vertical-align: middle;
    margin-top: -2px;
    object-fit: cover;
    display: inline-block;
}

/* SVG bayrak stilleri */
.language-selector-footer img[src$=".svg"] {
    border: 1px solid rgba(255,255,255,0.2);
}


.language-mobile-btn:hover,
.language-mobile-btn:focus {
    background-color: rgba(255,255,255,0.3);
    color: white;
}



/* Footer arka plan renk tanımlaması */
.footer-container {
    background-color: #000;
}

.footer-top {
    background-color: rgba(25, 25, 25, 0.9);
}

.footer-middle {
    background-color: rgba(15, 15, 15, 0.95);
}

.footer-bottom {
    background-color: #000;
}

/* Mobil cihazlar için responsive ayarlar */
@media (max-width: 768px) {
    .language-selector {
        top: 10px !important;
        right: 10px !important;
    }
    
    .language-btn {
        padding: 0.15rem 0.35rem;
        font-size: 0.75rem;
    }
    
    .language-selector-footer .d-flex {
        flex-direction: column;
    }
    
    .language-selector-footer span {
        margin-bottom: 0.5rem;
    }
    
    .announcement-banner {
        font-size: 0.85rem;
    }
    
    .announcement-text strong {
        display: none;
    }
}

/* Oval köşe efekti için */
.oval-image {
    border-radius: 24px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .oval-image {
        border-radius: 16px;
    }
}

/* Get started free butonunu daha geniş ve belirgin yap */
.main-action-btn {
  padding-left: 32px !important;
  padding-right: 32px !important;
  font-size: 1.1rem !important;
  height: 48px !important;
  min-width: 160px !important;
  border-radius: 12px !important;
}