/*
Theme Name: peakstrikes.com
Author: TrueWhitePages
Author URI: https://truewhitepages.com
Version: 3.4.0
*/
/* ==================== GLOBAL STYLES ==================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== HEADER ==================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo img {
  width: 50px;
  height: auto;
  transition: transform 0.3s ease;
}

.header-logo img:hover {
  transform: scale(1.05);
}

.header-nav {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 500;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #ffffff;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #ffffff;
  padding: 8px;
}

/* ==================== MOBILE MENU ==================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: #0a0a0a;
  z-index: 2000;
  display: none;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu-header img {
  width: 45px;
}

.mobile-close-button {
  font-size: 24px;
  cursor: pointer;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.mobile-close-button:hover {
  transform: scale(1.05);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
}

.mobile-menu nav a {
  padding: 16px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 17px;
  font-weight: 500;
  color: #0a0a0a;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: #3b82f6;
  padding-left: 8px;
}

/* ==================== BUTTONS ==================== */

.primary-button {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.6);
}

.secondary-button {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-3px);
}

/* ==================== HERO SECTION ==================== */

.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 32px 80px;
  text-align: center;
  position: relative;
  opacity: 100;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); 
  pointer-events: none;
}


.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.8));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== FEATURED GAME SECTION ==================== */

.featured-game-section {
  min-height: 90vh;
  background-image: url(https://www.peakstrikes.com/wp-content/themes/peakstrikes-com/img/banner2.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 32px;
  text-align: center;
  position: relative;
}

.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
  z-index: 1;
}

.featured-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.game-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(34, 197, 94, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #4ade80;
}

.game-logo {
  max-width: 450px;
  margin: 0 auto 32px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  border-radius: 25px;
}

.game-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.game-description {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================== SECTION STYLES ==================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-heading {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-heading.centered {
  text-align: center;
  margin-bottom: 48px;
}

.section-paragraph {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

/* ==================== ABOUT SECTION ==================== */

.about-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text {
  padding-right: 20px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ==================== FEATURES SECTION ==================== */

.features-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  padding: 36px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.3);
  border-color: rgba(59, 130, 246, 0.5);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.feature-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== NEWSLETTER SECTION ==================== */

.newsletter-section {
  background: linear-gradient(135deg, #1e3a8a, #7c3aed);
  padding: 80px 0;
}

.newsletter-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1;
  min-width: 250px;
  padding: 16px 24px;
  font-size: 16px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: inherit;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

/* ==================== TESTIMONIALS SECTION ==================== */

.testimonials-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(30, 30, 50, 0.6), rgba(20, 20, 35, 0.8));
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
}

.testimonial-stars {
  font-size: 20px;
  color: #fbbf24;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-size: 15px;
  font-weight: 600;
  color: #a78bfa;
}

/* ==================== FAQ SECTION ==================== */

.faq-section {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  padding: 100px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #a78bfa;
}

.faq-question::after {
  content: '+';
  font-size: 28px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== CONTACT SECTION ==================== */

.contact-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-top: 48px;
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(255, 255, 255, 0.08);
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-textarea {
  height: 160px;
  resize: vertical;
}

.contact-info-item {
  margin-bottom: 32px;
}

.contact-info-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #a78bfa;
}

.contact-info-item p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* ==================== DISCLAIMER SECTION ==================== */

.disclaimer-section {
  background-image: url(https://www.peakstrikes.com/wp-content/themes/peakstrikes-com/img/banner.jpeg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 32px;
  position: relative;
  text-align: center;
}

.disclaimer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
  z-index: 1;
}

.disclaimer-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-heading {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 32px;
  color: #fbbf24;
}

.disclaimer-text {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  text-align: left;
}

/* ==================== FOOTER ==================== */

.site-footer {
  background: #000000;
  padding: 40px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-content p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-size: 15px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #a78bfa;
}

.footer-links span {
  color: rgba(255, 255, 255, 0.3);
}

/* ==================== SUCCESS MESSAGE ==================== */

.success-message {
  display: none;
  padding: 16px 28px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  border-radius: 12px;
  margin-top: 20px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  animation: fadeIn 0.5s ease;
}

.success-message.show {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== GAME PAGE SPECIFIC ==================== */

.game-page-content {
  flex: 1;
  padding-top: 120px;
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
}

.game-page-title {
  margin-bottom: 32px;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.game-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.6);
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==================== POLICY PAGES ==================== */

.policy-page-content {
  padding: 140px 32px 80px;
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 100%);
  min-height: 100vh;
}

.policy-page-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 32px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-page-content h2 {
  margin-top: 48px;
  margin-bottom: 16px;
  font-size: clamp(24px, 3vw, 32px);
  color: #a78bfa;
}

.policy-page-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
}

.policy-page-content ul {
  margin: 20px 0 28px 28px;
  line-height: 1.9;
}

.policy-page-content li {
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.policy-page-content a {
  color: #3b82f6;
  text-decoration: underline;
}

.policy-page-content a:hover {
  color: #60a5fa;
}

/* ==================== CONTACT PAGE SPECIFIC ==================== */

.contact-hero-section {
  height: 50vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 80px;
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.7);
}

.contact-hero-section h1 {
  position: relative;
  color: #ffffff;
  font-size: clamp(36px, 5vw, 56px);
  z-index: 1;
  font-weight: 800;
}

.contact-main-content {
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a0a 100%);
  padding: 80px 32px;
}

/* ==================== RESPONSIVE DESIGN ==================== */

@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .about-text {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 0 24px;
  }
  
  .header-nav {
    display: none;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-input {
    min-width: 100%;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .game-container {
    aspect-ratio: 4/3;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0 16px;
    height: 70px;
  }
  
  .header-logo img {
    width: 40px;
  }
  
  .section-container {
    padding: 0 20px;
  }
  
  .feature-card {
    padding: 28px;
  }
  
  .testimonial-card {
    padding: 24px;
  }
}
