
    :root {
      --deep-blue: #0a2540;
      --primary-blue: #0d47a1;
      --secondary-blue: #1e88e5;
      --accent-blue: #42a5f5;
      --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      --gradient-secondary: linear-gradient(135deg, #0061ff 0%, #60efff 100%);
      --gradient-hero: linear-gradient(180deg, #0a2540 0%, #1e3a8a 100%);
      --shadow-3d: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
      --shadow-hover: 0 30px 80px rgba(0, 97, 255, 0.3);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background: #0a0e27;
      line-height: 1.6;
      overflow-x: hidden;
      color: #fff;
    }

    /* 3D Perspective Container */
    .perspective-container {
      perspective: 1500px;
      transform-style: preserve-3d;
    }

    /* Modern Glassmorphism Navbar */
    .navbar {
      background: rgba(10, 14, 39, 0.8) !important;
      backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .navbar.scrolled {
      background: rgba(10, 14, 39, 0.95) !important;
      box-shadow: 0 8px 32px rgba(0, 97, 255, 0.2);
    }

    .navbar-brand img {
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 0 10px rgba(96, 239, 255, 0.3));
    }

    .navbar-brand:hover img {
      transform: scale(1.08) translateY(-2px);
    }

    /* Mobile Hamburger Menu Fix */
    .navbar-toggler {
      border: 2px solid rgba(96, 239, 255, 0.5);
      padding: 8px 12px;
      border-radius: 8px;
      background: rgba(96, 239, 255, 0.1);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 0.25rem rgba(96, 239, 255, 0.25);
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(96, 239, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 24px;
      height: 24px;
    }

    .nav-link {
      font-weight: 500;
      position: relative;
      color: rgba(255, 255, 255, 0.9) !important;
      transition: all 0.3s ease;
      margin: 0 12px;
      padding: 8px 16px !important;
    }

    .nav-link::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-secondary);
      opacity: 0;
      border-radius: 8px;
      transition: opacity 0.3s ease;
      z-index: -1;
    }

    .nav-link:hover::before,
    .nav-link.active::before {
      opacity: 0.15;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #60efff !important;
      transform: translateY(-2px);
    }

    /* 3D Buttons with Depth */
    .btn-custom {
      background: var(--gradient-secondary);
      color: white;
      border: none;
      font-weight: 600;
      padding: 16px 40px;
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 30px rgba(0, 97, 255, 0.4),
                  0 1px 0 rgba(255, 255, 255, 0.2) inset;
      position: relative;
      overflow: hidden;
      transform: translateY(0) scale(1);
    }

    .btn-custom::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }

    .btn-custom:hover::before {
      left: 100%;
    }

    .btn-custom:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 97, 255, 0.5),
                  0 1px 0 rgba(255, 255, 255, 0.3) inset;
    }

    .btn-custom:active {
      transform: translateY(-2px) scale(0.98);
    }

    .btn-outline-dark {
      border: 2px solid rgba(96, 239, 255, 0.5);
      color: #60efff;
      background: rgba(96, 239, 255, 0.05);
      font-weight: 600;
      padding: 16px 40px;
      border-radius: 12px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      backdrop-filter: blur(10px);
    }

    .btn-outline-dark:hover {
      background: rgba(96, 239, 255, 0.15);
      border-color: #60efff;
      color: #60efff;
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(96, 239, 255, 0.3);
    }

    /* 3D Hero Section with Depth */
    .hero-section {
      background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 50%, #0a2540 100%);
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: 
        radial-gradient(circle at 30% 40%, rgba(0, 97, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
      animation: rotate-gradient 20s linear infinite;
    }

    @keyframes rotate-gradient {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .hero-section::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 200px;
      background: linear-gradient(to top, #0a0e27, transparent);
      pointer-events: none;
    }

    /* Floating Grid Background */
    .grid-background {
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(96, 239, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 239, 255, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
      transform: perspective(1000px) rotateX(60deg) scale(2);
      transform-origin: center bottom;
      opacity: 0.5;
    }

    .hero-content {
      position: relative;
      z-index: 10;
    }

    .hero-section h1 {
      font-weight: 800;
      font-size: clamp(6rem, 10vw, 8.5rem);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff 0%, #60efff 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 0 80px rgba(96, 239, 255, 0.5);
      animation: glow-text 3s ease-in-out infinite;
    }

    @keyframes glow-text {
      0%, 100% { filter: drop-shadow(0 0 20px rgba(96, 239, 255, 0.3)); }
      50% { filter: drop-shadow(0 0 40px rgba(96, 239, 255, 0.6)); }
    }

    .hero-section p {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.8);
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    /* 3D Floating Image */
    .hero-section img {
      filter: drop-shadow(0 30px 60px rgba(0, 97, 255, 0.4));
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      animation: float-3d 6s ease-in-out infinite;
      transform-style: preserve-3d;
    }

    .hero-section img:hover {
      transform: translateY(-20px) rotateY(10deg) scale(1.05);
      filter: drop-shadow(0 40px 80px rgba(0, 97, 255, 0.6));
    }

    @keyframes float-3d {
      0%, 100% { 
        transform: translateY(0) rotateY(0deg);
      }
      50% { 
        transform: translateY(-30px) rotateY(5deg);
      }
    }

    /* 3D Feature Cards with Depth */
    .feature-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      box-shadow: var(--shadow-3d);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      height: 100%;
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      transform: translateZ(0);
    }

    .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-secondary);
      opacity: 0;
      transition: opacity 0.5s ease;
      border-radius: 24px;
    }

    .feature-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(96, 239, 255, 0.1) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .feature-card:hover {
      transform: translateY(-20px) translateZ(50px) rotateX(5deg);
      box-shadow: var(--shadow-hover);
      border-color: rgba(96, 239, 255, 0.5);
    }

    .feature-card:hover::before {
      opacity: 0.1;
    }

    .feature-card:hover::after {
      opacity: 1;
      animation: rotate-gradient 10s linear infinite;
    }

    .feature-card i {
      background: var(--gradient-secondary);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1.5rem;
      transition: all 0.5s ease;
      display: inline-block;
      font-size: 3.5rem;
    }

    .feature-card:hover i {
      transform: scale(1.2) translateZ(30px);
      filter: drop-shadow(0 10px 20px rgba(0, 97, 255, 0.5));
    }

    .feature-card h5 {
      color: #fff;
      font-weight: 700;
      margin-bottom: 1rem;
      font-size: 1.5rem;
    }

    .feature-card p {
      color: rgba(255, 255, 255, 0.7);
      margin-bottom: 0;
      line-height: 1.7;
    }

    /* 3D Levels Section */
    .mysql-levels-section {
      background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
      position: relative;
      overflow: hidden;
      padding: 6rem 0 !important;
    }

    .mysql-levels-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: 
        linear-gradient(rgba(96, 239, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(96, 239, 255, 0.02) 1px, transparent 1px);
      background-size: 100px 100px;
      transform: perspective(1000px) rotateX(60deg) scale(2);
      transform-origin: center top;
      opacity: 0.3;
    }

    /* 3D Level Cards */
    .single-level {
      background: rgba(255, 255, 255, 0.03) !important;
      backdrop-filter: blur(20px);
      border-radius: 24px;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: var(--shadow-3d);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      transform: translateZ(0);
    }

    .single-level::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-secondary);
      opacity: 0;
      transition: opacity 0.6s ease;
      border-radius: 24px;
    }

    .single-level::after {
      content: '';
      position: absolute;
      top: -100%;
      left: -100%;
      width: 300%;
      height: 300%;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(96, 239, 255, 0.3) 90deg,
        transparent 180deg
      );
      opacity: 0;
      transition: opacity 0.6s ease;
      animation: rotate-conic 4s linear infinite;
    }

    @keyframes rotate-conic {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .single-level:hover {
      transform: translateY(-30px) translateZ(80px) rotateX(10deg);
      box-shadow: var(--shadow-hover);
      border-color: rgba(96, 239, 255, 0.6);
    }

    .single-level:hover::before {
      opacity: 0.15;
    }

    .single-level:hover::after {
      opacity: 1;
    }

    .single-level h6 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      margin-bottom: 0.5rem;
      color: #60efff;
      transition: all 0.5s ease;
    }

    .single-level h4 {
      font-weight: 700;
      margin-bottom: 1rem;
      color: #fff;
      font-size: 2rem;
      transition: all 0.5s ease;
    }

    .single-level .price {
      font-size: 3.5rem;
      font-weight: 900;
      margin-bottom: 1.5rem;
      background: var(--gradient-secondary);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      transition: all 0.5s ease;
      filter: drop-shadow(0 0 20px rgba(96, 239, 255, 0.5));
    }

    .single-level ul {
      list-style: none;
      padding: 0;
      margin-bottom: 2rem;
    }

    .single-level ul li {
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      position: relative;
      padding-left: 2rem;
      color: rgba(255, 255, 255, 0.7);
      transition: all 0.3s ease;
    }

    .single-level ul li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: #60efff;
      font-weight: bold;
      font-size: 1.3rem;
      transition: all 0.3s ease;
    }

    .single-level:hover ul li {
      color: rgba(255, 255, 255, 0.9);
    }

    .single-level:hover ul li::before {
      transform: scale(1.3);
      filter: drop-shadow(0 0 10px #60efff);
    }
    
    .text-gold {
      color: #60efff !important;
      text-shadow: 0 0 20px rgba(96, 239, 255, 0.6);
      font-weight: 700;
    }

    .btn-gold {
      background: var(--gradient-secondary);
      color: white;
      border: none;
      border-radius: 12px;
      padding: 16px 36px;
      font-weight: 700;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 10px 30px rgba(0, 97, 255, 0.4);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 0.9rem;
      position: relative;
      overflow: hidden;
    }

    .btn-gold::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }

    .btn-gold:hover::before {
      left: 100%;
    }

    .btn-gold:hover {
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 20px 50px rgba(0, 97, 255, 0.6);
    }

    /* 3D Team Section */
    .about-section {
      background: linear-gradient(180deg, #1a1f3a 0%, #0a0e27 100%);
      position: relative;
      overflow: hidden;
      padding: 6rem 0 !important;
    }

    .about-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 30%, rgba(0, 97, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    }

    /* 3D Team Cards */
    .team-member-card {
      background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 2.5rem;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
      transform-style: preserve-3d;
      box-shadow: var(--shadow-3d);
    }

    .team-member-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-secondary);
      opacity: 0;
      transition: opacity 0.6s ease;
      border-radius: 24px;
    }

    .team-member-card::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(96, 239, 255, 0.2) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.6s ease;
    }

    .team-member-card:hover::before {
      opacity: 0.1;
    }

    .team-member-card:hover::after {
      opacity: 1;
      animation: rotate-gradient 8s linear infinite;
    }

    .team-member-card:hover {
      transform: translateY(-20px) translateZ(50px) rotateX(5deg);
      box-shadow: var(--shadow-hover);
      border-color: rgba(96, 239, 255, 0.5);
    }

    .team-member-card img {
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid rgba(96, 239, 255, 0.3);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .team-member-card:hover img {
      transform: scale(1.1) translateZ(30px);
      border-color: #60efff;
      box-shadow: 0 20px 50px rgba(0, 97, 255, 0.5);
    }

    /* Enhanced Modern Footer */
    .footer-enhanced {
      background: linear-gradient(180deg, #0a0e27 0%, #050812 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .footer-enhanced::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gradient-secondary);
      box-shadow: 0 0 30px rgba(96, 239, 255, 0.5);
    }

    /* Animated Footer Background */
    .footer-bg-animation {
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 50%, rgba(0, 97, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.03) 0%, transparent 50%);
      pointer-events: none;
      animation: float-slow 20s ease-in-out infinite;
    }

    /* Footer Brand */
    .footer-brand img {
      transition: transform 0.4s ease;
    }

    .footer-brand:hover img {
      transform: scale(1.05);
    }

    /* Footer Stats */
    .footer-stat {
      padding: 1rem;
      background: rgba(255, 255, 255, 0.03);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.3s ease;
    }

    .footer-stat:hover {
      background: rgba(96, 239, 255, 0.05);
      border-color: rgba(96, 239, 255, 0.2);
      transform: translateY(-3px);
    }

    .footer-stat h4 {
      background: var(--gradient-secondary);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    /* Footer Links */
    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
      padding-left: 0;
    }

    .footer-links a::before {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-secondary);
      transition: width 0.3s ease;
    }

    .footer-links a:hover {
      color: #60efff;
      padding-left: 10px;
    }

    .footer-links a:hover::before {
      width: 100%;
    }

    /* Enhanced 3D Social Links */
    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 12px;
      color: white;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
      font-size: 1.1rem;
    }

    .social-links a::before {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--gradient-secondary);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .social-links a::after {
      content: '';
      position: absolute;
      inset: -2px;
      background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(96, 239, 255, 0.5) 90deg,
        transparent 180deg
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 12px;
      z-index: -1;
    }

    .social-links a:hover::before {
      opacity: 1;
    }

    .social-links a:hover::after {
      opacity: 1;
      animation: rotate-conic 3s linear infinite;
    }

    .social-links a:hover {
      transform: translateY(-8px) scale(1.1);
      box-shadow: 0 15px 40px rgba(0, 97, 255, 0.4);
      border-color: #60efff;
    }

    .social-links a i {
      position: relative;
      z-index: 1;
    }

    /* Footer Bottom */
    .footer-bottom {
      position: relative;
      z-index: 1;
    }

    .social-links a:hover {
      background: var(--gradient-primary);
      color: white;
      transform: translateY(-3px) scale(1.1);
      box-shadow: var(--shadow-glow);
    }

    /* 3D Scroll to Top Button */
    .scroll-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 56px;
      height: 56px;
      background: var(--gradient-secondary);
      color: white;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 1000;
      box-shadow: 0 10px 30px rgba(0, 97, 255, 0.4);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .scroll-top.show {
      opacity: 1;
      visibility: visible;
    }

    .scroll-top:hover {
      transform: translateY(-8px) scale(1.1);
      box-shadow: 0 20px 50px rgba(0, 97, 255, 0.6);
    }

    .scroll-top i {
      font-size: 1.5rem;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.6s ease;
    }

    .animate-on-scroll.animate {
      opacity: 1;
      transform: translateY(0);
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .navbar-collapse {
        background: rgba(10, 14, 39, 0.95);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 12px;
        margin-top: 1rem;
        border: 1px solid rgba(255, 255, 255, 0.1);
      }

      .nav-link {
        margin: 8px 0;
      }
    }

    @media (max-width: 768px) {
      .navbar-brand img {
        height: 70px;
      }
      
      .hero-section {
        min-height: auto;
        padding-top: 100px !important;
        padding-bottom: 3rem;
      }

      .hero-section .row {
        min-height: auto !important;
      }
      
      .hero-section h1 {
        font-size: 3.5rem;
      }

      #quest-text {
        font-size: 1.2em;
      }

      .hero-section p {
        font-size: 1.1rem;
      }
      
      .feature-card {
        margin-bottom: 2rem;
      }
      
      .single-level {
        margin-bottom: 2rem;
      }
      
      .team-member-card {
        margin-bottom: 2rem;
      }

      .btn-custom,
      .btn-outline-dark {
        width: 100%;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .hero-section {
        padding-top: 80px !important;
      }
      
      .hero-section h1 {
        font-size: 2.8rem;
      }

      #quest-text {
        font-size: 1.3em;
      }
      
      .hero-section p {
        font-size: 1rem;
      }
      
      .feature-card {
        padding: 2rem 1.5rem;
      }
      
      .single-level {
        padding: 2rem 1.5rem;
      }
      
      .team-member-card {
        padding: 1.5rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }
    }

    /* Section Titles */
    .section-title h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 800;
      background: linear-gradient(135deg, #fff 0%, #60efff 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .section-title p {
      font-size: 1.2rem;
      color: rgba(255, 255, 255, 0.7);
    }
