/* 
 * Info Sayfaları Ortak CSS
 * Tüm info sayfaları için kullanılan stil tanımları
 */

/* FontAwesome CDN */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* İkonlar ile yazılar arası boşluk */
.fas, .fa, .fab {
    margin-right: 3px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 100%);
    color: #FFEACE;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    padding: 20px;
}

/* Sol Menü Stilleri */
.sidebar-menu {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(4, 12, 21, 0.95);
    border-radius: 0 10px 10px 0;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border-left: 3px solid #FFB45D;
    z-index: 1000;
}

.sidebar-menu h3 {
    color: #FFB45D;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 184, 93, 0.3);
    padding-bottom: 10px;
}

.sidebar-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-menu a {
    color: #FFEACE;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.sidebar-menu a:hover {
    background: rgba(255, 184, 93, 0.2);
    color: #FFB45D;
    transform: translateX(5px);
}

.sidebar-menu a.active {
    background: #FFB45D;
    color: #0f1419;
    font-weight: bold;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(4, 12, 21, 0.9);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
.header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #FFB45D;
}

.header h1 {
    font-size: 28px;
    color: #FFB45D;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.header p {
    color: #FFEACE;
    font-size: 16px;
}

/* Intro Box */
.intro {
    background: rgba(255, 184, 93, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #FFB45D;
}

.intro p {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: center;
}

/* Section Styles */
.section {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    border-left: 3px solid #FFB45D;
}

.section h2 {
    color: #FFB45D;
    font-size: 22px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 184, 93, 0.3);
    display: flex;
    align-items: center;
}

.section h2 .section-number {
    background: #FFB45D;
    color: #0f1419;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    font-size: 18px;
}

.section h3 {
    color: #FFB45D;
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 20px;
}

.section p {
    margin-bottom: 15px;
    font-size: 14px;
    text-align: justify;
}

.section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.section li {
    margin-bottom: 8px;
    padding-left: 10px;
}

/* Consent Box */
.consent-box {
    background: rgba(255, 184, 93, 0.1);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 4px solid #FFB45D;
}

.consent-text {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
}

.consent-text strong {
    color: #FFB45D;
}

.consent-text a {
    color: #FFB45D;
    text-decoration: none;
    font-weight: bold;
}

.consent-text a:hover {
    text-decoration: underline;
    color: #FFEACE;
}

/* Highlight Box */
.highlight-box {
    background: rgba(255, 184, 93, 0.15);
    border: 1px solid rgba(255, 184, 93, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.highlight-box h3 {
    color: #FFB45D;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Tables */
.ceza-table,
.rules-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.ceza-table th,
.rules-table th {
    background: #FFB45D;
    color: #0f1419;
    padding: 15px;
    text-align: left;
    font-weight: bold;
    font-size: 16px;
}

.ceza-table td,
.rules-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 184, 93, 0.2);
    vertical-align: top;
}

.ceza-table tr:hover,
.rules-table tr:hover {
    background: rgba(255, 184, 93, 0.1);
}

.ceza-level {
    font-weight: bold;
    color: #FFB45D;
    font-size: 18px;
}

.ceza-duration {
    background: rgba(255, 184, 93, 0.2);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    color: #FFEACE;
}

.rule-number {
    background: rgba(255, 184, 93, 0.2);
    color: #FFB45D;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    min-width: 60px;
    text-align: center;
}

.rule-title {
    font-weight: bold;
    color: #FFB45D;
    font-size: 16px;
}

/* Lists */
.ceza-list {
    list-style: none;
    padding-left: 0;
}

.ceza-list li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.ceza-list li:before {
    content: "•";
    color: #FFB45D;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.ceza-list li:last-child {
    border-bottom: none;
}

/* Support System */
.support-system {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.support-system h3 {
    color: #2196F3;
    margin-bottom: 15px;
    font-size: 18px;
}

.support-system ul {
    list-style: none;
    padding-left: 0;
}

.support-system li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    position: relative;
    padding-left: 25px;
}

.support-system li:before {
    content: "•";
    color: #2196F3;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

/* Warning Box */
.warning-box {
    text-align: center;
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
}

.warning-box h4 {
    color: #FF3B30;
    margin-bottom: 10px;
}

.important-note {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.important-note h4 {
    color: #FF3B30;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Footer */
.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 184, 93, 0.3);
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer a {
    color: #FFB45D;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Update Date */
.update-date,
.last-update {
    background: rgba(255, 184, 93, 0.1);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
    font-style: italic;
}

/* Links */
a {
    color: #FFB45D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #FFEACE;
}

.kvkk-rights {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.kvkk-rights h3 {
    color: #4CAF50;
    margin-bottom: 15px;
    font-size: 18px;
}

.kvkk-rights ul {
    list-style: none;
    padding-left: 0;
}

.kvkk-rights li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    position: relative;
    padding-left: 25px;
}

.kvkk-rights li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
}

.kvkk-rights li:last-child {
    border-bottom: none;
}

.data-usage {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
}

.data-usage h3 {
    color: #2196F3;
    margin-bottom: 15px;
    font-size: 18px;
}

.data-usage ul {
    list-style: none;
    padding-left: 0;
}

.data-usage li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(33, 150, 243, 0.2);
    position: relative;
    padding-left: 25px;
}

.data-usage li:before {
    content: "•";
    color: #2196F3;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 18px;
}

.data-usage li:last-child {
    border-bottom: none;
}

.footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 184, 93, 0.3);
    text-align: center;
    font-size: 12px;
    color: #999;
}

.footer a {
    color: #FFB45D;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.consent-box {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.consent-box h4 {
    color: #FFC107;
    margin-bottom: 15px;
    font-size: 16px;
}

.consent-box p {
    font-style: italic;
    color: #FFEACE;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .sidebar-menu {
        position: static;
        margin-bottom: 30px;
        transform: none;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 24px;
    }
    
    .section h2 {
        font-size: 20px;
    }
}