body {
  margin: 0;
  /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif; */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #111111;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
    monospace;
}

/* .App {
  text-align: center;
} */
* {
  box-sizing: border-box;
  font-family: "Open Sans";
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}
.modal-dialog {
  color: #282c34 !important;
}
@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.movie-cards {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.movie-cards::-webkit-scrollbar {
  display: none;
}

.movie-card {
  flex: 0 0 auto;
  width: 180px;
}

.category-btns {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hero-search {
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border-radius: 50px;
}

.hero-search .input-group {
  border-radius: 50px;
  overflow: hidden;
}

.hero-search .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search .form-control:focus {
  background: transparent;
  box-shadow: none;
  color: white;
}

.category-btn {
  white-space: nowrap;
  padding: 10px 25px;
  border: none;
  border-radius: 25px;
  background: #323232;
  color: white;
  transition: all 0.3s ease;
  font-weight: 700;
}

.category-btn.active {
  background: #4329b2;
}

.category-btn:hover:not(.active) {
  background: #252525;
}

.watch-now-btn {
  background: #3c18ca;
  border: none;
  padding: 12px 14px;
  font-weight: 800;
  border-radius: 10px;
  color: white;
}

.watch-now-btn:hover {
  background: #5b4ec8;
}

.hero-gradient {
  background: linear-gradient(to top, #0f1121 5%, transparent 95%);
  margin-bottom: inherit;
}

@keyframes react-loading-skeleton {
  100% {
    transform: translateX(100%);
  }
}

.react-loading-skeleton {
  --base-color: #ebebeb;
  --highlight-color: #f5f5f5;
  --animation-duration: 1.5s;
  --animation-direction: normal;
  --pseudo-element-display: block; /* Enable animation */

  background-color: var(--base-color);

  width: 100%;
  border-radius: 0.25rem;
  display: inline-flex;
  line-height: 1;

  position: relative;
  -webkit-user-select: none;
          user-select: none;
  overflow: hidden;
}

.react-loading-skeleton::after {
  content: ' ';
  display: var(--pseudo-element-display);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-image: linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    );
  background-image: var(
    --custom-highlight-background,
    linear-gradient(
      90deg,
      var(--base-color) 0%,
      var(--highlight-color) 50%,
      var(--base-color) 100%
    )
  );
  transform: translateX(-100%);

  animation-name: react-loading-skeleton;
  animation-direction: var(--animation-direction);
  animation-duration: var(--animation-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion) {
  .react-loading-skeleton {
    --pseudo-element-display: none; /* Disable animation */
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #030712; /* gray-950 */
  color: white;
}

/* Layout */
.maintenance-wrapper {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
    background: #030712;
}

.maintenance-container {
  text-align: center;
  max-width: 48rem;
}

/* Hero Icon Section */
.hero-icon {
  position: relative;
  margin-bottom: 3rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  filter: blur(60px);
  opacity: 0.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-circle {
  width: 8rem;
  height: 8rem;
  background-color: #4b5563; /* gray-600 */
  border-radius: 50%;
}

.hero-main-icon {
  width: 6rem;
  height: 6rem;
  color: #d1d5db; /* gray-300 */
  position: relative;
}

/* Title */
.maintenance-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}



@media (min-width: 768px) {
  .maintenance-title {
    font-size: 4.5rem;
  }
}

/* Divider */
.divider {
  width: 6rem;
  height: 4px;
  background-color: #4b5563;
  margin: 0 auto 2rem auto;
}

/* Description */
.maintenance-description {
  font-size: 1.5rem;
  color: #9ca3af; /* gray-400 */
  margin-bottom: 3rem;
  line-height: 1.6;
}

.maintenance-subtext {
  color: #6b7280; /* gray-500 */
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
  gap: 2rem;
  max-width: 36rem;
  margin: 4rem auto 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.feature-text {
  font-size: 0.875rem;
  color: #6b7280;
}
