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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2c3e50;
  background: #ecf0f1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

header {
  background: #2c3e50;
  color: #ffffff;
  padding: 1rem 0;
  margin-bottom: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
header p {
  opacity: 0.9;
  font-size: 0.9rem;
}

nav {
  background: #34495e;
  padding: 0.5rem 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  nav ul {
    gap: 0.5rem;
  }
}
nav a {
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 0.9rem;
}
nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}
nav a.active {
  background: #3498db;
}

.content {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  min-height: 400px;
}
.content h1, .content h2, .content h3 {
  margin-bottom: 1rem;
  color: #2c3e50;
}
.content h1 {
  font-size: 2rem;
}
.content h2 {
  font-size: 1.5rem;
}
.content h3 {
  font-size: 1.25rem;
}

.alert {
  padding: 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  border-left: 4px solid;
}
.alert.alert-success {
  background: rgb(199.8591549296, 242.6408450704, 217.9225352113);
  color: rgb(20.323943662, 90.676056338, 50.0281690141);
  border-left-color: #27ae60;
}
.alert.alert-error {
  background: white;
  color: rgb(168.2876712329, 34.5205479452, 20.7123287671);
  border-left-color: #e74c3c;
}
.alert.alert-warning {
  background: rgb(254.0602409639, 247.2469879518, 236.4397590361);
  color: rgb(102.7951807229, 65.0602409639, 5.2048192771);
  border-left-color: #f39c12;
}
.alert.alert-info {
  background: rgb(246.9309623431, 250.9058577406, 253.5690376569);
  color: rgb(25.4560669456, 96.1673640167, 143.5439330544);
  border-left-color: #3498db;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #2c3e50;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}
.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.btn {
  background: #3498db;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn:hover {
  background: rgb(33.1380753138, 125.1882845188, 186.8619246862);
  transform: translateY(-1px);
}
.btn:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}
.btn {
  display: inline-block;
  text-decoration: none;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.btn.btn-primary {
  background: #2c3e50;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn.btn-primary:hover {
  background: rgb(25.9032258065, 36.5, 47.0967741935);
  transform: translateY(-1px);
}
.btn.btn-primary:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}
.btn.btn-success {
  background: #27ae60;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn.btn-success:hover {
  background: rgb(29.661971831, 132.338028169, 73.014084507);
  transform: translateY(-1px);
}
.btn.btn-success:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}
.btn.btn-danger {
  background: #e74c3c;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn.btn-danger:hover {
  background: rgb(213.698630137, 43.8356164384, 26.301369863);
  transform: translateY(-1px);
}
.btn.btn-danger:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}
.btn.btn-warning {
  background: #f39c12;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}
.btn.btn-warning:hover {
  background: rgb(199.8795180723, 126.5060240964, 10.1204819277);
  transform: translateY(-1px);
}
.btn.btn-warning:disabled {
  background: #bdc3c7;
  cursor: not-allowed;
  transform: none;
}
.btn.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.btn.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
}

.search-container {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.search-container .search-form {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .search-container .search-form {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}
.search-container .search-filters {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .search-container .search-filters {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

.movie-results {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .movie-results {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.movie-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.movie-card .movie-poster {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.movie-card .movie-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}
.movie-card .movie-meta {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
}
.movie-card .price-info {
  border-top: 1px solid #eee;
  padding-top: 1rem;
}
.movie-card .price-info .format-prices {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.movie-card .price-info .format-price {
  background: #ecf0f1;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
}
.movie-card .price-info .format-price .format {
  font-weight: 600;
  text-transform: uppercase;
}
.movie-card .price-info .format-price .price {
  color: #27ae60;
  font-weight: 600;
}

.price-stats {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .price-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.price-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: #ffffff;
  border-radius: 4px;
}
.price-stats .stat-item .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3498db;
}
.price-stats .stat-item .stat-label {
  font-size: 0.875rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.loading {
  text-align: center;
  padding: 3rem;
}
.loading::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-top-color: #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
footer {
  margin-top: 3rem;
  padding: 2rem 0;
  background: #2c3e50;
  color: #ffffff;
  text-align: center;
}
footer p {
  margin: 0;
  opacity: 0.9;
}

@media (max-width: 480px) {
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

@media print {
  nav, footer, .btn, .search-container {
    display: none;
  }
  .content {
    box-shadow: none;
  }
}

/*# sourceMappingURL=style.css.map */
