        body {
          background: url('img/background.jpg') no-repeat center bottom/cover;
          font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
          color: #fff;
        }

        .glass {
          background: rgba(255, 255, 255, 0.1);
          backdrop-filter: blur(12px);
          border-radius: 15px;
          padding: 2rem;
          margin-bottom: 2rem;
          box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
        }

        .avatar {
          width: 150px;
          height: 150px;
          border-radius: 50%;
          overflow: hidden;
          margin: 0 auto 1rem;
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
        }

        .avatar img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }

        .section-title {
          font-size: 1.5rem;
          margin-bottom: 1rem;
          border-bottom: 2px solid #fff;
          padding-bottom: 0.5rem;
        }

        .skill-icon {
          font-size: 2rem;
          margin: 0.5rem;
          transition: transform 0.2s ease-in-out;
        }

        .skill-icon:hover {
          transform: scale(1.1);
        }

        .timeline {
          list-style: none;
          padding-left: 0;
          position: relative;
          margin-left: 1rem;
        }

        .timeline li {
          margin-bottom: 1rem;
          position: relative;
        }

        .timeline-dot {
          width: 12px;
          height: 12px;
          background-color: #3c9df6;
          border-radius: 50%;
          position: absolute;
          left: -20px;
          top: 6px;
        }

        .timeline-content {
          margin-left: 1.5rem;
        }

        .award-item {
          background-color: rgba(255, 255, 255, 0.1);
          padding: 0.5rem 1rem;
          border-radius: 8px;
          margin-bottom: 0.5rem;
          display: flex;
          align-items: center;
          gap: 0.5rem;
        }

        .project-item {
          padding: 0.5rem 0;
          border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
          display: flex;
          justify-content: space-between;
          align-items: center;
        }

        /* Responsive design improvements */
        @media (max-width: 768px) {
          .avatar {
            width: 120px;
            height: 120px;
          }

          .skill-icon {
            font-size: 1.5rem;
          }
        }