/* style.css */
html {
  scroll-behavior: smooth;
}
/*
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
  color: white;
  background-color: #000;
    text-align: center;
    scroll-behavior: smooth;
}
stone-purple2.webp
*/

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: Arial, sans-serif;
    color: white;
    background-image: url('images/gem-stone-9.webp'); 
    background-repeat: repeat;
    background-size: auto;
    text-align: center;
    scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

h1, h2, h3 {
    font-family: 'Georgia', serif; /* Fantasy-like font, replace with a custom font if desired */
    text-transform: uppercase;
}

/* header */
.header {
    background: #0f0000;
    margin: 0;
    padding: 0 0 15px 0;
}

.hamburger-click-area {
  display: none;
}

/* NAVIGATION BAR */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: 'Georgia', serif;
    font-weight: bold;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    height: 50px;
    column-gap: 10px;
}

nav ul li {
    color: white;
    cursor: pointer;
    padding: 0 15px;
    position: relative;
    line-height: 50px;
    display: flex;
    align-items: center;
}

nav ul li:hover {
    color: #ffd700;
}

nav ul li:nth-child(4) {
    font-size: 22px;
    font-family: sans-serif;
    color: #ffd700;
    padding: 0 10px;
    margin: 0 5px;
    display: flex;
    align-items: center;
}

nav ul li.active {
    color: #ffd700;
    border-bottom: 2px solid #ffd700;
    cursor: pointer;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0 15px;
    line-height: 50px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffd700;
}
/* end header */
.main-wrapper {
  max-width: 1300px; 
  margin: 0 auto;
  background-color: black;
  padding: 0;
box-shadow:
  inset 0 1px 0 rgba(255, 255, 255, 0.05), /* subtle top inner edge */
  0 6px 20px rgba(23, 3, 43, 0.6),
  0 12px 48px rgba(23, 3, 43, 0.9);
border-radius: 10px;
}

@media (max-width: 768px) {
    nav {
        display: none;
    }
}

