:root {
  --accent: #EAB308; /* Matte Gold */
  --accent-hover: #CA8A04;
  --bg-color: #0F172A; /* Slate 900 */
  --card-bg: #1E293B; /* Slate 800 */
  --text-color: #F8FAFC; /* Slate 50 */
  --text-muted: #94A3B8; /* Slate 400 */
  --border-color: #334155; /* Slate 700 */
  --max-width: 720px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
  padding: 0;
  margin: 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-color);
}

.brand-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* Main */
main {
  margin-bottom: 60px;
}

/* Hero Section */
.hero {
  text-align: center;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px auto;
}

/* Styled Button */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--accent);
  color: #0F172A;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.2);
  border: none;
  cursor: pointer;
}

.btn-contact:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
}

/* Screenshots Showcase */
.screenshot-showcase {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 20px 0;
  margin: 40px 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) var(--bg-color);
}

.screenshot-showcase::-webkit-scrollbar {
  height: 6px;
}

.screenshot-showcase::-webkit-scrollbar-thumb {
  background-color: var(--border-color);
  border-radius: 3px;
}

.screenshot-card {
  flex: 0 0 240px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.screenshot-card:hover {
  transform: translateY(-4px);
}

.screenshot-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Features */
.features {
  margin-bottom: 60px;
}

.section-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 24px;
  text-align: center;
  color: #FFFFFF;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--accent);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Contact */
.contact {
  text-align: center;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 40px 20px;
  border-radius: 16px;
  margin-bottom: 60px;
}

.contact h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.contact p {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 24px auto;
  font-size: 16px;
}

/* Footer */
footer {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.copyright {
  font-size: 13px;
  color: var(--text-muted);
}

/* Legal Content styling */
.legal-content h1 {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.legal-content .copyright {
  margin-bottom: 30px;
  text-align: left;
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--accent);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.legal-content th, .legal-content td {
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: left;
}

.legal-content th {
  background-color: var(--card-bg);
  color: #FFFFFF;
}

.back-link {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.back-link:hover {
  color: var(--accent-hover);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (min-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
