:root {
  --primary: #3F704D;    
  --accent: #C2A878;      
  --text: #4A4A4A;         
  --bg: #FAF8F1;           
  --muted: #6E6E6E;
}

* {
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  font-family: 'Segoe UI', Roboto, Arial, sans-serif; 
}

body { 
  background: var(--bg); 
  color: var(--text); 
  line-height: 1.6; 
}

.container { 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 20px; 
}

/* =====================
   LOGO + HEADER
===================== */
.site-logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.site-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.site-header {
  position: relative;
  text-align: center;
  padding: 90px 20px 80px;
  min-height: 350px;
  color: #fff;
  overflow: hidden;
}

.header-slideshow {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.header-slideshow .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade 18s infinite;
}

.header-slideshow .slide:nth-child(1) { animation-delay: 0s; }
.header-slideshow .slide:nth-child(2) { animation-delay: 6s; }
.header-slideshow .slide:nth-child(3) { animation-delay: 12s; }

@keyframes fade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

.header-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(#4C8053, #3F704D, #1B5E20);
  opacity: 0.35;
  z-index: 1;
}

.site-header .container {
  position: relative;
  z-index: 2;
}

.site-header h1 { 
  font-size: 48px; 
  margin-bottom: 16px; 
}

.site-header p { 
  font-size: 20px; 
  margin-bottom: 24px; 
}

/* =====================
   BUTTONS
===================== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn.primary { 
  background: transparent; 
  border: 2px solid #fff; 
  color: #fff; 
}

.btn.primary:hover { 
  background: #b89c60;        
}

.btn.secondary { 
  background: transparent; 
  border: 2px solid #fff; 
  color: #fff; 
}

.btn.secondary:hover { 
  background: #b89c60;  
}

/* =====================
   SCREENSHOTS
===================== */
.screenshots { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 40px; 
  margin: 40px 0; 
  justify-content: center; 
}

.screenshots img { 
  width: 200px; 
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.5); 
  transition: 0.3s; 
}

.screenshots img:hover { 
  transform: scale(1.05); 
}

/* =====================
   FEATURES
===================== */
.features { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 24px; 
  margin: 40px 0; 
}

.feature-card {
  background: rgba(255, 255, 255, 0.7); 
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover { 
  transform: translateY(-5px); 
  box-shadow: 0 8px 16px rgba(0,0,0,0.1); 
}

/* =====================
   DEMO VIDEO
===================== */
.demo-video { 
  margin: 40px 0; 
  text-align: center; 
}

.demo-video iframe, 
.demo-video video { 
  width: 100%; 
  max-width: 800px; 
  height: 450px; 
  border-radius: 12px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); 
}

/* =====================
   FOOTER
===================== */
footer { 
  background: var(--primary); 
  text-align: center; 
  padding: 24px 20px; 
  color: #ffffff; 
  font-size: 14px; 
}

/* =====================
   DOWNLOAD COUNTER & ANALYTICS
===================== */
.download-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 30px 0;
}

.download-counter {
  background-color: var(--accent);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  text-align: center;
  min-width: 160px;
  transition: transform 0.2s ease;
}

.download-counter:hover {
  transform: scale(1.05);
}

.analytics {
    margin-top: 20px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    background: rgba(255, 255, 255, 0.85);
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.analytics h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.analytics-total {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text);
}

.analytics-bar {
    width: 100%;
    height: 20px;
    background-color: #ddd;
    border-radius: 12px;
    overflow: hidden;
}

.analytics-progress {
    height: 100%;
    width: 0;
    background-color: var(--accent);
    border-radius: 12px;
    transition: width 1s ease;
}

/* =====================
   RESPONSIVE MEDIA QUERIES
===================== */
@media (max-width: 992px) {
  .site-header h1 { font-size: 40px; }
  .site-header p { font-size: 18px; }
  .screenshots img { width: 180px; }
  .demo-video iframe, .demo-video video { height: 350px; }
}

@media (max-width: 768px) {
  .site-header {
    padding: 60px 15px 50px;
  }

  .site-logo-title {
    flex-direction: column;
  }

  .site-header h1 { font-size: 32px; }
  .site-header p { font-size: 16px; }

  .btn {
    display: block;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
  }

  .screenshots {
    gap: 20px;
  }

  .screenshots img {
    width: 100%;
    max-width: 160px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .demo-video iframe, .demo-video video {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .site-header h1 { font-size: 28px; }
  .site-header p { font-size: 14px; }
  .screenshots img { max-width: 140px; }
  .btn { padding: 10px 16px; }
}
