/* Genel Stil */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #1a1a1a;
    color: #f0f0f0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Bölümü */
header {
    background-color: #222;
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #ffcd00;
    margin-bottom: 30px;
}

.logo h1 {
    color: #ffcd00;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.banner-section {
    margin: 0 auto;
    max-width: 800px;
    text-align: center;
    padding: 10px;
}

.banner {
    background: rgba(34, 34, 34, 0.8);
    padding: 20px;
    text-align: center;
    display: inline-block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 205, 0, 0.3);
    transition: all 0.3s ease;
}

.banner:hover {
    box-shadow: 0 12px 25px rgba(255, 205, 0, 0.2);
    transform: translateY(-3px);
}

.banner a {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.banner-image {
    width: 400px;
    height: 100px;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.2));
    max-width: 100%;
}

.login-btn {
    display: inline-block;
    background-color: #ffcd00;
    color: #222;
    font-weight: bold;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 205, 0, 0.3);
}

/* Ana İçerik Bölümü */
main {
    padding: 20px 0;
}

.info-section {
    background-color: #222;
    border-bottom: 4px solid #ffcd00;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px 8px 0 0;
}

.info-section h2 {
    color: #ffcd00;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.info-content p {
    margin-bottom: 15px;
}

.info-content ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.info-content li {
    margin-bottom: 8px;
    list-style-type: none;
}

.info-content a {
    color: #ffcd00;
    text-decoration: none;
    font-weight: bold;
}

.info-content a:hover {
    text-decoration: underline;
}

/* Makale Bölümü */
.article-section h2 {
    color: #ffcd00;
    margin-bottom: 20px;
    font-size: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

.articles {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background-color: #222;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
    border-left: 4px solid #ffcd00;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.article-card h3 {
    color: #ffcd00;
    margin-bottom: 10px;
    font-size: 1.3rem;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.article-card p {
    margin-bottom: 15px;
}

.read-more {
    display: inline-block;
    color: #ffcd00;
    text-decoration: underline;
    font-weight: bold;
}

.read-more:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Footer Bölümü */
footer {
    background-color: #1a1a1a;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 2px solid #333;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-content p {
    margin-bottom: 15px;
    color: #cccccc;
    font-weight: 500;
}

.footer-content a {
    color: #cccccc;
    text-decoration: none;
    font-weight: 500;
}

.footer-content a:hover {
    color: #ffcd00;
    text-decoration: none;
}

.footer-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #888;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffcd00;
}

/* Makale İçerik Sayfası Stilleri */
.article-content {
    background-color: #222;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    border-left: 4px solid #ffcd00;
}

.article-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffcd00;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.article-meta {
    margin-bottom: 25px;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.article-date, .article-author {
    display: inline-block;
}

.article-author a {
    color: #ffcd00;
    text-decoration: none;
    transition: color 0.3s;
}

.article-author a:hover {
    text-decoration: underline;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    color: #ffcd00;
    font-size: 1.5rem;
    margin: 30px 0 15px;
    border-bottom: 1px dotted #444;
    padding-bottom: 8px;
}

.article-body h3 {
    color: #fff;
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, 
.article-body ol {
    margin: 0 0 20px 20px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-tip, 
.article-alert {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 5px;
    margin: 25px 0;
}

.article-tip {
    border-left: 4px solid #4CAF50;
}

.article-tip h3 {
    color: #4CAF50;
    margin-top: 0;
}

.article-alert {
    border-left: 4px solid #f44336;
}

.article-alert h3 {
    color: #f44336;
    margin-top: 0;
}

.faq-section {
    margin: 30px 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed #333;
    padding-bottom: 20px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #ffcd00;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.article-conclusion {
    background-color: #2a2a2a;
    padding: 20px;
    border-radius: 5px;
    margin-top: 30px;
    border-left: 4px solid #ffcd00;
}

.related-articles {
    background-color: #222;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.related-articles h2 {
    color: #ffcd00;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.related-articles ul {
    list-style-type: none;
    padding: 0;
}

.related-articles li {
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 2px solid #ffcd00;
}

.related-articles a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.related-articles a:hover {
    color: #ffcd00;
}

.article-body blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #ffcd00;
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid #ffcd00;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-body table th,
.article-body table td {
    border: 1px solid #444;
    padding: 10px;
    text-align: left;
}

.article-body table th {
    background-color: #333;
    color: #ffcd00;
    font-weight: bold;
}

.article-body table tr:nth-child(even) {
    background-color: #2a2a2a;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .login-btn {
        padding: 12px 20px;
    }
    
    .logo h1 {
        font-size: 2rem;
    }
    
    .banner-image {
        width: 100%;
        height: auto;
    }
    
    .banner {
        width: 100%;
        padding: 10px;
    }
    
    .banner-section {
        padding: 5px;
        max-width: 100%;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .article-content {
        padding: 20px;
    }
    
    .article-title {
        font-size: 1.6rem;
    }
    
    .article-body h2 {
        font-size: 1.4rem;
    }
    
    .article-body h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 8px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    header {
        padding: 20px 0;
    }
    
    .info-section, 
    .article-card {
        padding: 15px;
    }
    
    .article-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 1.4rem;
    }
    
    .article-body h2 {
        font-size: 1.3rem;
    }
    
    .article-body h3 {
        font-size: 1.1rem;
    }
    
    .article-tip, 
    .article-alert {
        padding: 15px;
    }
} 