/* ========== Font Face ========== */
@font-face {
  font-family: 'Gotham Rounded';
  src: url('/fonts/gothamrnd_bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('/fonts/gothamrnd_medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('/fonts/gothamrnd_book.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham Rounded';
  src: url('/fonts/gothamrnd_light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

/* ========== Variables ========== */
:root {
  /* App Color Palette */
  --color-primary: #4868FF;
  --color-primary-light: #6B85FF;
  --color-primary-dark: #3652E6;
  
  --color-text-dark: #1a1a2e;
  --color-text-medium: #4a4a5e;
  --color-text-light: #6a6a7e;
  
  --color-bg: #ffffff;
  
  /* Fonts */
  --font-primary: 'Gotham Rounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes */
  --font-size-h1: clamp(2.5rem, 5vw, 4rem);
  --font-size-h2: clamp(2rem, 4vw, 3rem);
  --font-size-body: clamp(1rem, 1.5vw, 1.125rem);
  
  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
}

/* ========== Reset & Base ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-body);
  line-height: 1.6;
  color: var(--color-text-dark);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Typography ========== */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--font-size-h1);
  color: var(--color-text-dark);
}

h2 {
  font-size: var(--font-size-h2);
  color: var(--color-text-dark);
}

p {
  color: var(--color-text-medium);
  font-weight: 400;
}

/* ========== Hero Header Section ========== */
.hero-header {
  background: var(--color-primary);
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle 600px at 0% 200px, rgba(213, 197, 255, 0.15), transparent),
    radial-gradient(circle 600px at 100% 200px, rgba(213, 197, 255, 0.15), transparent);
  background-size: 20px 20px, 20px 20px, 100% 100%, 100% 100%;
  min-height: 55vh;
  padding: 0rem;
  display: flex;



}

.hero-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
 
}

.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  padding:1rem
}

.hero-icon {
  width: 250px;
  height: 80px;

  transition: transform 0.3s ease;
}

.hero-icon:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.play-button {
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.play-button:hover {
  transform: translateY(-3px);
}

.play-badge {
  height: 100px;
  width: auto;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-center {
  color: white;
  max-width: 800px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 2rem;
  line-height: 1.1;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screenshots-container {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.hero-screenshot {


  height: auto;
  border-radius: 30px;
width: 350px;
height: 650px;
margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.hero-screenshot:hover {
  transform: scale(1.03);
}

/* ========== Screenshots Section ========== */
.screenshots-section {
margin-top: 1rem;
}

.screenshots-container {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 24px;
}

.screenshots-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 20px;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  justify-items: center;
}

.screenshot-item {
  text-align: center;
}

.screenshot-image {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.screenshot-image:hover {
  transform: scale(1.03);
}

.screenshot-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--color-text-dark);
  margin: 0;
}

.features-container {
  max-width: 1400px;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.features-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-text-dark);
  text-align: center;
    margin-top: 24px;
  margin-bottom: 4rem;
}

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

.feature-box {
  background: radial-gradient(125% 125% at 50% 90%, #fff 40%, #4868FF 100%);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(72, 104, 255, 0.15);
}

.feature-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.feature-desc {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  color: var(--color-text-medium);
  line-height: 1.6;
  margin: 0;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-primary);
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle 600px at 0% 200px, rgba(213, 197, 255, 0.15), transparent),
    radial-gradient(circle 600px at 100% 200px, rgba(213, 197, 255, 0.15), transparent);
  background-size: 20px 20px, 20px 20px, 100% 100%, 100% 100%;
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.footer-text {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: white;
}

.footer-desc {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-download-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-download-btn:hover {
  transform: translateY(-3px);
}

.footer-play-badge {
  height: 60px;
  width: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* ========== Responsive ========== */
@media (max-width: 968px) {
  .hero-content {
    padding: 0rem 0;
  }

  .hero-center {
    max-width: 100%;
  }

  .hero-top {
    margin-bottom: 2rem;
  }

  .screenshots-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-left {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero-header {
    
    min-height: auto;
  }

  .hero-top {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .play-badge {
    height: 55px;
  }

  .hero-icon {
    width: 250px;
    height: 80px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 1.5rem;
  }

  .hero-description {
    font-size: clamp(1rem, 4vw, 1.1rem);
  }

  .screenshots-section {
    padding: 3rem 1.5rem;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-section {
    padding: 3rem 1.5rem;
  }

  .feature-box {
    padding: 2rem 1.5rem;
  }

  .site-footer {
    padding: 2rem 1.5rem 1.5rem;
  }

  .footer-content {
    gap: 1rem;
  }

  .footer-icon {
    width: 50px;
    height: 50px;
  }

  .footer-play-badge {
    height: 50px;
  }
}
