* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  max-width: 800px;
}

.browser-frame {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.browser-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #2c2c2c;
  padding: 0 16px;
  height: 38px;
  position: relative;
}

.browser-controls::after {
  content: none;
}

.browser-title {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  letter-spacing: 0.3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.browser-title::before {
  content: none;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.window-control {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

.window-control:hover {
  filter: brightness(0.9);
}

.minimize {
  background-color: #ffbd4c;
}

.minimize::after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  transition: all 0.15s ease;
}

.minimize:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}

.maximize {
  background-color: #00ca56;
}

.maximize::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 1px;
  position: absolute;
  transition: all 0.15s ease;
}

.maximize:hover::after {
  border-color: rgba(0, 0, 0, 0.4);
}

.close {
  background-color: #ff5f57;
}

.close::before, .close::after {
  content: "";
  width: 6px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  transition: all 0.15s ease;
}

.close::before {
  transform: rotate(45deg);
}

.close::after {
  transform: rotate(-45deg);
}

.close:hover::before, .close:hover::after {
  background-color: rgba(0, 0, 0, 0.4);
}

.close:active {
  background-color: #c14543;
}

/* Add Windows Explorer-like address bar */
.content {
  padding: 0;
}

.explorer-nav {
  display: flex;
  align-items: center;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
  padding: 8px 16px;
  height: 46px;
}

.nav-buttons {
  display: flex;
  align-items: center;
  margin-right: 16px;
}

.nav-button {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px;
  color: #555;
  font-size: 14px;
  transition: background-color 0.2s;
}

.nav-button:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

.address-bar {
  flex-grow: 1;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 13px;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-box {
  width: 180px;
  margin-left: 16px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 8px 12px;
  padding-right: 36px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-size: 13px;
  color: #333;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.main-info {
  padding: 24px 16px;
}

.extension-header {
  display: flex;
  margin-bottom: 24px;
  position: relative;
}

.logo-container {
  width: 60px;
  height: 60px;
  margin-right: 16px;
  flex-shrink: 0;
}

.extension-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.extension-details {
  flex-grow: 1;
}

h1 {
  font-size: 22px;
  font-weight: 600;
  color: #212529;
  margin-bottom: 8px;
}

.extension-description {
  color: #6c757d;
  margin-bottom: 12px;
}

.stats {
  display: flex;
  gap: 16px;
}

.stat-item {
  display: flex;
  align-items: center;
  background-color: #f1f3f5;
  padding: 4px 10px;
  border-radius: 16px;
}

.stat-icon {
  margin-right: 4px;
  font-size: 14px;
}

.stat-text {
  font-size: 13px;
  color: #495057;
}

.step-indicator {
  position: absolute;
  top: 0;
  right: 0;
  font-weight: 600;
  color: #1a73e8;
}

.alert {
  display: flex;
  align-items: flex-start;
  background-color: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.alert-icon {
  margin-right: 12px;
  font-size: 18px;
}

.alert p {
  color: #664d03;
  font-size: 14px;
  line-height: 1.5;
}

/* Scan Section */
.scan-section {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 24px;
}

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

.scan-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #212529;
}

.scan-status {
  font-size: 14px;
  color: #1a73e8;
  font-weight: 500;
}

.progress-container {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #1a73e8;
  transition: width 0.1s ease;
}

.scan-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.result-label {
  font-size: 14px;
  color: #495057;
}

.result-value {
  font-size: 16px;
  font-weight: 600;
  color: #1a73e8;
}

.terms-box {
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.terms-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #212529;
}

.terms-box p {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
}

.footer-text {
  font-size: 14px;
  color: #6c757d;
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer-text a {
  color: #1a73e8;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

.install-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.store-info {
  display: flex;
  align-items: center;
}

.chrome-icon {
  width: 36px;
  height: 36px;
  margin-right: 12px;
}

.store-text p {
  font-size: 12px;
  color: #6c757d;
}

.store-name {
  font-size: 14px;
  font-weight: 500;
  color: #212529;
}

.install-button {
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s;
}

.install-button:hover {
  background-color: #1967d2;
}

@media (max-width: 768px) {
  .extension-header {
    flex-direction: column;
  }

  .logo-container {
    margin-bottom: 16px;
  }

  .step-indicator {
    position: static;
    margin-top: 16px;
  }

  .scan-results {
    grid-template-columns: 1fr;
  }

  .install-section {
    flex-direction: column;
    gap: 16px;
  }

  .store-info {
    margin-bottom: 16px;
  }

  .install-button {
    width: 100%;
  }
}
