/*
Theme Name: Yuki Motosiklet
Description: Yuki
Version: 1.0.0
Author: Custom Theme Developer
License: GPL v2 or later
Text Domain: yuki-motosiklet
*/
/* Karşılaştırma kartları için CSS */
.quick-compare-models {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.compare-model {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
    border: 1px solid #eee;
    height: 100%;
}

.compare-model:hover {
    transform: translateY(-5px);
}

.current-model {
    border: 2px solid #CC0000;
}

/* Resim alanı - orijinal resmin tam görünmesi için */
.compare-model-image {
    height: 350px;
    width: 100%;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.compare-model-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.compare-model-info {
    padding: 20px;
    background-color: white;
}

.compare-model-info h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

.compare-model-price {
    font-weight: 700;
    color: #CC0000;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.compare-model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #CC0000;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 3;
}

.compare-model-type-warning {
    margin-top: 8px;
    font-size: 0.9rem;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.compare-model-select {
    padding: 0 20px 20px;
    text-align: center;
}

.compare-checkbox {
    position: relative;
    display: inline-block;
}

.compare-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.compare-checkbox-label {
    display: inline-block;
    width: 28px;
    height: 28px;
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s;
}

.compare-checkbox-input:checked + .compare-checkbox-label {
    background-color: #CC0000;
    border-color: #CC0000;
}

.compare-checkbox-input:checked + .compare-checkbox-label::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 10px;
    width: 8px;
    height: 14px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.quick-compare-action {
    text-align: center;
    margin-top: 20px;
}

#start-comparison {
    background-color: #CC0000;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#start-comparison:hover {
    background-color: #AA0000;
}

#start-comparison:disabled {
    background-color: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    border: 1px solid #ddd;
}

/* Font Awesome ikonları için düzeltmeler */
.fas, .fab, .far {
    display: inline-block !important;
    font-style: normal !important;
}

.compare-model-type-warning i {
    display: inline-block !important;
    font-size: 14px;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .quick-compare-models {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .quick-compare-models {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .compare-model-image {
        height: 250px;
    }
}

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Arama Çubuğu Stilleri */
.header-search {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-field {
    width: 180px;
    padding: 8px 40px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #f5f5f5;
}

.search-submit {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Arama çubuğu odaklandığında */
.search-field:focus {
    width: 300px;
    outline: none;
    border-color: #CC0000;
    box-shadow: 0 0 5px rgba(204, 0, 0, 0.2);
    background-color: white;
}

/* Mobil görünüm için */
@media (max-width: 767px) {
    .search-field {
        width: 140px;
    }
    
    .search-field:focus {
        width: 200px;
    }
}

/* Arama çubuğu odaklandığında overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

body.search-active .search-overlay {
    display: block;
}

/* Arama çubuğu odaklandığında pozisyonu */
body.search-active .search-box {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 80%;
    max-width: 600px;
}

body.search-active .search-field {
    width: 100%;
    padding: 15px 50px 15px 20px;
    font-size: 18px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: white;
}

body.search-active .search-submit {
    right: 15px;
    font-size: 20px;
}

/* Screen reader text için stil */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Stili */
.site-header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
}

/* Ana Menü */
.main-menu-container {
    display: flex;
    align-items: center;
}

.main-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu a {
    color: #333;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    padding: 25px 0;
    display: inline-block;
    position: relative;
}

.main-menu a:hover {
    color: #CC0000;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background: #CC0000;
    transition: width 0.3s;
}

.main-menu a:hover::after {
    width: 100%;
}

/* Alt Menü */
.submenu-container {
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 70px;
    width: 100%;
    z-index: 999;
}

.submenu {
    display: flex;
    list-style: none;
    gap: 20px;
    height: 50px;
    align-items: center;
}

.submenu a {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.submenu a:hover {
    color: #CC0000;
}

/* Arama Kutusu */
.header-search {
    position: relative;
}

.search-form {
    display: flex;
    align-items: center;
}

.search-field {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    width: 180px;
}

.search-submit {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

/* Mobil Menü Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 0;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 120px;
}

.hero-content {
    max-width: 600px;
    margin-left: 10%;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn-primary {
    background: #CC0000;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #AA0000;
}

/* Ürün Bölümü */
.products-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #CC0000;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #333;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #CC0000;
}

/* Kampanyalar Bölümü */
.campaigns-section {
    padding: 80px 0;
}

.campaign-card {
    display: flex;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.campaign-image {
    flex: 0 0 40%;
}

.campaign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.campaign-content h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #333;
}

.campaign-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: #2C2C2C;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #CC0000;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #CC0000;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-menu {
        gap: 20px;
    }
    
    .submenu {
        overflow-x: auto;
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .site-header {
        height: 60px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .main-menu-container {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .main-menu-container.active {
        display: block;
    }
    
    .main-menu {
        flex-direction: column;
        gap: 0;
    }
    
    .main-menu a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #eee;
    }
    
    .main-menu a::after {
        display: none;
    }
    
    .submenu-container {
        top: 60px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero-section {
        margin-top: 110px;
        height: 60vh;
    }
    
    .hero-content {
        margin-left: 5%;
        max-width: 90%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .campaign-card {
        flex-direction: column;
    }
    
    .campaign-image {
        flex: 0 0 200px;
    }
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2C2C2C;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-accept {
    background: #CC0000;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Tekil Sayfa Stilleri */
.single-content {
    padding: 40px 0;
    max-width: 800px;
    margin: 0 auto;
}

.single-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.single-meta {
    color: #666;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.single-content img {
    border-radius: 8px;
    margin: 20px 0;
}

.single-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.single-content h2 {
    margin: 40px 0 20px;
    color: #333;
}

.single-content h3 {
    margin: 30px 0 15px;
    color: #333;
}

.single-content ul, .single-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.single-content li {
    margin-bottom: 10px;
}

/* 404 Sayfası */
.error-404 {
    text-align: center;
    padding: 100px 0;
}

.error-404 h1 {
    font-size: 8rem;
    color: #CC0000;
    margin-bottom: 20px;
}

.error-404 h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.error-404 p {
    max-width: 600px;
    margin: 0 auto 40px;
    color: #666;
}

/* Arama Sonuçları */
.search-results-container {
    padding: 40px 0;
}

.search-result {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.search-result h2 {
    margin-bottom: 10px;
}

.search-result-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.search-result-excerpt {
    color: #333;
}

.search-no-results {
    text-align: center;
    padding: 60px 0;
}

.search-no-results h2 {
    margin-bottom: 20px;
}

/* Arşiv Sayfası */
.archive-header {
    text-align: center;
    margin-bottom: 40px;
}

.archive-title {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.archive-description {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Sayfalama */
.pagination {
    text-align: center;
    margin-top: 40px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    background: #f8f9fa;
    color: #333;
    border-radius: 4px;
}

.pagination .current {
    background: #CC0000;
    color: white;
}

.pagination a:hover {
    background: #e9ecef;
}

/* Yorumlar */
.comments-area {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.comments-title {
    margin-bottom: 30px;
}

.comment-list {
    list-style: none;
}

.comment {
    margin-bottom: 30px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    border-radius: 50%;
    margin-right: 15px;
}

.comment-metadata {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.comment-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.comment-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

.comment-form input[type="submit"] {
    background: #CC0000;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

.comment-form input[type="submit"]:hover {
    background: #AA0000;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #CC0000;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #AA0000;
}

/* Header Scrolled */
.site-header.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

/* Motosiklet Kategorileri */
.motorcycle-categories {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.motorcycle-category {
    padding: 8px 15px;
    background: white;
    border-radius: 20px;
    color: #333;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.motorcycle-category:hover,
.motorcycle-category.active {
    background: #CC0000;
    color: white;
}

/* Motosiklet Detay Sayfası */
.motorcycle-detail {
    padding: 0px 0;
}

.motorcycle-gallery {
    margin-bottom: 40px;
}

.motorcycle-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.motorcycle-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.motorcycle-thumbnail {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 4px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.motorcycle-thumbnail:hover,
.motorcycle-thumbnail.active {
    opacity: 1;
}

.motorcycle-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px;
}

.motorcycle-description h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.motorcycle-price {
    font-size: 2rem;
    color: #CC0000;
    margin-bottom: 20px;
    font-weight: 700;
}

.motorcycle-description p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.motorcycle-specs {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.motorcycle-specs h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.motorcycle-specs-list {
    list-style: none;
}

.motorcycle-specs-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.spec-name {
    color: #666;
}

.spec-value {
    font-weight: 500;
}

.motorcycle-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
}

/* Ana Sayfa Kart Düzeni ve Stilleri */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .main-layout {
        grid-template-columns: 2fr 1fr;
    }
}

.posts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.post-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%; /* Kartların aynı hizada durması için */
}

.post-thumbnail a {
    display: block;
}

.post-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-content {
    padding: 20px;
    flex-grow: 1; /* İçeriğin kalan alanı doldurmasını sağlar */
    display: flex;
    flex-direction: column;
}

.post-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.post-title a {
    color: #333;
    text-decoration: none;
}

.post-title a:hover {
    color: #CC0000;
}

.post-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.post-meta span {
    margin-right: 15px;
}

.post-excerpt {
    color: #333;
    flex-grow: 1; /* Özetin kalan alanı doldurmasını sağlar */
    margin-bottom: 15px;
}

.read-more {
    color: #CC0000;
    font-weight: 600;
    text-decoration: none;
    margin-top: auto; /* Butonu en alta iter */
    align-self: flex-start;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 150px;
}

.widget {
    background: white;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.widget-title {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-size: 1.2rem;
}

.widget ul {
    list-style: none;
    padding: 0;
}

.widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f8f9fa;
}

.widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.widget a {
    color: #333;
    transition: color 0.3s;
}

.widget a:hover {
    color: #CC0000;
}
