/* ============================================
   BIKANER EDITING ZONE — STYLESHEET
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #a855f7;
  --primary-light: #c084fc;
  --primary-dark: #7c3aed;
  --accent: #06b6d4;
  --accent2: #f43f5e;
  --bg-dark: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --font: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gradient-main: linear-gradient(135deg, #a855f7, #06b6d4);
  --gradient-hot: linear-gradient(135deg, #f43f5e, #a855f7);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #111;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.1);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 10px 48px;
  background: rgba(10, 10, 15, 0.95);
  box-shadow: 0 4px 30px rgba(168, 85, 247, 0.1);
}

.nav-logo {
  font-family: var(--font);
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-logo span {
  -webkit-text-fill-color: var(--text);
  font-weight: 400;
  font-size: 14px;
  display: block;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px;
  background: var(--gradient-main);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  cursor: pointer;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
}

.nav-cta::after {
  display: none !important;
}

/* === DROPDOWN MENU === */
.nav-dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 16px;
  padding: 12px 0;
  min-width: 240px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  z-index: 1001;
  list-style: none;
  margin-top: 8px;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  animation: dropIn 0.25s ease;
}

@keyframes dropIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.dropdown-menu li {
  padding: 0;
  border: none;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text-muted) !important;
  transition: all 0.2s;
  white-space: nowrap;
}

.dropdown-menu li a:hover {
  background: rgba(168, 85, 247, 0.1);
  color: var(--primary-light) !important;
  padding-left: 24px;
}

.dropdown-menu li a::after {
  display: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(2px);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.3), var(--bg-dark));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  right: -100px;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation-delay: -4s;
}

.hero-orb-3 {
  width: 300px;
  height: 300px;
  background: var(--accent2);
  top: 40%;
  left: 50%;
  animation-delay: -2s;
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(30px, -40px) scale(1.1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s ease both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeUp 1s 0.1s ease both;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 1s 0.2s ease both;
}

.hero h1 .gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeUp 1s 0.3s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.4s ease both;
}

.btn-primary {
  padding: 16px 36px;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  font-family: var(--font);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.4);
}

.btn-secondary {
  padding: 16px 36px;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  font-family: var(--font);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  animation: fadeUp 1s 0.5s ease both;
}

.stat h3 {
  font-family: var(--font);
  font-size: 36px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s 0.4s ease both;
}

.floating-logos {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.floating-logo {
  width: 100px;
  height: 100px;
  border-radius: 24px;
  overflow: hidden;
  animation: float 4s ease-in-out infinite;
  transition: transform 0.3s;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-logo:nth-child(2) {
  animation-delay: -1.3s;
}

.floating-logo:nth-child(3) {
  animation-delay: -2.6s;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-logo:hover {
  transform: scale(1.15) rotate(-3deg);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === SECTION COMMON === */
section {
  padding: 100px 48px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: var(--font);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* === SOFTWARE TOOLS === */
.tools-section {
  background: rgba(255, 255, 255, 0.01);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.tool-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.tool-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}

.tool-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.15);
  border-color: rgba(168, 85, 247, 0.2);
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-card img {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 20px;
  object-fit: cover;
}

.tool-card h3 {
  font-family: var(--font);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.tool-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* === COURSE MODULES === */
.modules-section {
  max-width: 1100px;
  margin: 0 auto;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.module-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s;
  cursor: default;
}

.module-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(168, 85, 247, 0.2);
  transform: translateY(-4px);
}

.module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-main);
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 16px;
}

.module-card h3 {
  font-family: var(--font);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.module-card p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

/* === PRICING === */
.pricing-section {
  background: rgba(168, 85, 247, 0.02);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 44px 36px;
  position: relative;
  transition: all 0.4s;
}

.price-card.featured {
  background: linear-gradient(170deg, rgba(168, 85, 247, 0.15), rgba(6, 182, 212, 0.08));
  border-color: rgba(168, 85, 247, 0.3);
  transform: scale(1.04);
}

.price-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-hot);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(168, 85, 247, 0.12);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.price-tag {
  font-size: 14px;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-family: var(--font);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 4px;
}

.price-amount .currency {
  font-size: 24px;
  vertical-align: top;
}

.price-amount .period {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 400;
}

.price-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
}

.price-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.price-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 14px;
}

.price-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--gradient-main);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
}

