:root {
    --primary: #ff69b4;
    --primary-light: #ff85c1;
    --secondary: #1a1a1a;
    --text-light: #ffb6c1;
  }
  
  body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #0f0f0f;
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
  }

  header {
    background-color: var(--secondary);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-sizing: border-box;
    transition: all 0.4s ease;
  }
  
  header.scrolled {
    padding: 15px 40px;
    background-color: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  }

  header h1 {
    color: var(--primary);
    font-size: 24px;
    margin: 0;
    transition: all 0.3s ease;
  }
  
  header h1:hover {
    color: var(--primary-light);
    transform: scale(1.05);
  }

  nav {
    display: flex;
  }

  nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
    font-size: 18px;
    position: relative;
    transition: all 0.3s ease;
  }

  nav a:hover {
    color: var(--primary);
  }
  
  nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
  }
  
  nav a:hover::after {
    width: 100%;
  }

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .hamburger:hover {
    transform: scale(1.1);
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }
  
  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero {
    padding: 180px 40px 120px;
    text-align: center;
    background: linear-gradient(to right, #0f0f0f, #1a1a1a);
    position: relative;
    overflow: hidden;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,105,180,0.1) 0%, transparent 50%);
    z-index: 0;
  }

  .hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
    position: relative;
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
    animation: fadeInDown 1s ease;
  }

  .hero p {
    font-size: 20px;
    color: var(--text-light);
    position: relative;
    animation: fadeInUp 1s ease 0.3s both;
  }
  
  .section {
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
  }
  
  .section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,105,180,0.05) 0%, transparent 50%);
    z-index: -1;
  }

  .section h3 {
    font-size: 32px;
    color: var(--primary);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .section h3::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: -10px;
    left: 20%;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
  }

  /* About Me Section */
  .about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
  }
  
  .about-content p {
    margin-bottom: 20px;
  }

  /* Skills Section */
  .skills-container {
    max-width: 800px;
    margin: 40px auto 0;
  }
  
  .skill-item {
    margin-bottom: 25px;
  }
  
  .skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
  }
  
  .skill-name {
    font-weight: bold;
  }
  
  .skill-percent {
    color: var(--text-light);
  }
  
  .skill-bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .skill-level {
height: 100%;
background: linear-gradient(to right, var(--primary), var(--primary-light));
border-radius: 5px;
width: 0; /* Start at 0 width */
transition: width 1s ease-out; /* Smooth animation */
}

  /* Portfolio Buttons */
  .portfolio-buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  /* Gallery Layout */
  .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .video-card {
    background-color: #1f1f1f;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.4s ease;
    width: calc(50% - 20px);
    max-width: 600px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,105,180,0.1) 0%, transparent 50%);
    z-index: 0;
  }

  .video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255,105,180,0.2);
  }

  .video-card iframe {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    object-fit: cover;
    transition: all 0.4s ease;
  }
  
  .video-card:hover iframe {
    transform: scale(1.03);
  }

  .video-card h4 {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
    position: relative;
  }

  .video-card p {
    margin-top: 10px;
    color: #ccc;
    position: relative;
  }

  footer {
    background-color: var(--secondary);
    text-align: center;
    padding: 30px;
    color: #888;
    position: relative;
  }
  
  footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
  }

  /* Enhanced Social Media Section */
  .social-section {
    text-align: center;
    margin-top: 30px;
    position: relative;
  }
  
  .social-intro {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1s ease 0.2s both;
  }
  
  .social-cta {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 50px;
    color: var(--primary);
    text-shadow: 0 0 10px rgba(255,105,180,0.3);
    animation: fadeIn 1s ease 0.4s both;
  }

  .social-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s both;
  }

  .social-platform {
    text-align: center;
    width: 240px;
    transition: all 0.4s ease;
  }
  
  .social-platform:hover {
    transform: translateY(-10px);
  }
  
  .social-label {
    margin-top: 20px;
    font-size: 20px;
    font-weight: bold;
    color: white;
  }
  
  .social-description {
    margin-top: 15px;
    font-size: 16px;
    color: #ccc;
    min-height: 60px;
    line-height: 1.5;
  }
  
  .social-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }
  
  .instagram-button {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
  }
  
  .twitter-button {
    background: linear-gradient(45deg, #1da1f2, #0d8ecf);
    color: white;
  }
  
  .social-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  /* App icon styling with glow */
  .app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: white;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
  }
  
  .app-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
  }
  
  .social-platform:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .social-platform:hover .app-icon::before {
    opacity: 1;
    transform: scale(1.2);
  }
  
  .instagram-icon {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }
  
  .instagram-icon::before {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    box-shadow: 0 0 30px rgba(225, 48, 108, 0.6);
  }
  
  .twitter-icon {
    background: linear-gradient(45deg, #1da1f2, #0d8ecf);
  }
  
  .twitter-icon::before {
    background: linear-gradient(45deg, #1da1f2, #0d8ecf);
    box-shadow: 0 0 30px rgba(29, 161, 242, 0.6);
  }

  .portfolio-buttons button {
    background-color: var(--primary);
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,105,180,0.3);
  }

  .portfolio-buttons button:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,105,180,0.4);
  }

  .portfolio-buttons button.active {
    background-color: var(--primary-light);
    box-shadow: 0 0 15px rgba(255,105,180,0.6);
  }

  /* Floating animation for subtle movement */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  .floating {
    animation: float 6s ease-in-out infinite;
  }
  
  /* Scroll reveal animation */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    nav {
      display: none;
      position: absolute;
      top: 80px;
      left: 0;
      background-color: var(--secondary);
      width: 100%;
      padding: 20px;
      box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
      text-align: center;
    }

    nav.active {
      display: flex;
      flex-direction: column;
    }

    nav a {
      margin: 15px 0;
    }

    .portfolio-buttons {
      flex-direction: column;
      gap: 20px;
    }

    .video-card {
      width: 100%;
    }

    .video-card iframe {
      height: 200px;
    }

    /* Adjusted social section for mobile */
    .social-container {
      flex-direction: column;
      gap: 60px;
      align-items: center;
    }
    
    .social-platform {
      width: 100%;
      max-width: 240px;
    }
    
    .social-intro, .social-cta {
      font-size: 16px;
    }
    
    .hero {
      padding: 150px 20px 80px;
    }
    
    .section {
      padding: 60px 20px;
    }
    
    .about-content, .skills-container {
      padding: 0 20px;
    }
  }
