/* style/terms-conditions.css */

/* Custom color variables based on palette */
:root {
  --vip777-primary-color: #F2C14E;
  --vip777-secondary-color: #FFD36B;
  --vip777-card-bg: #111111;
  --vip777-background: #0A0A0A;
  --vip777-text-main: #FFF6D6;
  --vip777-border: #3A2A12;
  --vip777-glow: #FFD36B;
  --vip777-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

/* Base styles for the page-terms-conditions */
.page-terms-conditions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--vip777-text-main); /* Light text for dark background */
  background-color: var(--vip777-background); /* Dark background */
  padding-bottom: 50px; /* Ensure space above footer */
}

/* Hero Section - Main Title Area */
.page-terms-conditions__hero-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background: var(--vip777-card-bg); /* Dark background for the hero section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.page-terms-conditions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-terms-conditions__main-title {
  font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
  font-weight: bold;
  color: var(--vip777-primary-color); /* Brand color for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.page-terms-conditions__tagline {
  font-size: clamp(1em, 2vw, 1.3em);
  color: var(--vip777-text-main);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Content Wrapper */
.page-terms-conditions__content-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  box-sizing: border-box;
}