/* Mechatronicom Website CSS */
    .navbar {
        background-color: #1c1c1c;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 15px 30px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
        overflow-x: hidden;

}

    .navbar .nav-logo {
        color: white;
        text-decoration: none;
        font-size: 1.5em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        margin: 0;
        
}

    .navbar .nav-logo:hover {
        color: #ffffff;
        text-decoration: none;
        transform: scale(1.05);
        transition: transform 0.3s ease;
    }

    .navbar ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
}

    .navbar ul li {
        margin-left: 20px;
}

    .navbar ul li a {
        color: white;
        text-decoration: none;
        font-size: 1em;
        padding: 5px 10px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
}

    .navbar ul li a:hover {
        background-color: #333;
}

body {
    background-color: rgb(0, 0, 0);
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    transition: all 0.3s ease;
    overflow-x: hidden;
} 

.resID {
    padding-top: 50px;
}

.container {
    margin: 0;
    width: 100vw;
    min-height: 100vh;
    flex-grow: 1;
} 


p {
    color: #d4d4d4;
    font-size: 16px;
    line-height: 1.5;
} 

.subtitle {
    color: #e0e0e0;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    opacity: 0.9;
    transition: all 0.3s ease;
} 

.subtitle:hover {
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(146, 254, 157, 0.3);
} 

.product-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 45px;
    margin: -10px auto 20px auto;
}

.header-divider {
    width: 100vw;
    height: 1px;
    background-color: #444;
    opacity: 0.7;
    position: relative;
} /* header ayırıcı çizgi stili */

.product-header-divider {
    width: 100%;
    height: 1px;
    background-color: #444;
    opacity: 0.7;
    position: relative;
    margin-top: 10px;
    margin-bottom: 20px;
}


.product-header-container h2 {
    color: #ffffff;
    font-size: 24px; 
    font-weight: bold;
    text-shadow: 0 1px 2px rgb(129,129,129);
    margin: 0;
}

.product-section {
    margin-top: 40px;
    padding: 30px;
    background: rgba(28, 28, 30, 0.74);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid #444;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
} /* ürün bölümü */

.product-section h3 {
    color: #ffffff;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
} /* sürüm başlığı */

.download-note {
    font-size: 14px;
    color: #999;
    margin-top: 15px;
    font-style: italic;
} /* indirme notu */

.version-info {
    font-size: 14px;
    color: #888;
    font-style: italic;
    text-decoration: none;
} /* sürüm bilgisi */