/* hero section */
.hero {
    background: url('images/top-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3000 / 1543;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px; 
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.hero-text {
    position: absolute;
    top: 77%;
    left: 75%;
    transform: translate(-50%, -50%);
    font-family: 'Georgia', serif;
    font-size: 1.6em; /* Increased from 1.5em to match the prominence of the description text */
    font-weight: bold; /* Added to mimic the bold styling in the image */
    width: 50%;
    max-width: 500px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8); 
}
/* hero section end */

/* two-epics */
.two-epics {
    background: url('images/two-epics-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1918 / 862;
}

.two-epics::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px; 
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.two-epics-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  max-width: 800px;
  margin: 0;
  margin-top: 2%;
  margin-left: 3%;
  padding: 0;
}

.two-epics-left {
  flex: 1;
  text-align: left;
}

.two-epics-left h2 {
  font-size: 32px;
  color: #eb9c00;
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif; /* Elegant, epic title font */
}

.two-epics-left .subtitle {
  font-size: 22px;
  font-style: italic;
  font-weight: bold;
  color: #ffaa00;
  margin: 0;
  padding: 0;
  font-family: 'Merriweather', serif; /* Classy italic body font */
}

.two-epics-left .unlock {
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  color: hsl(40, 23%, 97%);
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
}

.two-epics-left p {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif; /* Modern clean body text */
}

.two-epics-left h3 {
  font-size: 24px;
  color: white;
  margin-top: 50px;
  margin-bottom: 0px;
  font-family: 'Playfair Display', serif; /* Stylish for section titles */
}

/* two-epics */

/* what-is-reckoning */
.what-is-reckoning {
  background: url('images/what-is-reckoning-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1913 / 842;
}

.what-is-reckoning::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px; 
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
} 

.reckoning-left-text {
  position: absolute;
  top: 65%;  
  left: 9.3%;  
  color: #f1b600;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  max-width: 25%;
}

.reckoning-right-text {
  position: absolute;
  top: 5%;  
  left: 54.3%;  
  color: white;
  max-width: 38%;
}

.reckoning-right-text h2 {
  color: #f1b600;
  font-size: 28px;
  margin-bottom: 10px;
}

.reckoning-right-text p {
  font-size: 18px;
  line-height: 1.6;
}

/* what-is-reckoning */

/* how-to-play-core */
.how-to-play-core {
    background: url('images/how-to-play-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1912 / 1951;
}

.how-to-play-core::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px; 
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.how-to-play-core h2 {
  margin-top: 1px;
  font-size: 32px;
  color: #ffc400;
  margin-bottom: 10px;
}

.how-to-play-core > p:first-of-type {
  font-size: 18px;
  margin-bottom: 10px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-line {
  font-style: italic;
  font-size: 18px;
  color: #f5f5f5;
  text-align: center;
  margin-top: 0;
}

.play-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.play-steps div {
  width: 20%; /* Fits 4 items per row with spacing */
  max-width: 280px; /* Prevents from getting too large on wide screens */
  min-width: 180px; /* Optional: prevents shrinking too much */
  text-align: center;
  flex: 1 1 22%;
}

.play-steps img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.play-steps img:hover {
  transform: scale(1.05);
}

.play-steps p {
  margin-top: 12px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

.video-wrapper {
  position: relative;
  padding-bottom: 40%; /* Reduced from 56.25% to make it shorter */
  height: 0;
  overflow: hidden;
  max-width: 90%;  /* Reduced from 90% */
  margin: 0 auto 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  border: 10px solid #1c003d;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

 .how-to-play-core .note {
  display: block;
  font-size: 22px;
  color: #ffc400;
  font-style: italic;
  margin-top: 60px;
}

/* how-to-play-core */

/* game-mode-clash */
/* how-to-play-core */
.game-mode-clash {
    background: url('images/how-to-play-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1912 / 1951;
}

.game-mode-clash::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px; 
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.game-mode-clash h2 {
  margin-top: 1px;
  font-size: 32px;
  color: #ffc400;
  margin-bottom: 10px;
}

.game-mode-clash > p:first-of-type {
  font-size: 18px;
  margin-bottom: 10px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-line {
  font-style: italic;
  font-size: 18px;
  color: #f5f5f5;
  text-align: center;
  margin-top: 0;
}

.clash-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 50px;
}

.clash-steps div {
  width: 20%; /* Fits 4 items per row with spacing */
  max-width: 280px; /* Prevents from getting too large on wide screens */
  min-width: 180px; /* Optional: prevents shrinking too much */
  text-align: center;
  flex: 1 1 22%;
}

.clash-steps img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease;
}

.clash-steps img:hover {
  transform: scale(1.05);
}

.clash-steps p {
  margin-top: 12px;
  font-size: 16px;
  color: #ffffff;
  line-height: 1.4;
}

.video-wrapper {
  position: relative;
  padding-bottom: 40%; /* Reduced from 56.25% to make it shorter */
  height: 0;
  overflow: hidden;
  max-width: 90%;  /* Reduced from 90% */
  margin: 0 auto 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  margin-top: 50px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

 .game-mode-clash .note {
  display: block;
  font-size: 22px;
  color: #ffc400;
  font-style: italic;
  margin-top: 60px;
}
/* game-mode-clash */

/* card-art */
.card-art {
  background: url('images/card-art-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1911 / 1776;
}

.card-art::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}
.card-art h2 {
  margin-top: -20px;
  font-size: 22px;
  color: #ffc400;
  margin-bottom: 10px;
}

.card-art > p:first-of-type {
  font-size: 18px;
  margin-bottom: 10px;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
/* card-art */

/* final-fate */
.final-fate {
    background: url('images/final-fate-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1913 / 619;
}

.final-fate::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.final-fate-content {
  max-width: 620px;
  margin-top: -30px;
  margin-right: 50px;
  margin-left: auto;
  text-align: right;
}

.final-fate h2 {
  font-size: 28px;
  color: #ffc400;
  line-height: 1.3;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.final-fate h2 .twist {
  font-size: 24px;
  display: block;
  color: #ffae00;
}

.final-fate p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 5px;
}

.final-fate .blessing {
  color: #ffffff;
  font-weight: bold;
}

.final-fate .curse {
  color: #ffffff;
  font-weight: bold;
}

.final-fate .final-quote {
  font-style: italic;
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 600;
  color: #ffae00; /* warm gold */
  margin-top: 1px;
  line-height: 1.6;
}


/* final-fate */

/* whats-in-box */
.whats-in-box {
  background: url('images/whats-in-box-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1911 / 1663;
}

.whats-in-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}

.whats-in-box-left-text {
  position: absolute;
  top: 3%;
  left: 5%;
  color: #fff;
  text-align: left;
}

.whats-in-box-left-text h2 {
  font-size: 24px;
  color: #ffc400;
  margin-bottom: 10px;
}

.whats-in-box-left-text h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 10px;
}

.whats-in-box-left-text ul {
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  color: #ffffff;
  line-height: 1.8;
}

.whats-in-box-left-text ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.whats-in-box-left-text ul li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffc400;
  font-size: 20px;
  line-height: 1;
  transform: translateY(8px);
}

/* whats-in-box */
/* editions-bg */
.editions-bg {
  background: url('images/edition-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1910 / 2425;
}

.editions-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}
/* editions-bg */
/* scene01-bg */
.scene01-bg {
  background: url('images/scene-bg-01.webp') no-repeat center center;
    background-size: contain;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1917 / 1289;
}

.scene01-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, transparent, #FFF000, transparent);
}
/* scene01-bg */


section {
    padding: 40px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.game-modes, .play-steps, .clash-steps, .edition-options {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.game-modes > div, .play-steps > div, .clash-steps > div, .edition-options > div {
    width: 45%;
    margin: 10px;
}

img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
}

.video-placeholder {
    background: black;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.card-examples {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.di-footer {
  background-color: #080712;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  font-family: sans-serif;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.footer-nav a:hover {
  color: #f0c000;
}

.footer-logo img {
  width: 60px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-bottom-text {
  font-size: 0.7rem;
  color: #ccc;
  line-height: 1.4;
}

.kickstarter-button {
    display: inline-block;
    margin-top: 1px;
    padding: 8px 18px;
    background-color: #05ce78; /* Kickstarter green */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.kickstarter-button:hover {
    background-color: #04b66a;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

