  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: white;
      overflow-x: hidden;
    }

    /* ==================== Hero Section ==================== */
    .profile-hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: white;
      overflow: hidden;
      padding: 0;
    }

    /* Hero Background Image */
    .hero-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    /* Gradient Overlay */
    .hero-background::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.85) 0%, 
        rgba(118, 75, 162, 0.75) 50%, 
        rgba(240, 147, 251, 0.85) 100%);
      z-index: 1;
    }

    /* Animated pattern overlay */
    .hero-background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      z-index: 2;
      animation: patternMove 20s ease-in-out infinite;
    }

    @keyframes patternMove {
      0%, 100% { transform: translate(0, 0) scale(1); }
      50% { transform: translate(30px, -30px) scale(1.1); }
    }

    /* Floating particles - adjusted for visibility */
    .particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      opacity: 0.6;
      z-index: 3;
      animation: particleFloat 20s infinite ease-in-out;
      box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }

    .particle:nth-child(1) {
      width: 100px;
      height: 100px;
      top: 15%;
      left: 10%;
      animation-delay: 0s;
    }

    .particle:nth-child(2) {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 8%;
      animation-delay: 5s;
    }

    .particle:nth-child(3) {
      width: 80px;
      height: 80px;
      bottom: 15%;
      left: 15%;
      animation-delay: 10s;
    }

    @keyframes particleFloat {
      0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6; 
      }
      50% { 
        transform: translate(60px, -60px) scale(1.3); 
        opacity: 0.8; 
      }
    }

    .profile-hero-content {
      position: relative;
      z-index: 10;
      text-align: center;
      animation: heroContentFadeIn 1.5s ease-out;
      padding: 2rem;
    }

    @keyframes heroContentFadeIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .profile-image {
      width: 220px;
      height: 220px;
      margin: 0 auto 2.5rem;
      position: relative;
      animation: profileImageEntrance 1.8s ease-out;
    }

    @keyframes profileImageEntrance {
      0% { 
        opacity: 0; 
        transform: scale(0.5) rotate(-10deg); 
      }
      60% {
        transform: scale(1.1) rotate(5deg);
      }
      100% { 
        opacity: 1; 
        transform: scale(1) rotate(0deg); 
      }
    }

    /* Animated ring around profile image */
    .profile-image::before {
      content: '';
      position: absolute;
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.5), #ffffff);
      border-radius: 50%;
      animation: profileRingRotate 4s linear infinite;
      z-index: -1;
      box-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
    }

    @keyframes profileRingRotate {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Pulsing outer ring */
    .profile-image::after {
      content: '';
      position: absolute;
      top: -25px;
      left: -25px;
      right: -25px;
      bottom: -25px;
      border: 3px solid rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      animation: profileRingPulse 2s ease-out infinite;
    }

    @keyframes profileRingPulse {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      100% {
        transform: scale(1.2);
        opacity: 0;
      }
    }

    .profile-image img {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      object-fit: cover;
      border: 6px solid white;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
      position: relative;
      z-index: 1;
      transition: transform 0.4s ease;
    }

    .profile-image:hover img {
      transform: scale(1.05);
    }

    .profile-hero h1 {
      font-size: clamp(2.8rem, 7vw, 5rem);
      font-weight: 900;
      color: white;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
      text-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 255, 255, 0.2);
      letter-spacing: 1px;
      animation: heroTitleGlow 3s ease-in-out infinite alternate;
    }

    @keyframes heroTitleGlow {
      from { 
        text-shadow: 
          0 10px 30px rgba(0, 0, 0, 0.5),
          0 5px 15px rgba(0, 0, 0, 0.3),
          0 0 50px rgba(255, 255, 255, 0.2);
      }
      to { 
        text-shadow: 
          0 10px 30px rgba(0, 0, 0, 0.5),
          0 5px 15px rgba(0, 0, 0, 0.3),
          0 0 80px rgba(255, 255, 255, 0.5),
          0 0 100px rgba(255, 255, 255, 0.3);
      }
    }

    .subtitle {
      font-size: clamp(1.2rem, 2.8vw, 1.6rem);
      color: white;
      font-weight: 500;
      margin-bottom: 3rem;
      padding: 1rem 2.5rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(15px);
      border-radius: 50px;
      display: inline-block;
      border: 2px solid rgba(255, 255, 255, 0.3);
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
      animation: subtitleSlide 1.5s ease-out 0.3s backwards;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }

    @keyframes subtitleSlide {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .profile-stats {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      margin-top: 3rem;
    }

    .stat-item {
      text-align: center;
      padding: 2rem 2.5rem;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(15px);
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      transition: all 0.4s ease;
      border: 2px solid rgba(255, 255, 255, 0.3);
      min-width: 160px;
      animation: statFadeIn 1.8s ease-out backwards;
    }

    .stat-item:nth-child(1) { animation-delay: 0.5s; }
    .stat-item:nth-child(2) { animation-delay: 0.7s; }
    .stat-item:nth-child(3) { animation-delay: 0.9s; }

    @keyframes statFadeIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .stat-item:hover {
      transform: translateY(-8px) scale(1.05);
      background: rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
      border-color: rgba(255, 255, 255, 0.5);
    }

    .stat-icon {
      font-size: 3rem;
      display: block;
      margin-bottom: 1rem;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
      animation: iconFloat 3s ease-in-out infinite;
    }

    @keyframes iconFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: white;
      display: block;
      margin-bottom: 0.5rem;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }

    .stat-label {
      font-size: 0.95rem;
      color: rgba(255, 255, 255, 0.95);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-weight: 600;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .scroll-hint {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      animation: scrollBounce 2s infinite;
      font-size: 2.5rem;
      color: white;
      z-index: 10;
      filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
      cursor: pointer;
    }

    @keyframes scrollBounce {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
      50% { transform: translateX(-50%) translateY(20px); opacity: 0.7; }
    }

    /* ==================== Section Styles ==================== */
    section {
      padding: 6rem 2rem;
      position: relative;
      background: white;
    }

    .section-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .section-header h2 {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 800;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
      position: relative;
      display: inline-block;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
      border-radius: 2px;
    }

    .section-header p {
      font-size: 1.2rem;
      color: #777;
      margin-top: 1.5rem;
      font-weight: 400;
    }

    /* ==================== Motivation Section ==================== */
    #motivation {
      background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    }

    .motivation-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .motivation-text h3 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 1.5rem;
      line-height: 1.3;
    }

    .motivation-text p {
      font-size: 1.1rem;
      line-height: 1.9;
      color: #555;
      margin-bottom: 1.5rem;
    }

    .motivation-text strong {
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
    }

    .motivation-image {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      position: relative;
    }

    .motivation-image::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(240, 147, 251, 0.1));
      z-index: 1;
      transition: opacity 0.3s ease;
    }

    .motivation-image:hover::before {
      opacity: 0;
    }

    .motivation-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      min-height: 500px;
      transition: transform 0.5s ease;
    }

    .motivation-image:hover img {
      transform: scale(1.05);
    }

    /* ==================== Timeline Section ==================== */
    #herkunft {
      background: white;
    }

    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem 0;
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
      transform: translateX(-50%);
    }

    .timeline-item {
      position: relative;
      margin-bottom: 4rem;
    }

    .timeline-item:nth-child(odd) .timeline-content {
      margin-right: calc(50% + 40px);
      text-align: right;
    }

    .timeline-item:nth-child(even) .timeline-content {
      margin-left: calc(50% + 40px);
      text-align: left;
    }

    .timeline-content {
      background: white;
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 2px solid rgba(102, 126, 234, 0.1);
      transition: all 0.3s ease;
    }

    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
      border-color: rgba(102, 126, 234, 0.3);
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border: 4px solid white;
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
      z-index: 10;
    }

    .timeline-content h3 {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 0.5rem;
    }

    .timeline-content .date {
      font-size: 1rem;
      font-weight: 600;
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      display: inline-block;
    }

    .timeline-content p:last-child {
      color: #555;
      line-height: 1.8;
    }

    /* ==================== Career Cards ==================== */
    #werdegang {
      background: white;
    }

    .career-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
    }

    .career-card {
      background: white;
      border-radius: 30px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      border: 3px solid transparent;
    }

    .career-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
    }

    .career-card:hover::before {
      opacity: 1;
    }

    .career-card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
      border-color: white;
    }

    .career-card-image {
      width: 100%;
      height: 220px;
      overflow: hidden;
      position: relative;
    }

    .career-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .career-card:hover .career-card-image img {
      transform: scale(1.1);
    }

    .career-card-image::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    }

    .career-icon-badge {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 80px;
      height: 80px;
      background: white;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 10;
      transition: all 0.3s ease;
    }

    .career-card:hover .career-icon-badge {
      transform: rotate(10deg) scale(1.1);
    }

    .career-card-content {
      padding: 2.5rem;
    }

    .career-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      color: #2c3e50;
      margin-bottom: 0.8rem;
      transition: color 0.3s ease;
    }

    .career-card:hover h3 {
      color: white;
    }

    .career-card .period {
      font-size: 1rem;
      font-weight: 700;
      padding: 0.6rem 1.2rem;
      border-radius: 30px;
      display: inline-block;
      margin-bottom: 1.2rem;
      transition: all 0.3s ease;
    }

    .career-card:nth-child(1) .period {
      background: linear-gradient(135deg, #667eea15, #764ba215);
      color: #667eea;
      border: 2px solid #667eea30;
    }

    .career-card:nth-child(2) .period {
      background: linear-gradient(135deg, #f093fb15, #f5576c15);
      color: #f5576c;
      border: 2px solid #f5576c30;
    }

    .career-card:nth-child(3) .period {
      background: linear-gradient(135deg, #4facfe15, #00f2fe15);
      color: #00a8e8;
      border: 2px solid #00a8e830;
    }

    .career-card:nth-child(4) .period {
      background: linear-gradient(135deg, #43e97b15, #38f9d715);
      color: #38d39f;
      border: 2px solid #38d39f30;
    }

    .career-card:hover .period {
      background: white;
      transform: scale(1.05);
    }

    .career-card p:last-child {
      color: #555;
      line-height: 1.9;
      font-size: 1.05rem;
      transition: color 0.3s ease;
    }

    .career-card:hover p:last-child {
      color: rgba(255, 255, 255, 0.95);
    }

    /* ==================== Hobbies Section ==================== */
    #hobbys {
      background: white;
    }

    .hobbies-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2.5rem;
    }

    .hobby-card {
      background: white;
      border-radius: 30px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      overflow: hidden;
      position: relative;
      border: 3px solid transparent;
    }

    .hobby-card:hover {
      transform: translateY(-15px) rotate(1deg) scale(1.02);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    }

    .hobby-card-image {
      width: 100%;
      height: 240px;
      overflow: hidden;
      position: relative;
    }

    .hobby-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .hobby-card:hover .hobby-card-image img {
      transform: scale(1.15) rotate(2deg);
    }

    .hobby-icon-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100px;
      height: 100px;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3.5rem;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      z-index: 10;
      transition: all 0.4s ease;
      animation: hobbyFloat 3s ease-in-out infinite;
    }

    .hobby-card:hover .hobby-icon-overlay {
      transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .hobby-card-content {
      padding: 2.5rem;
      text-align: center;
      position: relative;
    }

    .hobby-card-content::before {
      content: '';
      position: absolute;
      top: -3px;
      left: 10%;
      right: 10%;
      height: 6px;
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .hobby-card:nth-child(1) .hobby-card-content::before {
      background: linear-gradient(90deg, #667eea, #764ba2);
    }

    .hobby-card:nth-child(2) .hobby-card-content::before {
      background: linear-gradient(90deg, #f093fb, #f5576c);
    }

    .hobby-card:nth-child(3) .hobby-card-content::before {
      background: linear-gradient(90deg, #4facfe, #00f2fe);
    }

    .hobby-card:nth-child(4) .hobby-card-content::before {
      background: linear-gradient(90deg, #43e97b, #38f9d7);
    }

    .hobby-card:hover .hobby-card-content::before {
      left: 5%;
      right: 5%;
    }

    .hobby-card h3 {
      font-size: 1.8rem;
      font-weight: 800;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }

    .hobby-card:nth-child(1) h3 {
      background: linear-gradient(135deg, #667eea, #764ba2);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hobby-card:nth-child(2) h3 {
      background: linear-gradient(135deg, #f093fb, #f5576c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hobby-card:nth-child(3) h3 {
      background: linear-gradient(135deg, #4facfe, #00f2fe);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hobby-card:nth-child(4) h3 {
      background: linear-gradient(135deg, #43e97b, #38f9d7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hobby-card p {
      color: #555;
      line-height: 1.9;
      font-size: 1.05rem;
    }

    /* Gradient border effect on hover */
    .hobby-card:nth-child(1):hover {
      border-color: #667eea;
      box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
    }

    .hobby-card:nth-child(2):hover {
      border-color: #f5576c;
      box-shadow: 0 25px 60px rgba(245, 87, 108, 0.25);
    }

    .hobby-card:nth-child(3):hover {
      border-color: #00f2fe;
      box-shadow: 0 25px 60px rgba(0, 242, 254, 0.25);
    }

    .hobby-card:nth-child(4):hover {
      border-color: #38f9d7;
      box-shadow: 0 25px 60px rgba(56, 249, 215, 0.25);
    }

    /* ==================== Responsive Design ==================== */
    @media (max-width: 968px) {
      .motivation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .timeline::before {
        left: 20px;
      }

      .timeline-item:nth-child(odd) .timeline-content,
      .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
        margin-right: 0;
        text-align: left;
      }

      .timeline-dot {
        left: 20px;
      }
    }

    @media (max-width: 768px) {
      section {
        padding: 4rem 1.5rem;
      }

      .profile-stats {
        gap: 2rem;
      }

      .stat-item {
        min-width: 120px;
        padding: 1.2rem 1.5rem;
      }

      .motivation-image img {
        min-height: 350px;
      }
    }

    @media (max-width: 480px) {
      .profile-hero {
        padding: 1rem;
      }

      .profile-image {
        width: 150px;
        height: 150px;
      }

      .subtitle {
        padding: 0.6rem 1.5rem;
      }

      .stat-icon {
        font-size: 2rem;
      }

      .stat-number {
        font-size: 1.5rem;
      }
    }
