
/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #021a0f; /* Fallback background */
}

/* --- Genel Stiller --- */
.highlight-text {
    color: #34d399; /* Emerald 400 */
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.pexels.com/photos/274422/pexels-photo-274422.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* GÖZ ALICI GRADYAN: Düz renk yerine daha dinamik bir geçiş */
    background: linear-gradient(180deg, rgba(3, 22, 16, 0.6) 0%, rgba(5, 46, 22, 0.85) 100%);
    z-index: 1;
}

.logo-wrapper {
    width: 112px;
    height: 112px;
}

.logo-wrapper .trophy-icon {
    color: #10b981; /* Emerald 500 */
}

/* GÖZ ALICI GRADYAN: Daha canlı ve parlak metin gradyanı */
.text-gradient {
    background: linear-gradient(45deg, #f0fff0, #6ee7b7, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: gradient-animation 5s ease infinite;
    background-size: 200% 200%;
}

/* Ana başlık için hafif bir animasyon */
@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.badge-custom {
    background-color: rgba(16, 185, 129, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* --- Countdown Timer --- */
.countdown-card {
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

.countdown-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.25);
}

.countdown-card .small {
    color: #d1d5db;
    font-weight: 500;
}


/* --- Buttons --- */
.btn {
    transition: all 0.3s ease-in-out;
}

.btn-success {
    background-color: #10b981; /* Emerald 500 */
    border-color: #059669; /* Emerald 600 */
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-success:hover {
    background-color: #059669;
    border-color: #047857;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-outline-light {
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-width: 2px;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


/* --- What's Coming Section --- */
/* GÖZ ALICI GRADYAN: Koyu yeşilden canlı turkuaza geçiş */
.whats-coming-section {
    background-image: linear-gradient(135deg, #062017 0%, #065f46 50%, #14b8a6 100%);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease-in-out;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 1.5rem !important;
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.feature-card .icon-box {
    width: 64px;
    height: 64px;
    color: white;
    transition: all 0.4s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover .icon-box {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* GÖZ ALICI GRADYAN: İkon kutuları için daha canlı renkler */
.bg-warning-gradient { background-image: linear-gradient(45deg, #fcd34d, #fb923c, #f97316); }
.bg-info-gradient { background-image: linear-gradient(45deg, #7dd3fc, #38bdf8, #0ea5e9); }
.bg-primary-gradient { background-image: linear-gradient(45deg, #c4b5fd, #a78bfa, #8b5cf6); }
.bg-success-gradient { background-image: linear-gradient(45deg, #86efac, #4ade80, #22c55e); }


/* --- Footer --- */
.footer-section {
    background-image: linear-gradient(to top, #021a0f, #042f20);
    border-top: 1px solid rgba(52, 211, 153, 0.2);
}