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

html {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: #2c3e50;
  background: #ffffff;
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}
.header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo:hover {
  transform: translateX(-50%) scale(1.05);
}
.header__logo-image {
  height: 45px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.header__logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.header__nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.header__link {
  text-decoration: none;
  color: #2c3e50;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.625rem 1.25rem;
  border-radius: 8px;
  position: relative;
}
.header__link:hover {
  color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.1);
  transform: translateY(-1px);
}
.header__link--active {
  color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.15);
}
.header__logout {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff3838 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.header__logout:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}
.header__logout:active {
  transform: translateY(0);
}

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  background-color: transparent;
  flex: 1;
}

.gallery__actions {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-end;
}
.gallery__add-btn {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
  position: relative;
  overflow: hidden;
}
.gallery__add-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.gallery__add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}
.gallery__add-btn:hover::before {
  width: 300px;
  height: 300px;
}
.gallery__add-btn:active {
  transform: translateY(0);
}
.gallery__container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0;
  justify-content: center;
  align-items: flex-start;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: transparent;
  border: none;
  flex-shrink: 0;
  width: auto;
  max-width: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover {
  transform: translateY(-8px) scale(1.02);
}
.gallery-item__image {
  width: auto;
  height: auto;
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  display: block;
}
.gallery-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item__overlay:empty {
  display: none;
}
.gallery-item:hover .gallery-item__overlay {
  opacity: 1;
}
.gallery-item__title {
  font-size: 0.9rem;
  font-weight: 500;
}
.gallery-item__delete {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background-color: rgba(255, 107, 107, 0.9);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: 10;
}
.gallery-item__delete:hover {
  background-color: #ff6b6b;
  transform: scale(1.1);
}
.gallery-item:hover .gallery-item__delete {
  opacity: 1;
}

.admin__container {
  max-width: 800px;
  margin: 0 auto;
}
.admin__login, .admin__panel {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.admin__login {
  max-width: 450px;
  margin: 4rem auto;
  animation: fadeInUp 0.6s ease-out;
}
.admin__title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.5px;
}
.admin__subtitle {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1f3a;
  font-weight: 600;
}
.admin__form {
  margin-bottom: 2rem;
}
.admin__form-group {
  margin-bottom: 1.75rem;
  position: relative;
}
.admin__form-group--checkbox {
  margin-bottom: 1.25rem;
}
.admin__label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.admin__checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin__checkbox-label:hover {
  color: #4a90e2;
}
.admin__checkbox {
  width: 20px;
  height: 20px;
  margin-right: 0.75rem;
  cursor: pointer;
  accent-color: #4a90e2;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  background-color: #ffffff;
  border: 2px solid #e1e8ed;
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  position: relative;
}
.admin__checkbox:checked {
  background-color: #4a90e2;
  border-color: #4a90e2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M10 3L4.5 8.5 2 6l1.5-1.5L4.5 6l4-4L10 3z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}
.admin__checkbox:hover {
  border-color: #4a90e2;
  box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}
.admin__checkbox:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
}
.admin__checkbox-text {
  font-size: 0.95rem;
  color: #2c3e50;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin__checkbox-label:hover .admin__checkbox-text {
  color: #4a90e2;
}
.admin__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  color: #2c3e50;
}
.admin__input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
  transform: translateY(-1px);
}
.admin__input::placeholder {
  color: rgb(137.5806451613, 164, 190.4193548387);
}
.admin__button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.admin__button--primary {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.admin__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}
.admin__button--primary:active {
  transform: translateY(0);
}
.admin__button--danger {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff3838 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}
.admin__button--danger:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}
.admin__button--danger:active {
  transform: translateY(0);
}
.admin__message {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
}
.admin__message--success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #c3e6cb;
  box-shadow: 0 2px 8px rgba(21, 87, 36, 0.1);
}
.admin__message--error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f5c6cb;
  box-shadow: 0 2px 8px rgba(114, 28, 36, 0.1);
}
.admin__upload {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e1e8ed;
}
.admin__drop-zone {
  border: 2px dashed #e1e8ed;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(245, 247, 250, 0.5);
  margin-bottom: 1.5rem;
  position: relative;
}
.admin__drop-zone:hover {
  border-color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.05);
}
.admin__drop-zone.drag-over {
  border-color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.1);
  transform: scale(1.02);
}
.admin__drop-zone-icon {
  font-size: 3rem;
  color: #e1e8ed;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin__drop-zone-text {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.admin__drop-zone-hint {
  color: rgb(104.6774193548, 138.5, 172.3225806452);
  font-size: 0.875rem;
}
.admin__file-name {
  display: block;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  color: #4a90e2;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.admin__file-name.has-file {
  opacity: 1;
  transform: translateY(0);
}
.admin__file-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.admin__images-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.admin-image-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  background-color: transparent;
}
.admin-image-item:hover {
  transform: translateY(-4px);
}
.admin-image-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.admin-image-item__delete {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 107, 107, 0.95);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
  font-weight: 600;
}
.admin-image-item__delete:hover {
  background: #ff6b6b;
  transform: scale(1.15) rotate(90deg);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.5);
}

