/*
 * Unified DevOps Suite Premium Stylesheet
 * Custom CSS for modern carbon glassmorphism developer dashboard.
 */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #090d16;
  --bg-secondary: #0f172a;
  --bg-card: rgba(30, 41, 59, 0.45);
  --bg-card-hover: rgba(30, 41, 59, 0.65);
  --bg-active: rgba(6, 182, 212, 0.15);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(6, 182, 212, 0.3);
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --accent-cyan: #06b6d4;
  --accent-cyan-glow: rgba(6, 182, 212, 0.5);
  --accent-green: #10b981;
  --accent-green-glow: rgba(16, 185, 129, 0.3);
  --accent-red: #ef4444;
  --accent-red-glow: rgba(239, 68, 68, 0.3);
  --accent-purple: #a855f7;
  --accent-purple-glow: rgba(168, 85, 247, 0.3);
  --accent-orange: #f97316;
  --accent-orange-glow: rgba(249, 115, 22, 0.3);

  --font-sans: 'Outfit', sans-serif;
  --font-mono: 'Fira Code', monospace;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  min-height: 100vh;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(168, 85, 247, 0.06) 0px, transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.004) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.004) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
  display: flex;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}

/* Base Layout Structure */
#app-container {
  display: flex;
  width: 100vw;
  min-height: 100vh;
  position: relative;
}

/* Sidebar Styling */
aside.sidebar {
  width: 280px;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  z-index: 100;
  transition: var(--transition-normal);
}

.sidebar-brand {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border-color);
}

.brand-icon {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 0 15px var(--accent-cyan-glow);
}

.brand-text h1 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, var(--text-primary), #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-family: var(--font-mono);
  text-transform: uppercase;
}

.profile-card {
  padding: 16px;
  margin: 16px;
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent-cyan);
  object-fit: cover;
}

.profile-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.profile-info p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.sidebar-menu {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
}

.menu-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding-left: 8px;
}

.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-fast);
  cursor: pointer;
}

