/* Importing Google Fonts - Inter */
@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}
:root {
  --color-primary: #ff0000;
  --color-primary-dark: #ff0000;
  --color-accent: #000000;
  --color-card: #ffffff;
  --color-input: #F1F1FF;
  --color-text: #09090E;
  --color-placeholder: #000000;
  --color-border: #ffffff;
  --color-gradient: linear-gradient(135deg, #000000, #ff0000);
}
body.dark-theme {
  --color-card: #000000;
  --color-input: #000000;
  --color-text: #F3F4F6;
  --color-placeholder: #ffffff;
  --color-border: #ffffff;
  background: var(--color-card);
  background-image: radial-gradient(circle at 15% 50%, rgb(255, 255, 255) 0%, transparent 35%), radial-gradient(circle at 85% 30%, rgb(255, 0, 0) 0%, transparent 35%), radial-gradient(circle at 50% 80%, rgb(0, 0, 0) 0%, transparent 40%);
}
body {
  display: flex;
  width: 100%;
  padding: 15px;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: var(--color-text);
  background-image: linear-gradient(#E9E9FF, #C8C7FF);
}
.container {
  width: 900px;
  padding: 32px;
  border-radius: 23px;
  position: relative;
  background: var(--color-card);
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-image: var(--color-gradient);
}
body.dark-theme .container {
  border: 1px solid var(--color-border);
}
.header {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  justify-content: space-between;
}
.header .logo-wrapper {
  display: flex;
  gap: 18px;
  align-items: center;
}
.header .logo-wrapper .logo {
  height: 55px;
  width: 56px;
  display: flex;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.35rem;
  align-items: center;
  border-radius: 15px;
  justify-content: center;
  background-image: var(--color-gradient);
}
.header .logo-wrapper h1 {
  font-size: 1.9rem;
  font-weight: 700;
}
.header .theme-toggle {
  height: 43px;
  width: 43px;
  display: flex;
  font-size: 1.05rem;
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-placeholder);
  background: var(--color-input);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.header .theme-toggle:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.main-content {
  margin: 35px 0 5px 0;
}
.prompt-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.prompt-container .prompt-input {
  width: 100%;
  line-height: 1.6;
  resize: vertical;
  font-size: 1.05rem;
  padding: 16px 20px;
  min-height: 120px;
  border-radius: 15px;
  color: var(--color-text);
  background: var(--color-input);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.prompt-container .prompt-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgb(255, 255, 255);
  outline: none;
}
.prompt-container .prompt-input::placeholder {
  color: var(--color-placeholder);
}
.prompt-container .prompt-btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
  height: 35px;
  width: 35px;
  display: flex;
  font-size: 0.75rem;
  align-items: center;
  justify-content: center;
  background: var(--color-gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.8;
  transition: all 0.3s ease;
}
.prompt-container .prompt-btn:hover {
  opacity: 1 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.main-content .prompt-actions {
  display: grid;
  gap: 15px;
  grid-template-columns: 1.2fr 1fr 1.1fr 1fr;
}
.prompt-actions .select-wrapper {
  position: relative;
}
.prompt-actions .select-wrapper::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  padding-left: 7px;
  background: var(--color-input);
  transform: translateY(-50%);
  color: var(--color-placeholder);
  pointer-events: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.prompt-actions :where(.custom-select, .generate-btn) {
  border-radius: 10px;
  cursor: pointer;
  font-size: 1rem;
  padding: 12px 20px;
  color: var(--color-text);
  background: var(--color-input);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.prompt-actions .select-wrapper .custom-select {
  width: 100%;
  outline: none;
  height: 100%;
  appearance: none;
}
.prompt-actions .custom-select:is(:focus, :hover) {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgb(255, 255, 255);
}
.prompt-actions .generate-btn {
  display: flex;
  gap: 12px;
  font-weight: 500;
  border: none;
  color: #fff;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  background-image: var(--color-gradient);
}
.prompt-actions .generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgb(255, 255, 255);
}
.prompt-actions .generate-btn:disabled {
  opacity: 0.6;
  pointer-events: none;
}
.main-content .gallery-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}
.main-content .gallery-grid:has(.img-card) {
  margin-top: 30px;
}
.gallery-grid .img-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  background: var(--color-input);
  border: 1px solid var(--color-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.gallery-grid .img-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}
.gallery-grid .img-card:not(.loading, .error):hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.gallery-grid .img-card.loading .spinner {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-primary);
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.gallery-grid .img-card .status-container {
  display: none;
  gap: 13px;
  padding: 15px;
  align-items: center;
  flex-direction: column;
}
.gallery-grid .img-card:where(.loading, .error) .status-container {
  display: flex;
}
.gallery-grid .img-card.error .spinner,
.gallery-grid .img-card.loading i {
  display: none;
}
.gallery-grid .img-card .status-container .status-text {
  font-size: 0.85rem;
  text-align: center;
  color: var(--color-placeholder);
}
.gallery-grid .img-card .status-container i {
  font-size: 1.7rem;
  color: #ff0000;
}
.gallery-grid .img-card .result-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.gallery-grid .img-card .img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  opacity: 0;
  display: flex;
  justify-content: flex-end;
  transition: all 0.3s ease;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}
.gallery-grid .img-card:hover .img-overlay {
  opacity: 1;
}
.gallery-grid .img-card:where(.loading, .error) :is(.result-img, .img-overlay) {
  display: none;
}
.gallery-grid .img-card .img-download-btn {
  height: 45px;
  width: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(5px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: all 0.3s ease;
}
.gallery-grid .img-card .img-download-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}
/* Responsive media query code for small screens */
@media (max-width: 768px) {
  .container {
    padding: 18px;
  }
  .header .logo-wrapper .logo {
    height: 50px;
    width: 51px;
    font-size: 1.25rem;
  }
  .header .logo-wrapper h1 {
    font-size: 1.7rem;
  }
  .main-content .prompt-actions {
    grid-template-columns: 1fr;
    margin-top: -10px;
  }
  .prompt-actions .generate-btn {
    margin: 10px 0 0;
  }
  .gallery-grid .img-card .img-overlay {
    opacity: 1;
  }
}