.price-btn:hover {
  box-shadow: 0 8px 30px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.price-btn.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-btn.outline:hover {
  border-color: var(--primary);
  background: rgba(168, 85, 247, 0.1);
  box-shadow: none;
}

/* === WHO SECTION === */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.who-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
}

.who-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, 0.2);
}

.who-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.who-card h3 {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.who-card p {
  color: var(--text-muted);
  font-size: 13px;
}

/* === WHY CHOOSE === */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.why-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-5px);
  border-color: rgba(168, 85, 247, 0.15);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(168, 85, 247, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 14px;
}

/* === CTA === */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(168, 85, 247, 0.06) 50%, var(--bg-dark) 100%);
}

.cta-section h2 {
  font-family: var(--font);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  margin-bottom: 20px;
}

.cta-section p {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 36px;
}

/* === FOOTER === */
.footer {
  padding: 60px 48px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  font-family: var(--font);
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.7;
}

.footer h4 {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.footer ul a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

/* === SCROLL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
  .navbar {
    padding: 14px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 15, 0.98);
    padding: 40px 24px;
    gap: 24px;
    backdrop-filter: blur(20px);
    overflow-y: auto;
  }

  .nav-dropdown .dropdown-menu {
    display: none;
    position: static;
    transform: none;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid rgba(168, 85, 247, 0.15);
    box-shadow: none;
    margin-top: 8px;
    min-width: 100%;
    animation: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero {
    flex-direction: column;
    padding: 120px 24px 60px;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-stats {
    gap: 32px;
  }

  section {
    padding: 60px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-logos {
    gap: 16px;
  }

  .floating-logo {
    width: 75px;
    height: 75px;
  }
}

/* === PR NOTES PAGE === */
.notes-hero{text-align:center;padding:140px 48px 60px;position:relative;overflow:hidden}
.notes-hero h1{font-family:var(--font);font-size:clamp(32px,5vw,56px);font-weight:900;margin-bottom:10px}
.notes-hero .gradient-text{background:var(--gradient-main);-webkit-background-clip:text;-webkit-text-fill-color:transparent}
.notes-hero p{color:var(--text-muted);font-size:1.1rem}
.notes-hero .hero-badge{display:inline-block;margin-top:14px}
.notes-container{max-width:1100px;margin:0 auto;padding:30px 48px 60px}
.notes-section{margin-bottom:48px}
.notes-section-title{font-family:var(--font);font-size:1.5rem;font-weight:800;color:var(--primary-light);margin-bottom:20px;padding-bottom:12px;border-bottom:1px solid rgba(255,255,255,0.06);display:flex;align-items:center;gap:10px}
.notes-card{background:var(--bg-card);border:1px solid rgba(255,255,255,0.06);border-radius:18px;padding:28px;margin-bottom:16px;transition:all .3s}
.notes-card:hover{background:var(--bg-card-hover);transform:translateY(-2px);border-color:rgba(168,85,247,0.2)}
.notes-card h3{font-family:var(--font);font-size:1.1rem;font-weight:700;margin-bottom:10px}
.notes-card p,.notes-card li{color:var(--text-muted);font-size:.93rem}
.notes-card ul{list-style:none;padding:0}
.notes-card ul li{padding:7px 0;border-bottom:1px solid rgba(255,255,255,0.04);display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px}
.notes-card ul li:last-child{border:none}
.shortcut-key{background:var(--gradient-main);color:#fff;padding:3px 14px;border-radius:8px;font-size:.8rem;font-weight:600;white-space:nowrap}
.notes-tip{background:rgba(168,85,247,0.08);border-left:3px solid var(--primary);padding:14px 18px;border-radius:0 12px 12px 0;margin:12px 0;font-size:.9rem;color:var(--text-muted)}
.notes-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:16px}
.notes-card table{width:100%;border-collapse:collapse;margin:10px 0}
.notes-card table th{background:var(--primary-dark);color:#fff;padding:10px 12px;text-align:left;font-size:.85rem;font-family:var(--font)}
.notes-card table td{padding:9px 12px;border-bottom:1px solid rgba(255,255,255,0.04);font-size:.9rem;color:var(--text-muted)}
.notes-card table tr:hover{background:rgba(255,255,255,0.03)}
@media(max-width:768px){.notes-container{padding:20px 20px 40px}.notes-hero{padding:120px 24px 40px}.notes-card ul li{flex-direction:column;gap:4px}.notes-grid{grid-template-columns:1fr}}