/* Design System and Variables */
:root {
  --bg-primary: #0b0f19;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(99, 102, 241, 0.3);
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  
  --primary: #6366f1;
  --primary-glow: rgba(99, 102, 241, 0.15);
  --secondary: #a855f7;
  --secondary-glow: rgba(168, 85, 247, 0.15);
  --success: #10b981;
  --danger: #ef4444;
  
  --font-family: 'Outfit', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

/* Background Glow Orbs */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.45;
  pointer-events: none;
}

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

.orb-2 {
  width: 600px;
  height: 600px;
  background: var(--secondary);
  bottom: -200px;
  right: -100px;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: #3b82f6;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Scrollbar Styles */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Header and Navbar */
.navbar {
  background: rgba(11, 15, 25, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 22px;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.logo-icon {
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, #a855f7, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
  text-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}

.hidden {
  display: none !important;
}

/* Buttons */
.btn {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 12px;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 8px 24px -2px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -2px rgba(99, 102, 241, 0.6);
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.full-width {
  width: 100%;
}

/* User Profile in Navbar */
.user-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid var(--border-color);
}

.user-email {
  font-size: 13px;
  font-weight: 500;
}

/* Views Layout */
.main-content {
  flex: 1;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px;
}

.view-section {
  display: none;
  animation: fadeIn 0.4s ease-out forwards;
}

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

/* Keyframe Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* Cards (Glassmorphism) */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 10px 30px -10px rgba(99, 102, 241, 0.15);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}

.form-group label span {
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12px;
}

input, select, textarea {
  font-family: var(--font-family);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text-main);
  font-size: 15px;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 15px -3px var(--primary-glow);
}

.field-hint {
  font-size: 12px;
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  max-width: 800px;
  margin: 0 auto;
}

.badge {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.3);
  color: #818cf8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 54px;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

/* Hero Mockup Window */
.hero-mockup {
  width: 100%;
  max-width: 900px;
  border-radius: 12px;
  background: #0f172a;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.mockup-header {
  background: #1e293b;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-color);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.mockup-url {
  background: #0f172a;
  color: var(--text-muted);
  font-size: 11px;
  padding: 4px 20px;
  border-radius: 6px;
  margin-left: 20px;
  flex: 1;
  max-width: 400px;
  text-align: left;
}

.mockup-body {
  display: flex;
  height: 320px;
  text-align: left;
}

.mockup-sidebar {
  width: 150px;
  background: #0b0f19;
  border-right: 1px solid var(--border-color);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-side-item {
  font-size: 12px;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 6px;
}

.mockup-side-item.active {
  background: var(--primary);
  color: white;
}

.mockup-main {
  flex: 1;
  padding: 24px;
  background: #0f172a;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mockup-card-grid {
  display: flex;
  gap: 16px;
}

.mockup-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 14px;
  border-radius: 8px;
}

.mockup-card h4 {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.mockup-card-val {
  font-size: 24px;
  font-weight: 700;
  margin-top: 4px;
}

.mockup-list {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 30px;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

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

/* Pricing Section */
.pricing-section {
  padding: 40px 0;
}

.pricing-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 15px 35px -10px rgba(99, 102, 241, 0.3);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.price {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 24px;
}

.price span {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  margin-bottom: 30px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-features li::before {
  content: "✦";
  color: var(--secondary);
}

/* Authentication Container */
.auth-container {
  max-width: 440px;
  margin: 60px auto;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.auth-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.auth-tab.active {
  color: var(--text-main);
  border-bottom: 2px solid var(--primary);
}

.auth-form {
  display: none;
}

.auth-form.active {
  display: block;
}

.auth-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.demo-notice {
  font-size: 13px;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  padding: 10px;
  border-radius: 8px;
  margin-top: 16px;
  text-align: center;
}

/* Dashboard View */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.welcome-title {
  font-size: 32px;
  font-weight: 800;
}

.welcome-desc {
  color: var(--text-muted);
  font-size: 15px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.stat-icon {
  font-size: 32px;
  background: rgba(255, 255, 255, 0.04);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.stat-card h4 {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-value {
  font-size: 24px;
  font-weight: 800;
}

.text-gradient-pro {
  background: linear-gradient(135deg, #a855f7, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Blog Table styles */
.blog-list-card {
  padding: 24px 0 0 0;
}

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

.badge-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.blog-table {
  width: 100%;
  border-collapse: collapse;
}

.blog-table th {
  text-align: left;
  padding: 16px 24px;
  color: var(--text-muted);
  font-size: 12px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--border-color);
}

.blog-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--border-color);
}

.blog-name-cell {
  font-weight: 600;
  display: flex;
  flex-direction: column;
}

.blog-sub {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
}

.badge-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  white-space: nowrap;
}

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

.empty-state {
  text-align: center;
  padding: 60px 20px !important;
}

.empty-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.empty-state h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Site Wizard Creator */
.wizard-container {
  max-width: 900px;
  margin: 0 auto;
}

.wizard-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 28px;
}

.wizard-step-indicator {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.wizard-header h2 {
  font-size: 24px;
  margin-top: 10px;
}

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

.wizard-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.palette-options {
  display: flex;
  gap: 12px;
}

.palette-option {
  flex: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.palette-option input {
  display: none;
}

.palette-preview {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.palette-dark {
  background: linear-gradient(135deg, #0b0f19, #6366f1);
}

.palette-indigo {
  background: linear-gradient(135deg, #0b0f19, #a855f7);
}

.palette-emerald {
  background: linear-gradient(135deg, #064e3b, #10b981);
}

.palette-option input:checked + .palette-preview {
  border-color: white;
  box-shadow: 0 0 10px var(--primary);
}

.palette-name {
  font-size: 12px;
  font-weight: 500;
}

.infra-feature-list {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.infra-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.infra-check {
  color: var(--success);
  font-weight: bold;
}

.wizard-actions {
  border-top: 1px solid var(--border-color);
  margin-top: 32px;
  padding-top: 24px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

/* Generation overlay on top */
#generation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1100;
}

.progress-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.progress-bar-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
  margin: 20px 0;
}

#progress-bar-fill {
  width: 10%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: width 0.4s ease;
}

.progress-steps {
  text-align: left;
  width: 100%;
  list-style: none;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step.active {
  color: var(--text-main);
  font-weight: 600;
}

.step.active::before {
  content: "⚡ ";
  color: var(--primary);
}

.step.completed {
  color: var(--success);
}

.step.completed::before {
  content: "✓ ";
  color: var(--success);
}

/* Settings */
.settings-container {
  max-width: 600px;
  margin: 0 auto;
}

.settings-header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.settings-header h2 {
  font-size: 22px;
}

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

/* Footer */
.footer {
  text-align: center;
  padding: 30px 24px;
  color: var(--text-muted);
  font-size: 13px;
  border-top: 1px solid var(--border-color);
  background: rgba(11, 15, 25, 0.4);
  margin-top: 60px;
}

/* Toast System */
#toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  animation: toastIn 0.3s ease-out forwards;
}

.toast.success { border-color: var(--success); color: #34d399; }
.toast.error { border-color: var(--danger); color: #f87171; }

@keyframes toastIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 768px) {
  .hero-title { font-size: 38px; }
  .wizard-grid { grid-template-columns: 1fr; }
  .navbar .nav-links { display: none; }
}

/* Gemini Warning Banner and Tutorial styling */
.gemini-warning-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.gemini-warning-card:hover {
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 6px 24px rgba(99, 102, 241, 0.1);
}

.warning-banner-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.warning-banner-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.warning-banner-title h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fca5a5;
  margin: 0;
}

.warning-banner-icon {
  font-size: 1.4rem;
}

.warning-banner-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
}

.tutorial-steps-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .tutorial-steps-container {
    grid-template-columns: 1fr;
  }
}

.tutorial-steps-list {
  padding-left: 1.2rem;
  color: var(--text-main);
}

.tutorial-steps-list li {
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.mock-video-frame {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

