/* ========== Glass Hover Button + Breathing Glow ========== */
       .glass-hover-text {
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 22px;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  border-radius: 12px;

  /* Glass Effect */
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);

  /* Pink Glow */
  box-shadow: 0 0 25px rgba(255, 0, 150, 0.6);

  /* One Line Fix */
  white-space: nowrap;
  overflow: hidden;

  opacity: 0;
  transition: 0.4s ease-in-out;

  /* ✨ Shine Effect Base */
  position: absolute;
  overflow: hidden;
}

.glass-hover-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent,
      rgba(255, 255, 255, 0.7),
      transparent
  );
  transform: skewX(-20deg);
  transition: 0.4s;
  opacity: 0;
}

.glass-image-box:hover .glass-hover-text {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
}

.glass-image-box:hover .glass-hover-text::before {
  left: 120%;
  opacity: 1;
}

        /* ========== Reset & Global ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            min-height: 100vh;
            color: #fff;
        }

        /* ========== Header ========== */
        .header {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 15px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: sticky;
            top: 0;
            z-index: 100;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .header h1 {
            color: #f9e4ff;
            font-size: 24px;
            text-shadow: 0 0 10px #a24eff;
        }
        .header h1 a {
            color: #f9e4ff;
            text-decoration: none;
        }
        .menu-toggle {
            display: none;
            background: #7a5fff;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            transition: 0.3s;
        }
        .menu-toggle:hover {
            background: #00d4ff;
        }

        /* ========== Layout Container ========== */
        .container {
            display: flex;
            max-width: 1400px;
            margin: 20px auto;
            gap: 20px;
            padding: 0 20px;
        }

        /* ========== Sidebar (Glass Effect) ========== */
        .sidebar {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 16px;
            padding: 20px;
            width: 250px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            max-height: calc(100vh - 120px);
            overflow-y: auto;
            transition: all 0.3s ease;
        }
        .sidebar h2 {
            color: #fff;
            text-align: center;
            margin-bottom: 15px;
            font-size: 20px;
            border-bottom: 2px solid rgba(255, 255, 255, 0.3);
            padding-bottom: 10px;
            letter-spacing: 0.5px;
        }
        .name-list {
            list-style: none;
        }

        /* ========== Sidebar Items ========== */
        .name-item {
            padding: 12px 15px;
            margin: 6px 0;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            cursor: pointer;
            transition: 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        .name-item:hover {
            background: rgba(255, 255, 255, 0.18);
            box-shadow: 0 0 10px #b07cff, 0 0 20px #8a63ff inset;
            transform: translateX(5px);
        }
        .name-item.active {
            background: linear-gradient(135deg, #7a5fff, #00d4ff);
            box-shadow: 0 0 15px #00d4ff;
            color: #000;
            font-weight: 700;
        }

        /* Scrollbar */
        .sidebar::-webkit-scrollbar {
            width: 8px;
        }
        .sidebar::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #7a5fff, #00d4ff);
            border-radius: 6px;
        }
        .sidebar::-webkit-scrollbar-thumb:hover {
            background: #9b8be2;
        }

        /* ========== Content Area ========== */
        .content {
            flex: 1;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        /* ========== Media Section ========== */
        .media-container {
            display: none;
        }
        .media-container.active {
            display: block;
        }
        .media-title {
            background: linear-gradient(135deg, #7a5fff, #00d4ff);
            color: #000;
            padding: 15px;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 0 20px rgba(122, 95, 255, 0.4);
        }
        .media-title a {
            color: #000;
            text-decoration: none;
        }
        .scroll-text {
            display: inline-block;
            animation: scrollText 10s linear infinite;
        }
        @keyframes scrollText {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        .media-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        .media-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        .media-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        .media-item:hover img {
            transform: scale(1.05);
        }
        .media-item iframe,
        .media-item video {
            width: 100%;
            height: 400px;
            border: none;
            border-radius: 12px;
            background: #000;
        }

        /* ========== Link Style ========== */
        a {
            color: #badf15;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff5cf3;
        }

        /* ========== Placeholder Text ========== */
        .placeholder {
            text-align: center;
            color: #3fe21f;
            padding: 60px 20px;
            font-size: 18px;
        }

        /* ========== Responsive ========== */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .container {
                flex-direction: column;
            }
            .sidebar {
                position: fixed;
                left: 0;
                top: 70px;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                transform: translateX(-100%);
                z-index: 99;
            }
            .sidebar.open {
                transform: translateX(0);
            }
            .overlay {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: 98;
            }
            .overlay.show {
                display: block;
            }
            .media-grid {
                grid-template-columns: 1fr;
            }
            .media-item img,
            .media-item video,
            .media-item iframe {
                height: 300px;
            }
        }
        @media (max-width: 480px) {
            .header h1 {
                font-size: 18px;
            }
            .media-item img,
            .media-item video,
            .media-item iframe {
                height: 250px;
            }
        }

        
    /* Footer */
    footer {
      background: #0f0f0f;
      padding: 40px 20px 20px;
      margin-top: auto;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-col h3 {
      margin-bottom: 15px;
      color: gold;
    }

    .footer-col p, .footer-col a {
      color: #ccc;
      font-size: 14px;
      text-decoration: none;
      display: block;
      margin: 6px 0;
      transition: 0.3s;
    }

    .footer-col a:hover {
      color: gold;
      transform: translateX(5px);
    }

    .footer-social a {
      display: inline-block;
      margin-right: 10px;
      color: #ccbfbf;
      font-size: 18px;
      transition: 0.3s;
    }

    .footer-social a:hover {
      color: gold;
      transform: scale(1.2);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 20px;
      font-size: 13px;
      color: #888;
      border-top: 1px solid #333;
      margin-top: 20px;
    }
    /* Social icons */
.footer-social {display:flex; gap:10px; align-items:center}
.footer-social a {display:inline-flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:10px; background:rgba(255,255,255,0.04); color:inherit; text-decoration:none; transition:all .18s ease}
.footer-social a:hover {background:linear-gradient(90deg,#ff7e5f,#feb47b); color:#071022; transform:translateY(-4px)}

        /* Message Popup */
        .message-popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.8);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }
        .message-popup.show {
            display: flex;
        }
        .message-popup-content {
            background: linear-gradient(135deg, #7a5fff, #00d4ff);
            padding: 40px;
            border-radius: 20px;
            max-width: 500px;
            text-align: center;
            position: relative;
            animation: popupSlide 0.3s ease;
        }
        @keyframes popupSlide {
            from { transform: scale(0.7); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }
        .message-popup-content h2 {
            color: #000;
            margin-bottom: 15px;
            font-size: 28px;
        }
        .message-popup-content p {
            color: #000;
            font-size: 18px;
            line-height: 1.6;
        }
        .message-close {
            background: #fff;
            color: #7a5fff;
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
            transition: 0.3s;
        }
        .message-close:hover {
            background: #000;
            color: #fff;
            transform: scale(1.05);
        }

        /* Welcome Button */
        .welcome-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(135deg, #7a5fff, #00d4ff);
            color: #000;
            border: none;
            padding: 15px 25px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(122, 95, 255, 0.5);
            z-index: 99;
            transition: 0.3s;
        }
        .welcome-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(122, 95, 255, 0.7);
        }

        .placeholder {
            text-align: center;
            color: #3fe21f;
            padding: 60px 20px;
            font-size: 18px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .container {
                flex-direction: column;
            }
            .sidebar {
                position: fixed;
                left: 0;
                top: 70px;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                transform: translateX(-100%);
                z-index: 99;
            }
            .sidebar.open {
                transform: translateX(0);
            }
            .overlay {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: 98;
            }
            .overlay.show {
                display: block;
            }
            .media-grid {
                grid-template-columns: 1fr;
            }
            .media-item img,
            .media-item iframe {
                height: 300px;
            }
            .welcome-btn {
                bottom: 20px;
                right: 20px;
                padding: 12px 20px;
                font-size: 14px;
            }
        }