/* [project]/src/app/comics/[id]/ComicReader.module.css [app-client] (css) */
.ComicReader-module__Z3BwOG__container {
  color: #fff;
  background-color: #111;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
}

.ComicReader-module__Z3BwOG__header {
  color: #ff1e1e;
  text-align: center;
  margin-bottom: 1rem;
}

.ComicReader-module__Z3BwOG__imageWrapper {
  width: 100%;
  max-width: 900px;
  position: relative;
}

.ComicReader-module__Z3BwOG__comicImage {
  object-fit: contain;
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.ComicReader-module__Z3BwOG__navButtons {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 100;
  background-color: rgba(20, 20, 20, .6);
  border-radius: 12px;
  gap: 1rem;
  padding: .75rem 1.5rem;
  display: flex;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
}

.ComicReader-module__Z3BwOG__navButtons button {
  color: #fff;
  cursor: pointer;
  background-color: rgba(255, 30, 30, .85);
  border: none;
  border-radius: 8px;
  padding: .75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  transition: all .2s;
}

.ComicReader-module__Z3BwOG__navButtons button:hover {
  background-color: #ff1e1e;
}

.ComicReader-module__Z3BwOG__navButtons button:disabled {
  cursor: not-allowed;
  background-color: rgba(100, 100, 100, .5);
}

.ComicReader-module__Z3BwOG__loading {
  color: #ff1e1e;
  text-align: center;
  margin-top: 2rem;
}

/* [project]/src/app/components/signup/LoginModal.module.css [app-client] (css) */
.LoginModal-module__9eUYWq__overlay {
  z-index: 200;
  background: rgba(0, 0, 0, .7);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.LoginModal-module__9eUYWq__modal {
  color: #fff;
  text-align: center;
  background: #1a1a1a;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(255, 30, 30, .3);
}

.LoginModal-module__9eUYWq__tabHeader {
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.LoginModal-module__9eUYWq__tabButton {
  color: #aaa;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  padding-bottom: .3rem;
  font-size: 1rem;
  transition: all .2s;
}

.LoginModal-module__9eUYWq__activeTab {
  color: #ff1e1e;
  border-bottom: 2px solid #ff1e1e;
}

.LoginModal-module__9eUYWq__title {
  color: #ff1e1e;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.LoginModal-module__9eUYWq__error {
  color: #ff4d4d;
  margin-bottom: .8rem;
  font-size: .9rem;
}

.LoginModal-module__9eUYWq__form {
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 1.5rem;
  display: flex;
}

.LoginModal-module__9eUYWq__input {
  color: #fff;
  background: #111;
  border: 1px solid #555;
  border-radius: 6px;
  padding: .6rem .8rem;
  font-size: 1rem;
}

.LoginModal-module__9eUYWq__input:focus {
  border-color: #ff1e1e;
  outline: none;
}

.LoginModal-module__9eUYWq__forgot {
  color: #bbb;
  text-align: right;
  cursor: pointer;
  margin-top: -.3rem;
  font-size: .9rem;
}

.LoginModal-module__9eUYWq__forgot:hover {
  color: #ff1e1e;
}

.LoginModal-module__9eUYWq__actions {
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.LoginModal-module__9eUYWq__primary {
  color: #fff;
  cursor: pointer;
  background-color: #ff1e1e;
  border: none;
  border-radius: 6px;
  padding: .6rem 1.2rem;
  font-size: 1rem;
  transition: background-color .2s;
}

.LoginModal-module__9eUYWq__primary:hover {
  background-color: #e01818;
}

.LoginModal-module__9eUYWq__secondary {
  color: #aaa;
  cursor: pointer;
  background: none;
  border: 1px solid #555;
  border-radius: 6px;
  padding: .6rem 1.2rem;
  font-size: 1rem;
}

.LoginModal-module__9eUYWq__secondary:hover {
  color: #fff;
  border-color: #777;
}

/* [project]/src/app/components/subscription/SubscriptionModal.module.css [app-client] (css) */
.SubscriptionModal-module__KepJJW__overlay {
  z-index: 9999;
  background-color: rgba(0, 0, 0, .65);
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.SubscriptionModal-module__KepJJW__modal {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  max-width: 400px;
  padding: 2rem;
  animation: .3s SubscriptionModal-module__KepJJW__fadeIn;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.SubscriptionModal-module__KepJJW__title {
  color: #111;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.SubscriptionModal-module__KepJJW__text {
  color: #555;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.SubscriptionModal-module__KepJJW__actions {
  justify-content: center;
  gap: 1rem;
  display: flex;
}

.SubscriptionModal-module__KepJJW__subscribeBtn {
  color: #fff;
  cursor: pointer;
  background: #0070f3;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.25rem;
  transition: background .2s;
}

.SubscriptionModal-module__KepJJW__subscribeBtn:hover {
  background: #0059c1;
}

.SubscriptionModal-module__KepJJW__closeBtn {
  cursor: pointer;
  color: #333;
  background: #e5e5e5;
  border: none;
  border-radius: 8px;
  padding: .75rem 1.25rem;
}

.SubscriptionModal-module__KepJJW__closeBtn:hover {
  background: #d4d4d4;
}

@keyframes SubscriptionModal-module__KepJJW__fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.SubscriptionModal-module__KepJJW__button-container {
  cursor: pointer;
  border: 1px solid #000;
  border-radius: 15px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  display: flex;
}

.SubscriptionModal-module__KepJJW__text-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  margin-right: 10px;
  display: flex;
}

.SubscriptionModal-module__KepJJW__logo-container {
  width: 40px;
  height: 40px;
}

.SubscriptionModal-module__KepJJW__seconday-logo-container {
  vertical-align: middle;
  width: 16px;
  height: 16px;
}

/*# sourceMappingURL=src_app_9b2d04f3._.css.map*/