         * {
             margin: 0;
             padding: 0;
             box-sizing: border-box;
             font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         }  

         body {
             background: url('../images/there-is-a-small-dirt-road-on-a-beautiful--slightl.jpg') no-repeat center center fixed;
             background-size: cover;
             height: 100vh;
             overflow: hidden;
             color: white;
         }

         hr {
             width: 100%;
             height: 1px;
             display: block;
             margin-top: 10px;
             margin-bottom: 15px;
             opacity: 0.2;
         }

         ::-webkit-scrollbar-track {
             -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
             background-color: #3c3c3c;
         }

         ::-webkit-scrollbar {
             width: 6px;
             background-color: #3c3c3c;
         }

         ::-webkit-scrollbar-thumb {
             background-color: #F5F5F5;
         }



         .desktop-icons {
             position: absolute;
             top: 20px;
             left: 20px;
             display: flex;
             flex-direction: column;
             flex-wrap: wrap;
             gap: 20px;
             max-height: calc(100dvh - 70px);
         }

         .desktop-icon {
             display: flex;
             flex-direction: column;
             align-items: center;
             width: 80px;
             cursor: pointer;
             text-align: center;
         }

         .desktop-icon i {
             font-size: 40px;
             margin-bottom: 5px;
         }

         .desktop-icon span {
             font-size: 12px;
             color: white;
             text-shadow: 1px 1px 2px black;
         }

         .taskbar {
             position: fixed;
             bottom: 0;
             left: 0;
             width: 100%;
             height: 48px;
             background-color: rgba(32, 32, 32, 0.8);
             backdrop-filter: blur(10px);
             display: flex;
             justify-content: center;
             align-items: center;
             z-index: 1000;
         }


         .taskbar-icons {
             display: flex;
             gap: 8px;
         }

         .taskbar-icon {
             width: 40px;
             height: 40px;
             display: flex;
             justify-content: center;
             align-items: center;
             border-radius: 6px;
             cursor: pointer;
             transition: all 0.2s;
             position: relative;
         }

         .taskbar-icon:hover {
             background-color: rgba(255, 255, 255, 0.1);
         }

         .taskbar-icon i {
             font-size: 18px;
             color: white;
         }

         .taskbar-icon.active::after {
             content: '';
             position: absolute;
             bottom: -5px;
             left: 10px;
             right: 10px;
             height: 3px;
             background-color: #0078d7;
             border-radius: 3px;
         }


         .window {
             position: absolute;
             width: 800px;
             min-height: 600px;
             max-height: 600px;
             background-color: rgba(32, 32, 32, 0.9);
             backdrop-filter: blur(20px);
             border-radius: 8px;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
             display: none;
             flex-direction: column;
             z-index: 1002;
             overflow: hidden;
             top: 50%;
             left: 50%;
             transform: translate(-50%, -50%);
         }

         .langbar {
             position: absolute;
             width: 300px;
             min-height: 500px;
             overflow-y: auto;
             background-color: rgba(32, 32, 32, 0.9);
             backdrop-filter: blur(20px);
             border-radius: 8px;
             box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
             display: none;
             flex-direction: column;
             z-index: 1002;
             overflow: hidden;
             bottom: 50px !important;
             left: 50%;
             transform: translate(-50%, -50%);
         }


         .window.maximized {
             width: 100% !important;
             height: calc(100% - 48px) !important;
             max-height: calc(100% - 48px) !important;
             top: 0 !important;
             left: 0 !important;
             border-radius: 0 !important;
             transform: none !important;
         }

         .window-header {
             height: 32px;
             display: flex;
             justify-content: space-between;
             align-items: center;
             padding: 0 10px;
             background-color: rgba(255, 255, 255, 0.05);
             cursor: move;
         }

         .window-nav {
             display: flex;
             align-items: center;
             flex: 1;
         }

         .back-button {
             background: none;
             border: none;
             color: rgba(255, 255, 255, 0.8);
             cursor: pointer;
             padding: 5px 10px;
             margin-right: 10px;
             border-radius: 4px;
         }

         .back-button:hover {
             background-color: rgba(255, 255, 255, 0.1);
         }

         .back-button i {
             font-size: 12px;
         }

         .window-title {
             font-size: 12px;
             color: rgba(255, 255, 255, 0.8);
         }

         .window-controls {
             display: flex;
             gap: 10px;
         }

         .window-control {
             width: 16px;
             height: 16px;
             border-radius: 50%;
             cursor: pointer;
             display: flex;
             justify-content: center;
             align-items: center;
         }

         .window-control i {
             font-size: 8px;
             opacity: 0;
             transition: opacity 0.2s, transform 0.2s;
         }

         .window-control:hover i {
             opacity: 1;
         }

         .close {
             background-color: #f44336;
         }

         .minimize {
             background-color: #ffc107;
         }

         .maximize {
             background-color: #4caf50;
         }

         .window-content {
             flex: 1;
             padding: 15px;
             color: white;
             overflow-y: auto;
             transition: 0.3s all ease-in;
         }

         /* Start Menu Styles */

         .w-100 {
             width: 100%;
         }

         /* Portfolio Specific Styles */


         .profile-section {
             text-align: center;
             margin: 20px;
         }

         /* Flip container */
         .flip-container {
             perspective: 1000px;
             display: inline-block;
         }

         /* Flipper */
         .flipper {
             position: relative;
             width: 150px;
             height: 150px;
             border-radius: 50%;
             object-fit: cover;
             margin: 0 auto 20px;
             display: block;
             border: 3px solid rgba(255, 255, 255, 0.1);
             transform-style: preserve-3d;
             transition: transform 0.6s;
         }

         /* Front and back images */
         .flipper img {
             width: 100%;
             height: 100%;
             backface-visibility: hidden;
             border-radius: 50%;

         }

         /* Back image */
         .flipper .back {
             transform: rotateY(180deg);
             position: absolute;
             left: 0;
         }

         /* Flip on hover */
         .flip-container:hover .flipper {
             transform: rotateY(180deg);
         }



         .section {
             margin-bottom: 20px;
         }

         .section h2 {
             font-size: 18px;
             margin-bottom: 10px;
             color: #0078d7;
         }

         .section h3 {
             font-size: 16px;
             margin: 15px 0 8px;
         }

         .skills-grid {
             display: grid;
             grid-template-columns: repeat(2, 1fr);
             gap: 10px;
         }

         .skill-item {
             background: rgba(255, 255, 255, 0.05);
             padding: 10px;
             border-radius: 4px;
         }


         .work-item,
         .education-item {
             margin-bottom: 15px;
             padding-bottom: 15px;
             border-bottom: 1px solid rgba(255, 255, 255, 0.1);
             display: flex;
             flex-wrap: wrap;
             width: 100%;
         }
        .education-item .content{
            width: calc(100% - 80px);
        }
         .work-item .logo {
             width: 120px;
             height: auto;
             object-fit: contain;
         }

         .work-item .content {
             width: calc(100% - 120px);
             padding-left: 25px;
         }

         .work-item h4,
         .education-item h4 {
             font-size: 14px;
             margin-bottom: 5px;
         }

         .work-period,
         .education-period {
             font-size: 12px;
             color: rgba(255, 255, 255, 0.6);
             margin-bottom: 5px;
         }

         .project-grid {
             display: grid;
             grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
             gap: 20px;
             padding: 15px;
         }


         .project-detail {
             display: flex;
             height: 100%;
             flex-wrap: wrap;
         }

         .project-detail-image {
             width: 50%;
             flex: 1;
             background-size: contain;
             background-repeat: no-repeat;
             background-position: center;
         }

         .project-detail-content {
             flex: 1;
             padding: 5px;
             overflow-y: auto;
         }

         .card-f-flex {
             display: flex;
             flex-wrap: wrap;
             align-items: center;
             align-items: center;
         }

         .next-button {
             position: absolute;
             right: 20px;
             bottom: 20px;
             background: rgba(255, 255, 255, 0.1);
             border: none;
             color: white;
             width: 40px;
             height: 40px;
             border-radius: 50%;
             cursor: pointer;
             display: flex;
             align-items: center;
             justify-content: center;
         }

         .next-button:hover {
             background: rgba(255, 255, 255, 0.2);
         }

         .contact-form {
             display: grid;
             gap: 15px;
             max-width: 500px;
             margin: 0 auto;
         }

         .contact-other h3{
            margin-bottom: 0;
         }
         .contact-other {
              display: grid;
             gap: 15px;
             max-width: 500px;
             margin: 0 auto;
         }
         .contact-form label{
            margin-bottom: 5px;display: block;
         }
         .contact-form input,
         .contact-form textarea {
             background: rgba(255, 255, 255, 0.1);
             border: 1px solid rgba(255, 255, 255, 0.2);
             border-radius: 4px;
             padding: 10px;
             color: white;
             width: 100%;
         }

         .contact-form button {
             background: #0078d7;
             color: white;
             border: none;
             padding: 10px 20px;
             border-radius: 4px;
             cursor: pointer;
             justify-self: start;
         }

         .minimized {
             display: none !important;
         }

         /* Previous CSS remains the same, just add these new styles */

         .about-nav {
             display: flex;
             flex-wrap: wrap;
             gap: 10px;
             margin-bottom: 20px;
             border-bottom: 1px solid rgba(255, 255, 255, 0.1);
             padding-bottom: 10px;
         }

         .about-nav button {
             background: rgba(255, 255, 255, 0.1);
             border: none;
             color: white;
             padding: 8px 15px;
             border-radius: 4px;
             cursor: pointer;
             font-size: 12px;
         }

         .about-nav button:hover {
             background: rgba(255, 255, 255, 0.2);
         }

         .about-page {
             display: none;
         }

         .about-page h2 {
             width: 100%;
         }

         .about-page.active {
             display: flex;
             flex-wrap: wrap;
             width: 100%;
         }

         #references-page.active {
             justify-content: space-between;
         }

         /* Language Window Styles */
         #language-window {
             width: 300px;
             height: 400px;
         }

         .language-options {
             display: flex;
             flex-direction: column;
             gap: 10px;
             padding: 15px;
         }

         .language-option {
             display: flex;
             align-items: center;
             gap: 10px;
             padding: 10px;
             cursor: pointer;
             border-radius: 5px;
             transition: background-color 0.2s;
         }

         .language-option:hover {
             background-color: rgba(255, 255, 255, 0.1);
         }

         .language-option img {
             width: 20px;
             height: 15px;
             object-fit: cover;
         }

         /* Analog Clock Styles */
         .analog-clock {
             position: fixed;
             top: 15px;
             right: 20px;
             width: 120px;
             height: 120px;
             z-index: 9999;
             background: rgba(30, 30, 30, 0.8);
             border-radius: 50%;
             border: 2px solid rgba(255, 255, 255, 0.2);
             box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
             z-index: 1;
             display: block;
         }

         .clock-face {
             position: relative;
             width: 100%;
             height: 100%;
             border-radius: 50%;
         }

         .clock-mark {
             position: absolute;
             top: 0;
             left: 50%;
             width: 2px;
             height: 100%;
             transform-origin: 50% 50%;
         }

         .mark-inner {
             position: absolute;
             top: 5px;
             left: 0;
             width: 2px;
             height: 10px;
             background: rgba(255, 255, 255, 0.7);
         }

         /* For the 12, 3, 6, 9 marks */
         .clock-mark:nth-child(3n) .mark-inner {
             height: 15px;
             background: white;
         }

         .hand {
             position: absolute;
             bottom: 50%;
             left: 50%;
             transform-origin: 50% 100%;
             border-radius: 4px;
         }

         .hour-hand {
             width: 6px;
             height: 55px;
             margin-left: -3px;
             background: white;
             box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
         }

         .minute-hand {
             width: 4px;
             height: 50px;
             margin-left: -2px;
             background: white;
             box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
         }

         .second-hand {
             width: 2px;
             height: 55px;
             margin-left: -1px;
             background: #ff4444;
             box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
         }

         .center-point {
             position: absolute;
             top: 50%;
             left: 50%;
             width: 12px;
             height: 12px;
             margin: -6px 0 0 -6px;
             background: white;
             border-radius: 50%;
             border: 2px solid #ff4444;
             box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
             z-index: 10;
         }

         .digital-time {
             position: absolute;
             bottom: -25px;
             left: 0;
             width: 100%;
             text-align: center;
             color: white;
             font-size: 12px;
             font-family: 'Segoe UI', sans-serif;
         }

         /* Dil seçenekleri için hover efekti */
         .language-option:hover {
             background-color: rgba(255, 255, 255, 0.1);
             transform: scale(1.02);
             transition: all 0.2s ease;
         }

         /* Aktif dil göstergesi */
         .language-option.active {
             border-left: 3px solid #0078d7;
             background-color: rgba(0, 120, 215, 0.1);
         }

         /* Projects & Games Grid */
         .projects-grid,
         .games-grid {
             display: grid;
             grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
             gap: 20px;
             padding: 15px;
         }

         .window .project-card img {
             width: 316px;
         }



         .project-card {
             background: transparent;
             border-radius: 8px;
             padding: 20px;
             cursor: pointer;
             transition: all 0.2s ease;
             border: none;
             display: flex;
             flex-wrap: wrap;

         }

         .game-card {
             background: rgba(255, 255, 255, 0.05);
             border-radius: 8px;
             padding: 20px;
             cursor: pointer;
             transition: all 0.2s ease;
             border: 1px solid rgba(255, 255, 255, 0.1);
         }

         .project-card:hover {
             background: rgba(255, 255, 255, 0.1);
         }

         .game-card:hover {
             background: rgba(255, 255, 255, 0.1);
             transform: translateY(-3px);
         }

         .project-card i,
         .game-card i {
             font-size: 2rem;
             margin-bottom: 10px;
             display: block;
             color: #0078d7;
         }

         .project-card h3 {
             margin: 5px 0 5px 10px;
         }

         .game-card h3 {
             margin: 5px 0;
         }

         .project-card p,
         .game-card p {
             margin: 5px 0 10px;
             color: rgba(255, 255, 255, 0.7);
         }

         .tags {
             display: flex;
             flex-wrap: wrap;
             gap: 5px;
         }

         .tags span {
             background: rgba(0, 120, 215, 0.2);
             padding: 3px 8px;
             border-radius: 4px;
             font-size: 12px;
             color: #0078d7;
         }



         /* Tam ekran loading kapsayıcı */
         #loadingScreen {
             position: fixed;
             top: 0;
             left: 0;
             width: 100%;
             height: 100%;
             background-image: url('../images/there-is-a-small-dirt-road-on-a-beautiful--slightl.jpg');
             background-size: cover;
             background-position: center center;
             background-repeat: no-repeat;
             display: flex;
             justify-content: center;
             align-items: center;
             z-index: 9999;
             transition: opacity 1s ease;
         }

         /* Solarak kaybolma animasyonu */
         #loadingScreen.fade-out {
             opacity: 0;
             pointer-events: none;
         }

         /* Spinner animasyonu */
         .spinner {
             width: 60px;
             height: 60px;
             border: 6px solid rgba(255, 255, 255, 0.3);
             border-top-color: white;
             border-radius: 50%;
             animation: spin 1s linear infinite;
             position: absolute;
             bottom: 50px;
         }

         @keyframes spin {
             to {
                 transform: rotate(360deg);
             }
         }

         body.loaded {
             overflow: unset;
         }


         .windows-button {
             display: inline-block;
             padding: 10px 20px;
             background-color: #878787;
             /* Windows mavisi */
             color: white;
             text-decoration: none;
             border: none;
             border-radius: 4px;
             font-family: 'Segoe UI', sans-serif;
             font-weight: bold;
             cursor: pointer;
             box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
             transition: background-color 0.3s;
             margin-top: 20px;
         }

         .windows-button:hover {
             background-color: #555555;
             /* Hover rengi */
         }

         .windows-button:active {
             background-color: #005a9e;
             /* Tıklama efekti */
             box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
         }

         /* Oyun Boyut Ayarları */
         .chess-game {
             zoom: 1;
             width: 100%;
             min-height: 600px
         }

         .snake-game {
             zoom: 0.8;
             width: 100%;
             min-height: 600px
         }

         .ttt-game {
             zoom: 1;
             width: 100%;
             min-height: 600px
         }

         .tetris-game {
             zoom: 1;
             width: 100%;
             min-height: 600px
         }

              .dino-game {
             zoom: 1;
             width: 100%;
             min-height: 400px
         }

         .reference-item img{
            width: 200px;
         }

         /* Mobil Uyum Ayarları */
         @media (max-width: 862px) {

             body {
                 height: 97dvh !important;
             }

             .windows-button {
                 margin-top: 30px;
             }

             .desktop-icons {
                 position: static;
                 flex-direction: column;
                 flex-wrap: wrap;
                 justify-content: center;
                 gap: 15px;
                 max-height: unset;
                 margin-top: 15px;
             }

             .desktop-icon {
                 width: 60px;
             }

             .desktop-icon i {
                 font-size: 30px;
             }

             .desktop-icon span {
                 font-size: 10px;
             }

             .taskbar {
                 height: 56px;
                 justify-content: space-around;
             }

             .taskbar-icon {
                 width: 36px;
                 height: 36px;
             }

             .taskbar-icon i {
                 font-size: 16px;
             }

             .window {
                 width: 95% !important;
                 height: 72% !important;
                 max-height: 72% !important;
                 top: 50% !important;
                 left: 50% !important;
                 transform: translate(-50%, -50%) !important;
                 border-radius: 6px !important;
             }

             .window.maximized {
                 width: 100% !important;
                 height: calc(100% - 56px) !important;
                 border-radius: 0 !important;
             }

             .window-header {
                 height: 40px;
                 padding: 0 8px;
             }

             .window-title {
                 font-size: 14px;
             }

             .window-content {
                 padding: 10px;
                 font-size: 14px;
             }

             .project-grid,
             .projects-grid,
             .games-grid {
                 grid-template-columns: 1fr;
                 gap: 15px;
             }

             .project-card img {
                 width: 90px !important;
                 margin-right: 10px;
             }

             .project-detail-image {
                 width: 100%;
             }

             .work-item .logo {
                 width: 80px;
             }

             .work-item .content {
                 width: calc(100% - 80px);
                 padding-left: 15px;
             }

             .skills-grid {
                 grid-template-columns: 1fr;
             }

             .analog-clock {
                 width: 90px;
                 height: 90px;
                 top: 10px;
                 right: 10px;
             }

             .minute-hand {
                 width: 4px;
                 height: 30px;
                 margin-left: -2px;
                 background: white;
                 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
             }

             .second-hand {
                 width: 2px;
                 height: 35px;
                 margin-left: -1px;
                 background: #ff4444;
                 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
             }

             .hour-hand {
                 width: 6px;
                 height: 35px;
                 margin-left: -3px;
                 background: white;
                 box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
             }

             .digital-time {
                 font-size: 10px;
             }

             .contact-form {
                 width: 90%;
                 gap: 10px;
             }

                      .contact-other {
              width: 90%;
                 gap: 10px;
         }

             .contact-form input,
             .contact-form textarea {
                 padding: 8px;
                 font-size: 14px;
             }

             .contact-form button {
                 padding: 8px 16px;
                 font-size: 14px;
             }

             /* Oyun Boyut Ayarları */
             .chess-game {
                 zoom: 0.8;
             }

             .snake-game {
                 zoom: 0.8;
             }

             .ttt-game {
                 zoom: 0.8;
                 height: 660px;
             }
              .tetris-game {
             zoom: 0.8;
         }

         }

         /* Mobil Uyum Ayarları */
         @media (max-width: 462px) {

             /* Oyun Boyut Ayarları */
             .chess-game {
                 zoom: 0.6;
             }

             .snake-game {
                 zoom: 0.6;
                 height: 800px;
             }
             .reference-item {
                 width: 100%;
                 display: flex;
                 flex-wrap: wrap;
                 justify-content: center;
                    align-items: center;
                    padding:10px 20px;
             }
             .reference-item img{
                width: 250px;
             
             }
         }

         /* Mobil Uyum Ayarları */
         @media (max-width: 384px) {

             /* Oyun Boyut Ayarları */
             .chess-game {
                 zoom: 0.50;
             }

             .snake-game {
                 zoom: 0.50;
                 height: 900px;
             }
         }