 :root {
      --gold: #facc15;
      --pink: #ec4899;
      --blue: #3b82f6;
      --dark: #020617;
      --card: #0f172a;
      --text: #f8fafc;
      --muted: #cbd5e1;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: linear-gradient(135deg, #020617 0%, #111827 35%, #312e81 70%, #581c87 100%);
      color: white;
      overflow-x: hidden;
    }

    /* BACKGROUND GLOW */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 20%, rgba(236,72,153,0.18), transparent 25%),
        radial-gradient(circle at 80% 30%, rgba(59,130,246,0.15), transparent 30%),
        radial-gradient(circle at 50% 80%, rgba(250,204,21,0.12), transparent 30%);
      z-index: -1;
      animation: bgMove 16s linear infinite;
    }

    @keyframes bgMove {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-30px); }
      100% { transform: translateY(0px); }
    }

    /* HEADER */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 999;
      backdrop-filter: blur(18px);
      background: rgba(2,6,23,0.72);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .header-inner {
      width: 92%;
      max-width: 1450px;
      height: 92px;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* BRAND */
    .brand {
      display: flex;
      align-items: center;
      gap: 15px;
      text-decoration: none;
    }

    .brand img {
      width: 76px;
      height: 76px;
      object-fit: contain;
      border-radius: 18px;
      background: white;
      padding: 5px;
      box-shadow: 0 10px 35px rgba(250,204,21,0.25);
    }

    .brand-text h1 {
      font-size: 28px;
      font-weight: 700;
      color: white;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 13px;
    }

    /* NAVIGATION */
    .nav {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav a, .dropbtn {
      color: white;
      text-decoration: none;
      background: none;
      border: none;
      padding: 12px 18px;
      border-radius: 14px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      transition: 0.35s;
    }

    .nav a:hover, .dropbtn:hover {
      background: rgba(255,255,255,0.08);
      color: var(--gold);
      transform: translateY(-2px);
    }

    /* DROPDOWN */
    .dropdown {
      position: relative;
    }

    .dropdown-content {
      position: absolute;
      top: 58px;
      left: 0;
      min-width: 260px;
      display: none;
      flex-direction: column;
      background: rgba(15,23,42,0.96);
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.08);
      box-shadow: 0 25px 50px rgba(0,0,0,0.45);
    }

    .dropdown-content a {
      padding: 15px 22px;
      color: white;
      text-decoration: none;
      transition: 0.25s;
    }

    .dropdown-content a:hover {
      background: linear-gradient(to right, rgba(250,204,21,0.18), rgba(236,72,153,0.12));
      padding-left: 30px;
      color: var(--gold);
    }

    .dropdown:hover .dropdown-content {
      display: flex;
    }

    /* MOBILE MENU TOGGLE */
    .menu-toggle {
      display: none;
      width: 52px;
      height: 52px;
      border: none;
      border-radius: 14px;
      background: rgba(255,255,255,0.08);
      color: white;
      font-size: 24px;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      min-height: 70vh;
      padding-top: 140px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 650px;
      height: 650px;
      background: rgba(236,72,153,0.18);
      border-radius: 50%;
      filter: blur(100px);
      top: -200px;
      left: -150px;
    }

    .hero::after {
      content: '';
      position: absolute;
      width: 550px;
      height: 550px;
      background: rgba(59,130,246,0.15);
      border-radius: 50%;
      filter: blur(100px);
      bottom: -180px;
      right: -120px;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 92%;
      max-width: 1100px;
    }

    .hero-content h2 {
      font-size: 72px;
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 25px;
    }

    .hero-content h2 span {
      background: linear-gradient(to right, #facc15, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-content p {
      max-width: 850px;
      margin: auto;
      font-size: 18px;
      line-height: 1.9;
      color: #e2e8f0;
    }

    /* FLOATING GALLERY */
    .floating-gallery {
      margin-top: 60px;
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .floating-gallery img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 22px;
      border: 2px solid rgba(255,255,255,0.12);
      box-shadow: 0 15px 35px rgba(0,0,0,0.35);
      animation: floaty 6s ease-in-out infinite;
    }

    .floating-gallery img:nth-child(2) { animation-delay: 1s; }
    .floating-gallery img:nth-child(3) { animation-delay: 2s; }
    .floating-gallery img:nth-child(4) { animation-delay: 3s; }
    .floating-gallery img:nth-child(5) { animation-delay: 4s; }

    @keyframes floaty {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-18px); }
      100% { transform: translateY(0px); }
    }

    /* SECTION */
    .section {
      width: 92%;
      max-width: 1450px;
      margin: auto;
      padding: 90px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
    }

    .section-title h2 {
      font-size: 50px;
      margin-bottom: 16px;
    }

    .section-title p {
      max-width: 850px;
      margin: auto;
      line-height: 1.9;
      color: #cbd5e1;
    }

    /* EDITOR INTERFACE LAYOUT */
    .editor {
      display: grid;
      grid-template-columns: 1.5fr 400px;
      gap: 30px;
    }

    /* CANVAS HOLDER */
    .left {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 32px;
      padding: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 700px;
      backdrop-filter: blur(10px);
    }

    canvas {
      max-width: 100%;
      max-height: 650px;
      border-radius: 22px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.45);
    }

    /* RIGHT CONTROL PANEL */
    .right {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 32px;
      padding: 25px;
      backdrop-filter: blur(12px);
      height: fit-content;
      position: sticky;
      top: 120px;
    }

    .label {
      margin-bottom: 15px;
      color: #cbd5e1;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .section-box {
      margin-bottom: 28px;
    }

    .grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    button, input[type="file"] {
      width: 100%;
      border: none;
      border-radius: 16px;
      padding: 14px;
      cursor: pointer;
      transition: 0.35s;
      font-size: 14px;
      font-weight: 600;
    }

    button {
      color: white;
      background: linear-gradient(135deg, rgba(59,130,246,0.35), rgba(236,72,153,0.35));
      border: 1px solid rgba(255,255,255,0.08);
    }

    button:hover {
      transform: translateY(-3px);
      background: linear-gradient(135deg, #3b82f6, #ec4899);
    }

    button.active-filter {
      background: linear-gradient(135deg, #facc15, #ec4899);
      color: black;
      border-color: #facc15;
    }

    input[type="file"] {
      background: #1e293b;
      color: white;
    }

    input[type="range"] {
      width: 100%;
      accent-color: #ec4899;
    }

    /* FOOTER */
    .site-footer {
      margin-top: 80px;
      padding: 35px 20px;
      background: #020617;
      border-top: 1px solid rgba(255,255,255,0.08);
      text-align: center;
      color: #94a3b8;
    }

    /* RESPONSIVE MEDIA QUERIES */
    @media(max-width:1100px){
      .hero-content h2 { font-size: 56px; }
      .editor { grid-template-columns: 1fr; }
      .right { position: relative; top: 0; }
    }

    @media(max-width:850px){
      .menu-toggle { display: block; }
      .nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        background: #0f172a;
        padding: 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .nav.active { display: flex; }
      .hero-content h2 { font-size: 42px; }
      .section-title h2 { font-size: 38px; }
    }

    @media(max-width:600px){
      .hero-content h2 { font-size: 34px; }
      .hero-content p { font-size: 16px; }
      .floating-gallery img { width: 90px; height: 90px; }
    }
  