/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0f172a;
    --card-bg: #1e293b;
    --primary: #6366f1;
    --secondary: #ec4899;
    --text-color: #f8fafc;
    --accent: #22d3ee;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: center;
}

.container {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    width: 90%;
    max-width: 600px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    margin: 40px 0; /* Mobilde yapışmasın diye */
}

h1, h2, h3 { background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700; }

input[type="text"] {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 2px solid #334155;
    background: #0f172a;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

input[type="text"]:focus { border-color: var(--accent); box-shadow: 0 0 15px rgba(34, 211, 238, 0.2); }

.btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    margin-top: 10px;
}

.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(99, 102, 241, 0.4); }

.platform-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 30px; font-size: 30px; }
.platform-icons a { color: #555; transition: 0.3s; margin: 0 10px; text-decoration: none; font-size: 32px; }
.platform-icons a:hover { transform: scale(1.2); }

/* Aktif Platform Stilleri */
.active-youtube { color: #ff0000 !important; filter: drop-shadow(0 0 10px rgba(255,0,0,0.5)); }
.active-instagram { color: #C13584 !important; filter: drop-shadow(0 0 10px rgba(193, 53, 132, 0.5)); }
.active-tiktok { color: #00f2ea !important; filter: drop-shadow(0 0 10px rgba(0, 242, 234, 0.5)); }
.active-twitter { color: #1DA1F2 !important; filter: drop-shadow(0 0 10px rgba(29, 161, 242, 0.5)); }
.active-facebook { color: #1877F2 !important; filter: drop-shadow(0 0 10px rgba(24, 119, 242, 0.5)); }
.active-home { color: white !important; }

/* Bekleme Sayfası Loader */
.loader { border: 5px solid #f3f3f3; border-top: 5px solid var(--secondary); border-radius: 50%; width: 50px; height: 50px; animation: spin 1s linear infinite; margin: 20px auto; }
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

.ad-space { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 10px; margin: 20px 0; border: 1px dashed rgba(255,255,255,0.2); font-size: 12px; color: #aaa; }

/* Select kutusu için stil */
select {
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    border: 2px solid #334155;
    background: #0f172a;
    color: white;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    cursor: pointer;
}
select:focus { border-color: var(--accent); }

/* Makale Alanı Stilleri */
.article-section {
    background: #1e293b;
    margin-top: 50px;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    color: #cbd5e1;
    border: 1px solid rgba(255,255,255,0.05);
    line-height: 1.6;
}
.article-section h2, .article-section h3 { margin-top: 20px; color: var(--accent); }
.article-section ul { list-style-position: inside; padding-left: 0; }
.article-section li { margin-bottom: 10px; }