:root {
    /* Siyah, Beyaz ve Kırmızı Renk Paleti */
    --bg-color: #070707; /* Derin Siyah */
    --text-main: #ffffff; /* Temiz Beyaz */
    --text-muted: #9ca3af; /* Yumuşak Gri (Okunabilirlik için) */
    --accent-gradient: linear-gradient(135deg, #ff0033 0%, #8a0000 100%); /* Canlı Kırmızıdan Koyu Kırmızıya */
    --accent-color: #ff0033; /* Vurgu Kırmızısı */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Arka Plan Dekorasyonları (Kırmızı Tonlarında Gradient Mesh Hissi) */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.35;
    animation: float 10s infinite ease-in-out alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #ff0033; /* Canlı Kırmızı */
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #8a0000; /* Koyu Kırmızı */
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.1); }
}

/* Ana Konteyner */
.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

/* Header & Logo */
header {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Orta İçerik */
.content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 3rem;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* E-posta Formu */
.notify-form {
    display: flex;
    gap: 0.5rem;
    max-width: 450px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s ease;
}

.notify-form:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
}

.notify-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
}

.notify-form input::placeholder {
    color: #52525b;
}

.notify-form button {
    background: var(--text-main);
    color: var(--bg-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

/* Buton Hover Efekti - Beyazdan Kırmızıya Geçiş */
.notify-form button:hover {
    transform: scale(1.02);
    background: var(--accent-color);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.4);
}

/* Footer */
footer {
    text-align: center;
    padding-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color); /* Hover durumunda linkler kırmızı olur */
}

.copyright {
    color: #52525b;
    font-size: 0.8rem;
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .title { font-size: 2.5rem; }
    .subtitle { font-size: 1rem; }
    .notify-form { flex-direction: column; border-radius: 1rem; padding: 1rem; background: transparent; border: none; }
    .notify-form input { border-bottom: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0; padding: 1rem 0; text-align: center; }
    .notify-form button { width: 100%; margin-top: 1rem; }
}