 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: linear-gradient(160deg, #ffe0ec 0%, #ffccd5 25%, #ffb3c6 50%, #ffc2d1 75%, #ffe5ec 100%);
      background-attachment: fixed;
      font-family: 'Plus Jakarta Sans', sans-serif;
      min-height: 100vh;
      position: relative;
      overflow-x: hidden;
    }

    /* Decorative background elements */
    .bg-decoration {
      position: fixed;
      pointer-events: none;
      z-index: 0;
    }

    .bg-circle-1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(255, 182, 193, 0.3), transparent 70%);
      top: -100px;
      right: -100px;
      border-radius: 50%;
    }

    .bg-circle-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(255, 218, 185, 0.3), transparent 70%);
      bottom: -50px;
      left: -50px;
      border-radius: 50%;
    }

    .bg-circle-3 {
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(255, 240, 245, 0.4), transparent 70%);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
    }

    /* Main Container - Full Width Layout */
    .main-container {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* Header Section */
    .header-full {
      text-align: center;
      padding: 2rem 0 1.5rem;
    }

    .profile-circle {
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .profile-pic-wrapper {
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ffb7c5, #ff8da1);
      padding: 7px;
      box-shadow: 0 25px 50px rgba(255, 80, 120, 0.4), 0 0 0 10px rgba(255, 255, 255, 0.6);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .profile-pic-wrapper:hover {
      transform: scale(1.05);
      box-shadow: 0 30px 60px rgba(255, 60, 100, 0.5), 0 0 0 12px rgba(255, 240, 245, 0.8);
    }

    .profile-pic {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      display: block;
      border: 5px solid white;
    }

    .profile-fallback {
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #ffe0e8;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5.5rem;
      color: #ff7b9c;
      border: 5px solid white;
    }

    h1 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(3rem, 8vw, 5rem);
      font-weight: 800;
      letter-spacing: -2px;
      color: #c73659;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .tagline {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: #d94f70;
      letter-spacing: 0.5px;
      opacity: 0.9;
    }

    /* About Section */
    .about-section {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 2rem;
      padding: 2.5rem;
      margin: 2rem 0;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 15px 40px rgba(255, 105, 135, 0.15);
    }

    .about-title {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #c73659;
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .about-title i {
      color: #ff7b9c;
      font-size: 1.8rem;
    }

    .about-content {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #5a3e4b;
      font-weight: 400;
    }

    .about-highlights {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.5rem;
      margin-top: 2rem;
    }

    .highlight-item {
      background: rgba(255, 255, 255, 0.6);
      padding: 1.5rem;
      border-radius: 1.5rem;
      text-align: center;
      border: 1px solid rgba(255, 200, 215, 0.5);
      transition: transform 0.3s ease;
    }

    .highlight-item:hover {
      transform: translateY(-5px);
    }

    .highlight-icon {
      font-size: 2rem;
      color: #ff7b9c;
      margin-bottom: 0.8rem;
    }

    .highlight-title {
      font-weight: 600;
      color: #c73659;
      margin-bottom: 0.3rem;
    }

    .highlight-desc {
      font-size: 0.9rem;
      color: #8b6b7a;
    }

    /* Video Sections */
    .video-section {
      margin: 2rem 0;
    }

    .section-title {
      font-family: 'Outfit', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: #c73659;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .section-title i {
      color: #ff7b9c;
      font-size: 1.8rem;
    }

    /* External Videos Slider */
    .video-slider-container {
      position: relative;
      background: rgba(255, 255, 255, 0.4);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 2rem;
      padding: 2rem;
      border: 1px solid rgba(255, 255, 255, 0.8);
      box-shadow: 0 15px 40px rgba(255, 105, 135, 0.15);
      margin-bottom: 2rem;
    }

    .video-slides {
      display: flex;
      gap: 1.5rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 1rem;
      -webkit-overflow-scrolling: touch;
    }

    .video-slides::-webkit-scrollbar {
      height: 8px;
    }

    .video-slides::-webkit-scrollbar-track {
      background: rgba(255, 200, 215, 0.3);
      border-radius: 10px;
    }

    .video-slides::-webkit-scrollbar-thumb {
      background: #ffb7c9;
      border-radius: 10px;
    }

    .video-card {
      flex: 0 0 300px;
      scroll-snap-align: start;
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(200, 70, 110, 0.2);
      transition: transform 0.3s ease;
      border: 2px solid rgba(255, 200, 215, 0.5);
    }

    .video-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(200, 70, 110, 0.3);
    }

    .video-thumbnail {
      position: relative;
      aspect-ratio: 16/9;
      background: linear-gradient(135deg, #ffd9e6, #ffb7c5);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      overflow: hidden;
    }

    .video-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .video-thumbnail .play-overlay {
      position: absolute;
      font-size: 3rem;
      color: white;
      text-shadow: 0 4px 15px rgba(0,0,0,0.3);
      transition: transform 0.3s ease;
      z-index: 1;
    }

    .video-thumbnail:hover .play-overlay {
      transform: scale(1.2);
    }

    .video-info {
      padding: 1.2rem;
    }

    .video-title {
      font-weight: 600;
      color: #c73659;
      margin-bottom: 0.3rem;
      font-size: 1rem;
    }

    .video-meta {
      font-size: 0.85rem;
      color: #b37d8e;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .video-badge {
      display: inline-block;
      background: #ffb7c9;
      color: white;
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      font-size: 0.7rem;
      font-weight: 600;
      margin-top: 0.5rem;
    }

    .slider-nav {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .slider-btn {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: white;
      border: 2px solid #ffb7c9;
      color: #e8436b;
      font-size: 1.2rem;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(200, 70, 100, 0.2);
    }

    .slider-btn:hover {
      background: #ff94ab;
      color: white;
      border-color: #ff94ab;
    }

    /* Self-Hosted Videos Grid */
    .self-hosted-videos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 1.5rem;
      margin-top: 1rem;
    }

    .video-player-card {
      background: rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 1.5rem;
      overflow: hidden;
      border: 2px solid rgba(255, 200, 215, 0.5);
      box-shadow: 0 10px 30px rgba(200, 70, 110, 0.2);
      transition: transform 0.3s ease;
    }

    .video-player-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(200, 70, 110, 0.3);
    }

    .video-player-wrapper {
      position: relative;
      aspect-ratio: 16/9;
      background: #000;
    }

    .video-player-wrapper video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .custom-video-controls {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      padding: 2rem 1rem 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.8rem;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .video-player-wrapper:hover .custom-video-controls {
      opacity: 1;
    }

    .play-pause-btn {
      background: white;
      border: none;
      width: 35px;
      height: 35px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: #e8436b;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .play-pause-btn:hover {
      background: #ff94ab;
      color: white;
    }

    .progress-bar {
      flex: 1;
      height: 4px;
      background: rgba(255,255,255,0.3);
      border-radius: 2px;
      cursor: pointer;
      position: relative;
    }

    .progress-fill {
      height: 100%;
      background: #ff94ab;
      border-radius: 2px;
      width: 0%;
      transition: width 0.1s linear;
    }

    .time-display {
      color: white;
      font-size: 0.8rem;
      min-width: 80px;
      text-align: right;
    }

    .volume-btn {
      background: none;
      border: none;
      color: white;
      cursor: pointer;
      font-size: 0.9rem;
      padding: 0.3rem;
    }

    .video-player-info {
      padding: 1rem 1.2rem;
    }

    .video-player-title {
      font-weight: 600;
      color: #c73659;
      font-size: 1rem;
    }

    /* Video Modal */
    .video-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0,0,0,0.8);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .video-modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      max-width: 900px;
      width: 100%;
      box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    }

    .modal-video-wrapper {
      position: relative;
      aspect-ratio: 16/9;
      background: #000;
    }

    .modal-video-wrapper iframe,
    .modal-video-wrapper video {
      width: 100%;
      height: 100%;
      border: none;
    }

    .modal-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(255,255,255,0.9);
      border: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      color: #e8436b;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1001;
      transition: all 0.3s ease;
    }

    .modal-close:hover {
      background: #ff94ab;
      color: white;
    }

    .modal-info {
      padding: 1.5rem;
    }

    .modal-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.3rem;
      font-weight: 600;
      color: #c73659;
      margin-bottom: 0.3rem;
    }

    .modal-description {
      color: #8b6b7a;
      font-size: 0.95rem;
    }

    /* Gallery Section */
    .gallery-section {
      margin: 2rem 0;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .photo-card {
      aspect-ratio: 1 / 1;
      border-radius: 2rem;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(200, 70, 110, 0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #ffe4ec;
      border: 3px solid rgba(255, 255, 255, 0.8);
    }

    .photo-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 25px 40px rgba(210, 60, 100, 0.3);
    }

    .photo-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s;
    }

    .photo-card:hover img {
      transform: scale(1.08);
    }

    /* CTA Section */
    .cta-section {
      text-align: center;
      margin: 3rem 0 2rem;
    }

    .love-note {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 600;
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      color: #c94b68;
      background: rgba(255, 255, 255, 0.6);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      padding: 1.2rem 2.5rem;
      border-radius: 60px;
      display: inline-flex;
      align-items: center;
      gap: 1rem;
      border: 2px solid rgba(255, 175, 204, 0.6);
      box-shadow: 0 10px 30px rgba(255, 105, 135, 0.2);
      letter-spacing: 0.3px;
    }

    .love-note i {
      color: #ff4d6d;
      font-size: 1.3rem;
      animation: heartbeat 1.5s ease infinite;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }

    .social-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
    }

    .social-icon {
      font-size: clamp(1.5rem, 4vw, 1.8rem);
      color: #e8436b;
      background: rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(15px);
      -webkit-backdrop-filter: blur(15px);
      width: clamp(50px, 10vw, 60px);
      height: clamp(50px, 10vw, 60px);
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
      box-shadow: 0 8px 25px rgba(200, 70, 100, 0.25);
      border: 2px solid rgba(255, 200, 215, 0.6);
      text-decoration: none;
    }

    .social-icon:hover {
      background: #ff94ab;
      color: white;
      transform: scale(1.15);
      box-shadow: 0 15px 35px #ff7b9c;
      border-color: white;
    }

    .footer-note {
      text-align: center;
      margin-top: 3rem;
      font-weight: 400;
      font-size: 0.9rem;
      color: #b84c67;
      opacity: 0.9;
      letter-spacing: 0.5px;
      padding-top: 2rem;
      border-top: 1px dashed rgba(250, 167, 191, 0.5);
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      flex-wrap: wrap;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .main-container {
        padding: 1rem;
      }

      .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
      }

      .video-card {
        flex: 0 0 260px;
      }

      .self-hosted-videos {
        grid-template-columns: 1fr;
      }

      .about-section {
        padding: 1.5rem;
      }

      .profile-pic-wrapper {
        width: 160px;
        height: 160px;
      }
    }

    @media (max-width: 480px) {
      .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
      }

      .video-card {
        flex: 0 0 220px;
      }

      .about-highlights {
        grid-template-columns: 1fr;
      }

      .profile-pic-wrapper {
        width: 140px;
        height: 140px;
      }

      .modal-content {
        margin: 0.5rem;
      }
    }

    @media (min-width: 1200px) {
      .main-container {
        padding: 3rem;
      }

      .video-card {
        flex: 0 0 350px;
      }
    }