.loading {
  text-align: center;
  padding: 3rem;
  color: #2c3e50;
  font-size: 1.1rem;
}

.empty-state {
  text-align: center;
  padding: 3rem;
  color: rgb(104.6774193548, 138.5, 172.3225806452);
}
.empty-state__text {
  font-size: 1.1rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}
.modal__content {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2001;
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: fadeInUp 0.4s ease-out;
  margin: auto;
}
.modal__title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a1f3a;
}
.modal__form {
  margin-bottom: 0;
}
.modal__form-group {
  margin-bottom: 1.5rem;
}
.modal__form-group:last-child {
  margin-bottom: 0;
}
.modal__label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #2c3e50;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
.modal__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e1e8ed;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #ffffff;
  color: #2c3e50;
}
.modal__input:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 4px rgba(74, 144, 226, 0.1);
  transform: translateY(-1px);
}
.modal__input::placeholder {
  color: rgb(137.5806451613, 164, 190.4193548387);
}
.modal__drop-zone {
  border: 2px dashed #e1e8ed;
  border-radius: 12px;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(245, 247, 250, 0.5);
  margin-bottom: 1.5rem;
  position: relative;
}
.modal__drop-zone:hover {
  border-color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.05);
}
.modal__drop-zone.drag-over {
  border-color: #4a90e2;
  background-color: rgba(74, 144, 226, 0.1);
  transform: scale(1.02);
}
.modal__drop-zone-icon {
  font-size: 3rem;
  color: #e1e8ed;
  margin-bottom: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__drop-zone-text {
  color: #2c3e50;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.modal__drop-zone-hint {
  color: rgb(104.6774193548, 138.5, 172.3225806452);
  font-size: 0.875rem;
}
.modal__file-name {
  display: block;
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: rgba(74, 144, 226, 0.1);
  border-radius: 8px;
  color: #4a90e2;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__file-name.has-file {
  opacity: 1;
  transform: translateY(0);
}
.modal__file-input-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}
.modal__file-input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}
.modal__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
.modal__button {
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.modal__button--primary {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.modal__button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}
.modal__button--primary:active {
  transform: translateY(0);
}
.modal__button--secondary {
  background-color: #e1e8ed;
  color: #2c3e50;
}
.modal__button--secondary:hover {
  background-color: rgb(193.125, 207.5625, 217.875);
  transform: translateY(-2px);
}
.modal__button--secondary:active {
  transform: translateY(0);
}
.modal__message {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
}
.modal__message--success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #c3e6cb;
  box-shadow: 0 2px 8px rgba(21, 87, 36, 0.1);
}
.modal__message--error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #f5c6cb;
  box-shadow: 0 2px 8px rgba(114, 28, 36, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.footer {
  margin-top: auto;
  padding: 3rem 2rem;
  background-color: rgba(245, 247, 250, 0.5);
  border-top: 1px solid #e1e8ed;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.footer__button--email {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}
.footer__button--email:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}
.footer__button--email:active {
  transform: translateY(0);
}
.footer__button--discord {
  background: linear-gradient(135deg, #5865f2 0%, #4752c4 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}
.footer__button--discord:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.4);
}
.footer__button--discord:active {
  transform: translateY(0);
}
.footer__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__button-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.footer__button-text {
  font-size: 1rem;
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer__copyright {
  color: #2c3e50;
  font-size: 0.95rem;
  font-weight: 500;
}
.footer__developer {
  color: rgb(80.1935483871, 113, 145.8064516129);
  font-size: 0.875rem;
}
.footer__developer-name {
  color: #4a90e2;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__developer-name:hover {
  color: rgb(34.3857142857, 117.3857142857, 214.6142857143);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    gap: 1rem;
  }
  .header__logo {
    position: static;
    transform: none;
  }
  .header__nav {
    width: 100%;
    justify-content: center;
  }
  .gallery__container {
    gap: 1rem;
  }
  .gallery__container .gallery-item {
    max-width: calc(50% - 0.5rem);
  }
  .gallery__container .gallery-item__image {
    max-width: 100%;
    max-height: 400px;
  }
  .admin__images-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .footer {
    padding: 2rem 1.5rem;
  }
  .footer__actions {
    flex-direction: column;
    width: 100%;
  }
  .footer__button {
    width: 100%;
    justify-content: center;
  }
}

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