/* Variables */
:root {
  --white: #fff;
  --black: #000;
  --bg-black: #000060;
  --primary-color: #ffcd01;
}

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

ul {
  list-style: none;
}

html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}

img,
video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* General Style */
body {
  font-family: "Nunito", sans-serif;
  color: var(--white);
  font-size: 0.9375rem;
  background-color: var(--bg-black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.7;
}

iconify-icon {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

section {
  scroll-margin-top: 50px;
}

/* Full-screen overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* Modal Box */
.modal-overlay .modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  width: 80%;
  max-width: 400px;
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.3);
  color: var(--black);
}

/* Button Styles */
.modal-overlay button {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.modal-overlay :is(h2, h3, p) {
  margin-bottom: 20px;
}

.modal-overlay #countdown {
  font-size: 2rem;
  display: block;
  margin-bottom: 20px;
}

.modal-overlay #claimOffer {
  color: white;
  background: gray;
}

.modal-overlay #closeModal {
  color: white;
  background: var(--bg-black);
}
