@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto:wght@400;500&display=swap');

body {
    background-color: #f0f2f5;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    color: #333;
}

.desktop-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #ddd;
}

.logo-container {
    display: flex;
    align-items: center;
}
.desktop-logo {
    height: 40px;
    margin-right: 15px;
}
.logo-container h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    margin: 0;
    color: #0055A3; /* VakıfBank Mavi */
}

.desktop-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    margin-left: 25px;
    font-size: 16px;
    transition: color 0.3s;
}
.desktop-nav a:hover {
    color: #fec107; /* VakıfBank Sarı */
}

.desktop-main {
    display: flex;
    padding: 20px;
}

.main-content {
    flex-grow: 1;
    padding-right: 20px;
}

.breaking-news img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.breaking-news h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    margin-bottom: 10px;
}
.category {
    background-color: #fec107;
    color: #000;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    margin-right: 10px;
}
.breaking-news p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.main-content h3 {
    font-family: 'Montserrat', sans-serif;
    border-bottom: 3px solid #fec107;
    padding-bottom: 10px;
    margin-top: 30px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}
.news-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}
.news-card img {
    width: 100%;
}
.news-card h4 {
    padding: 15px;
    margin: 0;
    font-size: 16px;
}

.sidebar {
    width: 300px;
    flex-shrink: 0;
}
.sidebar-widget {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}
.sidebar-widget h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 0 0 15px 0;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}
.sidebar-widget p {
    font-size: 14px;
    line-height: 1.5;
}
.qrcode-container {
    text-align: center;
    margin-top: 15px;
}
.qrcode-container .fa-qrcode {
    font-size: 80px;
    color: #0055A3;
}

.market-data {
    list-style: none;
    padding: 0;
    margin: 0;
}
.market-data li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}
.market-data li:last-child {
    border-bottom: none;
}
.market-data .up {
    color: #28a745;
}
.market-data .down {
    color: #dc3545;
}