/*
CSS @property and the New Style
https://ryanmulligan.dev/blog/css-property-new-style/
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,500&display=swap");

:root {
  --shiny-cta-bg: #000000;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: blue;
  --shiny-cta-highlight-subtle: #8484ff;
}

@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}

@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}

.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 4px;
  padding: 1.25rem 2.5rem;
  font-family: inherit;
  font-size: 1.125rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);

  &::before,
  &::after,
  span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }

  &:active {
    translate: 0 1px;
  }
}

/* Dots pattern */
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}

/* Inner shimmer */
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}

.shiny-cta span {
  z-index: 1;

  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}

/* Animate */
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;

  &,
  &::before,
  &::after {
    animation: var(--animation) var(--duration),
      var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
  }

  span::before {
    transition: opacity var(--transition);
    animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}

.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);

  &,
  &::before,
  &::after {
    animation-play-state: running;
  }

  span::before {
    opacity: 1;
  }
}

@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}

@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}

@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
/* Center the CTA button */
.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.shiny-cta-link {
  text-decoration: none;
}
/* Add this to your index.css file */
/* Add this to your index.css file */
.popup-notification {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url("https://img.freepik.com/free-vector/blue-neon-light-rectangle-frame-glow-background_107791-27137.jpg?semt=ais_items_boosted&w=740")
    center/cover no-repeat;
  color: white;
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;
  display: none;
  text-align: center;
  min-width: 300px;
  min-height: 200px;
  border: 2px solid transparent;
}

.popup-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border-radius: 5px;
}

.popup-close-btn {
  padding: 8px 16px;
  background-color: #71797E;
  color: white; /* Fixed typo from 'wh' to 'white' */
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 2s;
}

.popup-close-btn:hover {
  background-color: #000080;
  color: #000; /* Change text color on hover for better contrast */
}/*POPUP CODE ENDS*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Garamond, serif;
  background: #111;
  color: #fff;
}


    header {
      background-color: black;
      padding: 20px;
      text-align: center;
    }

    .center-logo {
      text-align: center;
    }


button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #DB202C;
  color: white;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.1s ease;
}

button:hover {
    background-color: #555;
}

.browsebutton{
  text-align: center;
}

    header h1 {
      margin: 0;
      color: #DB202C;
    }

    h2{
      text-align: center;
      font-weight: bold;
      font-size: 30px;
    }

    nav {
      background-color: #333;
      display: flex;
      justify-content: center;
      padding: 10px 0;
    }

    nav a {
      color: white;
      margin: 0 15px;
      text-decoration: none;
      font-weight: bold;
    }

    nav a:hover {
      text-decoration: underline;
      color: #DB202C;
    }

.banner {
  align-items: center;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  padding: 100px;
  height: 166vh;
  background-size: cover;
  background-position: center;
  transition: background-image 2s ease-in-out;
}     
  #banner-title {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 1.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
}


    .movie-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .movie-card {
      background-color: #1e1e1e;
      border-radius: 8px;
      overflow: hidden;
      width: 200px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    }

    .movie-card img {
      width: 100%;
      height: auto;
    }

    .movie-card h3 {
      margin: 10px;
    }

    footer {
      background-color: #1f1f1f;
      color: #aaa;
      text-align: center;
      padding: 15px;
      position: relative;
      bottom: 0;
      width: 100%;
    }


    html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1;
}


/* MOBILE DISPLAY START*/
@media screen and (max-width: 768px) {
  /* Header adjustments */
  header {
    padding: 15px 10px;
  }
  
  header h1 {
    font-size: 1.5rem;
  }

  

  
  footer {
    padding: 10px;
    font-size: 0.9rem;
  }
  
  footer img {
    width: 25px;
    height: 25px;
  }
}
  
  
/* Additional mobile-specific fixes */
@media screen and (max-width: 480px) {
  /* Even smaller screens */
  .banner {
    padding: 20px 5px;
    font-size: 1rem;
  }
  
  .movie-card {
    width: 120px;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
 /* MOBILE DISPLAY END*/




  
/* CONTACT TAB */
h3{
  text-align: center;
}
 
