/* RESET */
html, body {
  height: 100%;
  width: 100%;
  font-family: Arial, sans-serif;
  background: #FFF9ED; /* soft warm cream */
  display: flex;
  flex-direction: column;
  margin: 0;
}

body {
	user-select: none;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	overflow: hidden;
}

/* ------------------------- */
/*        COVER PAGE         */
/* ------------------------- */

#cover-page {
  width: 100%;
  height: 100vh;
  /* background: linear-gradient(135deg, #FFE8C2, #FED196); warm peach */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#cover-page .title {
  font-size: 3rem;
  font-weight: 900;
  color: #C45A00;
  text-align: center;
  letter-spacing: 2px;
}

.start-btn {
    position: fixed;
    bottom: 0;
  background: transparent;
  color: #ee8c22;
  border: none;
  padding: 20px 35px;
  border-radius: 10px;
  font-size: 3rem;
  cursor: pointer;
  transition: 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.start-btn:hover {
  transform: scale(1.08);
}

/* ------------------------- */
/*         MAIN CONTENT      */
/* ------------------------- */

#content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 85vh;
    width: 100%;
}

#text-wrapper {
    display: block;
    white-space: normal;
    line-height: 2;
    width: 100%;
}

/* Highlighted word */
.highlight-text,
.active {
  color: #E87400;
  text-shadow: 
    0 0 5px rgba(255, 150, 0, 0.6),
    0 0 10px rgba(255, 150, 0, 0.4),
    0 0 15px rgba(255, 150, 0, 0.2);
  transition: all 0.2s ease;
}

.word {
  margin: 5px;
}

#content {
    flex: 0 1 auto;
    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: bold;
    font-family: 'Gotham', sans-serif;
    color: black;

    background: white;
    border-radius: 15px;
    border: 4px solid #8ecef5;

    padding: 25px 40px;
    text-align: center;

    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    width: 60%;
    height: auto;
    min-height: 40vh;

    font-size: 2rem;
    margin-bottom: 37px;
}

/* ------------------------- */
/*          FOOTER           */
/* ------------------------- */

#player-footer {
  width: 100%;
  background: #FFF4D6;
  border-top: 1px solid #F4D9A7;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;

  position: fixed;
  bottom: 0;
  height: 15vh;
}

#player-footer button {
  background: #F2A654;
  color: #fff;
  border: none;

  font-size: 25px;
  padding: 10px 20px;
  border-radius: 10px;

  cursor: pointer;
  font-weight: bold;

  transition: background 0.2s ease, transform 0.15s ease;
}

/* Hover buttons */
#player-footer button:hover {
  background: #DD8E39;
}

/* Pressed */
#player-footer button:active {
  background: #C2782E;
  transform: scale(0.94);
}

/* Disabled */
#player-footer button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: #ccc;
}

/* ------------------------- */
/*        RESPONSIVE         */
/* ------------------------- */

/* Mobile Phones */
@media (max-width: 480px) {

  #content {
    width: 85%;
    padding: 20px;
  }

  #text-wrapper {
    font-size: 1.4rem;
    line-height: 1.7;
  }

  #player-footer button {
    font-size: 20px;
    padding: 8px 14px;
  }

  #cover-page .title {
    font-size: 2.3rem;
  }

  .start-btn {
    font-size: 2rem;
    padding: 18px 30px;
  }
}

/* Tablets */
@media (max-width: 768px) {

  #content {
    width: 70%;
    font-size: 1.6rem;
    padding: 22px;
  }

  #player-footer button {
    font-size: 23px;
    padding: 10px 18px;
  }
}

/* Small Laptops */
@media (max-width: 991px) {
  #content {
    width: 60%;
    font-size: 1.8rem;
  }
}

@media (max-width: 345px) {
  #player-footer button {
    font-size: 15px;
    padding: 8px;
  }
}