.menu-link:hover {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.menu-link.active {
  background: var(--bg-active);
  color: var(--text-primary);
  border: 1px solid var(--border-color-glow);
  box-shadow: inset 0 0 10px rgba(6, 182, 212, 0.05);
}

.menu-link i {
  width: 20px;
  font-size: 1.1rem;
  text-align: center;
  transition: var(--transition-fast);
}

.menu-link.active i {
  color: var(--accent-cyan);
  text-shadow: 0 0 10px var(--accent-cyan-glow);
}

.sidebar-footer {
  padding: 16px;
  border-top: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

.sidebar-footer a {
  color: var(--accent-cyan);
  text-decoration: none;
}

/* Main Content Area */
main.main-content {
  flex: 1;
  margin-left: 280px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

header.top-header {
  height: 70px;
  border-bottom: 1px solid var(--border-color);
  background: rgba(9, 13, 22, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
}

.header-search span {
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.theme-toggle, .mobile-toggle {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.theme-toggle:hover, .mobile-toggle:hover {
  background: var(--bg-active);
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.mobile-toggle {
  display: none;
}

/* Workspace Views Container */
.workspace-views {
  flex: 1;
  padding: 40px;
  position: relative;
}

.view-panel {
  display: none;
  animation: slideIn var(--transition-normal) forwards;
  opacity: 0;
}

.view-panel.active {
  display: block;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Typography elements */
h2.view-title {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.view-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 32px;
}

/* Dashboard Cards Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: transparent;
  transition: var(--transition-normal);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
}

.card-header-tool {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.card:hover .card-icon {
  color: var(--accent-cyan);
  background: var(--bg-active);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
}

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-cyan);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.card-link i {
  transition: var(--transition-fast);
}

.card-link:hover i {
  transform: translateX(4px);
}

/* Premium Form Elements */
.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.input-wrapper {
  position: relative;
}

input[type="text"],
input[type="url"],
input[type="number"],
input[type="password"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

input[type="text"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
  background: rgba(15, 23, 42, 0.8);
}

textarea.monospace,
input.monospace {
  font-family: var(--font-mono) !important;
  font-size: 0.85rem !important;
}

/* Custom checkbox/radio buttons */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.checkbox-label input {
  display: none;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  background: rgba(15, 23, 42, 0.6);
}

.checkbox-label input:checked + .custom-checkbox {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.checkbox-label input:checked + .custom-checkbox::after {
  content: '\f00c';
  font-family: 'FontAwesome';
  font-size: 0.75rem;
  color: var(--text-primary);
}

/* Custom Sliders */
.slider-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-sm);
  background: var(--border-color);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-cyan);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
  transition: var(--transition-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-cyan), #0891b2);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border-color);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--text-secondary);
}

.btn-danger {
  background: linear-gradient(135deg, var(--accent-red), #b91c1c);
  color: var(--text-primary);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

.btn-danger:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.35);
}

.btn-icon-only {
  width: 44px;
  height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Terminal simulated output window */
.terminal-window {
  background: #05070c;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-top: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.terminal-header {
  background: #0d1117;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terminal-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.terminal-title {
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.terminal-body {
  padding: 20px;
  max-height: 450px;
  overflow-y: auto;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.6;
  white-space: pre-wrap;
  color: #e2e8f0;
}

.terminal-body .trace-in {
  color: #38bdf8;
}

.terminal-body .trace-out {
  color: #f472b6;
}

.terminal-body .trace-system {
  color: #34d399;
}

/* Results section layout */
.tool-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
  }
}

/* Copy success tooltip alert */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--accent-cyan);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-primary);
  font-weight: 500;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast i {
  color: var(--accent-cyan);
  font-size: 1.2rem;
}

/* DNS Record Tables styling */
.table-container {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-top: 16px;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

table.data-table th {
  background: rgba(15, 23, 42, 0.8);
  padding: 14px 18px;
  color: var(--text-secondary);
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

table.data-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
}

table.data-table tr:last-child td {
  border-bottom: none;
}

table.data-table tr:hover td {
  background: rgba(255, 255, 255, 0.015);
}

/* Password entropy details */
.entropy-meter {
  height: 6px;
  background: var(--border-color);
  border-radius: 3px;
  margin: 12px 0;
  position: relative;
  overflow: hidden;
}

.entropy-bar {
  height: 100%;
  width: 0;
  background: var(--accent-red);
  transition: width 0.3s ease, background-color 0.3s ease;
}

/* Security grading dashboard */
.grade-panel {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.grade-dial {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--accent-cyan-glow);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.15);
}

.grade-dial.grade-a { border-color: var(--accent-green); color: var(--accent-green); text-shadow: 0 0 10px var(--accent-green-glow); }
.grade-dial.grade-b { border-color: var(--accent-cyan); color: var(--accent-cyan); text-shadow: 0 0 10px var(--accent-cyan-glow); }
.grade-dial.grade-c { border-color: var(--accent-orange); color: var(--accent-orange); text-shadow: 0 0 10px var(--accent-orange-glow); }
.grade-dial.grade-d { border-color: var(--accent-purple); color: var(--accent-purple); text-shadow: 0 0 10px var(--accent-purple-glow); }
.grade-dial.grade-f { border-color: var(--accent-red); color: var(--accent-red); text-shadow: 0 0 10px var(--accent-red-glow); }

.grade-info h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.grade-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Loading animations */
.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px;
}

.spinner {
  width: 44px;
  height: 44px;
  border: 4px solid rgba(6, 182, 212, 0.1);
  border-top-color: var(--accent-cyan);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* JSON Formatter layout */
.json-workspace {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 500px;
}

.json-pane {
  display: flex;
  flex-direction: column;
}

.json-pane textarea {
  flex: 1;
  resize: none;
}

.json-output-viewer {
  flex: 1;
  background: #05070c;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  overflow-y: auto;
  white-space: pre;
  color: #e2e8f0;
}

/* Speedtest integration */
.speedtest-iframe {
  width: 100%;
  height: 580px;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

/* Custom file upload for Base64 */
.file-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.file-dropzone:hover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.02);
}

.file-dropzone i {
  font-size: 2.5rem;
  color: var(--text-muted);
}

.file-dropzone.dragover {
  border-color: var(--accent-cyan);
  background: rgba(6, 182, 212, 0.05);
}

/* IP Geolocation display card */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.geo-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
}

.geo-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.geo-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.badge-success { background: rgba(16, 185, 129, 0.1); color: var(--accent-green); border: 1px solid rgba(16, 185, 129, 0.2); }
.badge-fail { background: rgba(239, 68, 68, 0.1); color: var(--accent-red); border: 1px solid rgba(239, 68, 68, 0.2); }
/* SVG World Map Ping Animations */
@keyframes svgPulse {
  0% {
    r: 10px;
    opacity: 1;
    stroke-width: 2px;
  }
  100% {
    r: 36px;
    opacity: 0;
    stroke-width: 4px;
  }
}

.ping-ring {
  animation: svgPulse 1.5s infinite ease-out;
  transform-origin: center;
}

#svg-map .landxx,
#svg-map path.landxx,
#svg-map polygon.landxx,
#svg-map g.landxx path,
#svg-map g.landxx polygon {
  fill: #1e293b !important;
  stroke: #334155 !important;
  stroke-width: 1px !important;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

#svg-map .landxx:hover,
#svg-map path.landxx:hover,
#svg-map polygon.landxx:hover,
#svg-map g.landxx:hover path,
#svg-map g.landxx:hover polygon {
  fill: #334155 !important;
  stroke: var(--accent-cyan) !important;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  aside.sidebar {
    transform: translateX(-100%);
  }
  
  aside.sidebar.active {
    transform: translateX(0);
  }
  
  main.main-content {
    margin-left: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
}
