/* style/original.css */

:root {
  --phdream-primary: #F2C14E;
  --phdream-secondary: #FFD36B;
  --phdream-card-bg: #111111;
  --phdream-background: #0A0A0A;
  --phdream-text-main: #FFF6D6;
  --phdream-border: #3A2A12;
  --phdream-glow: #FFD36B;
  --phdream-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-original {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--phdream-text-main); /* Text Main for dark background */
  background-color: var(--phdream-background); /* Background color for body */
}

.page-original__section {
  padding: 60px 20px;
  position: relative;
}

.page-original__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-original__dark-section {
  background-color: var(--phdream-card-bg);
}

.page-original__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--phdream-primary);
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-original__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--phdream-text-main);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-original__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-original__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.page-original__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-original__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -150px; /* Pull content slightly over image, but not covering text */
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-original__hero-title {
  font-weight: bold;
  color: var(--phdream-secondary);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(255, 211, 107, 0.7);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-original__hero-description {
  font-size: 1.2em;
  color: var(--phdream-text-main);
  margin-bottom: 30px;
}

.page-original__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-original__btn-primary,
.page-original__btn-secondary,
.page-original__btn-text {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-original__btn-primary {
  background: var(--phdream-button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-original__btn-primary:hover {
  background: linear-gradient(180deg, #FFD36B 0%, #E8B94F 100%);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
  transform: translateY(-2px);
}

.page-original__btn-secondary {
  background: transparent;
  color: var(--phdream-secondary);
  border: 2px solid var(--phdream-secondary);
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.2);
}

.page-original__btn-secondary:hover {
  background: var(--phdream-secondary);
  color: var(--phdream-background);
  box-shadow: 0 0 15px rgba(255, 211, 107, 0.4);
  transform: translateY(-2px);
}

.page-original__btn-text {
  background: transparent;
  color: var(--phdream-secondary);
  border: none;
  padding: 8px 15px;
  text-decoration: underline;
}

.page-original__btn-text:hover {
  color: var(--phdream-primary);
}

.page-original__about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-original__about-image {
  flex: 1 1 400px;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-original__about-text {
  flex: 1 1 500px;
  font-size: 1.1em;
  color: var(--phdream-text-main);
}

.page-original__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__game-category-item {
  background-color: var(--phdream-card-bg);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--phdream-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-original__game-category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-original__category-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px var(--phdream-glow));
}

.page-original__category-title {
  font-size: 1.5em;
  color: var(--phdream-primary);
  margin-bottom: 10px;
}

.page-original__category-text {
  font-size: 0.95em;
  color: var(--phdream-text-main);
  margin-bottom: 20px;
}

.page-original__promotion-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__promotion-card {
  background-color: var(--phdream-background);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--phdream-border);
  display: flex;
  flex-direction: column;
}

.page-original__promotion-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-original__promotion-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-original__promotion-title {
  font-size: 1.6em;
  color: var(--phdream-primary);
  margin-bottom: 10px;
}

.page-original__promotion-text {
  font-size: 1em;
  color: var(--phdream-text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-original__cta-full-width {
  text-align: center;
  margin-top: 40px;
}

.page-original__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-original__mobile-text {
  flex: 1 1 500px;
  font-size: 1.1em;
  color: var(--phdream-text-main);
}

.page-original__mobile-image {
  flex: 1 1 400px;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-original__security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__security-item {
  background-color: var(--phdream-background);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--phdream-border);
}

.page-original__security-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px var(--phdream-glow));
}

.page-original__security-item-title {
  font-size: 1.4em;
  color: var(--phdream-primary);
  margin-bottom: 10px;
}

.page-original__security-item-text {
  font-size: 0.95em;
  color: var(--phdream-text-main);
}

.page-original__support-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-direction: row-reverse; /* Image on right, text on left */
}

.page-original__support-image {
  flex: 1 1 400px;
  max-width: 50%;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-original__support-text {
  flex: 1 1 500px;
  font-size: 1.1em;
  color: var(--phdream-text-main);
}

.page-original__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-original__step-item {
  background-color: var(--phdream-background);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--phdream-border);
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-original__step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--phdream-button-gradient);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-original__step-title {
  font-size: 1.5em;
  color: var(--phdream-primary);
  margin-bottom: 10px;
}

.page-original__step-description {
  font-size: 0.95em;
  color: var(--phdream-text-main);
}

.page-original__faq-list {
  margin-top: 40px;
}

.page-original__faq-item {
  background-color: var(--phdream-card-bg);
  border: 1px solid var(--phdream-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}