:root {
    --bg-main: #0a0f16;
    --bg-card: #131a26;
    --text-primary: #e2e8f0;
    --text-secondary: #94a3b8;
    --accent-glow: rgba(255, 41, 117, 0.5);
    --accent-primary: #ff2a75;
    --accent-secondary: #ffb800;
    --border-color: #1e293b;
    --card-radius: 16px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(255, 42, 117, 0.05), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(255, 184, 0, 0.05), transparent 25%);
    background-attachment: fixed;
}

.container {
    max-width: 900px;
    margin: 50px auto;
    padding: 50px;
    background: var(--bg-card);
    border-radius: var(--card-radius);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

/* Yüzeydeki renkli çizgi */
.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.breadcrumb a {
    color: var(--accent-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--accent-glow);
}

.breadcrumb span {
    margin-left: 8px;
    color: var(--text-primary);
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: #fff;
    margin-top: 45px;
    margin-bottom: 20px;
    line-height: 1.3;
}

h1 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(to right, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    margin-top: 10px;
    margin-bottom: 30px;
}

h2 {
    font-size: 28px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
}

h2::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 24px;
    background: var(--accent-primary);
    margin-right: 12px;
    border-radius: 4px;
    box-shadow: 0 0 10px var(--accent-glow);
}

p {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

strong {
    color: #fff;
    font-weight: 600;
}

a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--accent-glow);
}

/* Listeler */
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

li {
    margin-bottom: 14px;
    padding-left: 28px;
    position: relative;
    color: var(--text-secondary);
}

li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-secondary);
    font-size: 14px;
}

/* Tablolar */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 35px 0;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: rgba(0,0,0,0.2);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

table, th, td {
    border: none;
}

th, td {
    padding: 18px 24px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    background-color: rgba(255, 255, 255, 0.03);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

tr:last-child td {
    border-bottom: none;
}

tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
}

/* SSS Alanı */
.faq {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 12px;
    transition: var(--transition);
}

.faq:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 42, 117, 0.3);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.04);
}

.faq h4 {
    margin: 0 0 12px 0;
    font-size: 18px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
}

.faq p {
    margin: 0;
    font-size: 15px;
}

/* Footer */
.site-footer {
    background-color: #05080c;
    color: var(--text-secondary);
    text-align: center;
    padding: 40px 20px;
    margin-top: 60px;
    font-size: 13px;
    border-top: 1px solid var(--border-color);
}

.site-footer p {
    margin: 8px 0;
    font-size: 13px;
}

.site-footer .container {
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0 auto;
    border: none;
}

.site-footer .container::before {
    display: none;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 25px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
}
