body { 
    background: #000;
    color: white;
    margin: 0;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Courier New", monospace;

    overflow: hidden;
}

.Glitch {
    position: fixed;
    bottom: 0;
    transform: scaleX(-1);
    opacity: 0.6;
    left: 0;
    max-width: 30vw;
    z-index: 0;
}

.Serial {
    position: fixed;
    bottom: 0;
    left: 0;
    max-width: 30vw;
    z-index: 0;
}

.Layer {
    position: fixed;
    top: 0;
    right: 10px;
    max-width: 20vw;
}

.Blog {
    position: fixed;
    bottom: 0;
    right: 10px;
    font-size: clamp(100px, 2.5vw, 100px);
}

.Blog a {
    color: white;
    text-decoration: none;
}

.About_me {
    position: fixed;
    right: 15%;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    max-width: 40vw;
    text-align: center;
    line-height: 1.6;
    font-size: clamp(16px, 1.5vw, 25px);
    color: white;
    z-index: 10;
    overflow-y: auto;
}

@media (max-width: 900px) {

    body {
        overflow-y: auto;
    }

    .About_me {
        position: fixed;
        top: 10%;
        left: 5%;
        width: 90%;
        height: 80%;
        overflow-y: auto;
        padding: 15px;
        background: rgba(0,0,0,0.65);
        backdrop-filter: blur(2px);
        transform: none;
        margin: 0 auto;
        border-radius: 10px;
        z-index: 10;
    }

    .About_me::-webkit-scrollbar {
        width: 6px;
    }

    .About_me::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.4);
        border-radius: 10px;
    }
}

.nav-menu {
    position: fixed;
    top: 20vh;
    left: 40px;
    list-style: none;
    padding: 0;
}

.item {
    margin: 12px 0;
    cursor: pointer;
    transition: transform 0.25s ease;
    position: relative;
    font-size: clamp(24px, 4vw, 40px);
}

.item.active {
    transform: translateX(12px);
}

.label {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  width: 100%;


    letter-spacing: 2px;
}


.label:focus {
  outline: 2px solid #fff;
}

.arrow {
    opacity: 0;
    margin-left: 8px;
    transition: 0.25s ease;
}

.item.active .arrow {
    opacity: 1;
    transform: translateX(10px);
}

.submenu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;
    padding: 10px;
    min-width: 200px;
}

.submenu a {
    color: white;
    font-size: 20px
}

.item.active .submenu {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-5px); }
    to   { opacity: 1; transform: translateX(0); }
}

.circle-container {
    position: relative;
    width: min(600px, 70vw);   
    height: min(600px, 70vw);
}

.bg-img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: black;
    border: 2px solid #ff7ca7;
    box-shadow:
        0 0 25px rgba(255, 120, 150, 0.5),
        0 0 80px rgba(255, 80, 150, 0.3);
    z-index: 1;
}


.icon {
    width: clamp(22px, 4vw, 40px);
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 2;
}


.pos1 { top: 10%; left: 50%; }
.pos2 { top: 25%; left: 80%; }
.pos3 { top: 50%; left: 90%; }
.pos4 { top: 75%; left: 80%; }
.pos5 { top: 90%; left: 50%; }
.pos6 { top: 50%; left: 10%; }

.eye {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.eye_center {
    display: block;
    margin: auto;
    width: 25%;
    height: auto;
}

.CV_link {
    text-align: center;
    padding: 10px;
    font-size: clamp(20px, 5vw, 50px);
}

  .back-arrow {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 2rem;
    z-index: 1000;
  }

  @media (max-width: 480px) {
    .back-arrow {
      top: 15px;
      left: 15px;
      width: 35px;
      height: 35px;
      font-size: 1.8rem;
    }
  }

.Blog_container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 620px;
    max-width: 90vw;
    max-height: 80vh;

    color: white;
    text-align: center;
    line-height: 1.7;
    font-size: clamp(16px, 1.4vw, 22px);

    z-index: 10;
    overflow-y: auto;

    padding: 20px;
    box-sizing: border-box;

    background: rgba(0,0,0,0);
}

@media (max-width: 900px) {
    .Blog_container {
        left: 5%;
        right: 5%;
        top: 10%;
        bottom: 10%;

        width: auto;
        max-width: none;

        padding: 15px;
        background: rgba(0,0,0,0.65);
        backdrop-filter: blur(2px);
        border-radius: 10px;
    }
}

.Blog_container::-webkit-scrollbar {
    width: 8px;
    background: transparent;
}


.Blog_container::-webkit-scrollbar-thumb {
    background: rgba(255, 120, 167, 0.7);
    border-radius: 20px;
    min-height: 40px;
    max-height: 50px;
    box-shadow: 0 0 5px rgba(255, 120, 167, 0.4);
}

.Blog_container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 160, 190, 0.9);
}

.Blog_container::-webkit-scrollbar-button {
    display: none;
}

.blog-image {
position: absolute;
right: 0px;
bottom: 0px;
opacity: 0.85;
z-index: 1;
pointer-events: none;
}