@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --eepis-bg: #ECE0E8;
  --eepis-primary: #1E0B36;
  --eepis-secondary: #CA3782;
  --eepis-text: #230A1B;
  --eepis-text-light: #371e2f;
  --eepis-white: #ffffff;
  --eepis-gray-light: #f8f4f7;
  --eepis-gray: #9e8c97;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--eepis-text);
  overflow-x: hidden;
}

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

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(30, 11, 54, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  background: transparent;
  color: var(--eepis-text);
  border: none;
  box-shadow: none;
  font-weight: 500;
  margin-left: 0.5rem;
}

.nav-links .btn:hover {
  background: transparent;
  color: var(--eepis-secondary);
  transform: none;
  box-shadow: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--eepis-text);
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--eepis-secondary);
}

.btn {
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  box-shadow:
    0 1px 2px rgba(30, 11, 54, 0.06),
    0 2px 4px rgba(30, 11, 54, 0.08);
}

.btn-primary {
  background: var(--eepis-primary);
  color: var(--eepis-white);
  border: 1px solid var(--eepis-primary);
}

.btn-primary:hover {
  background: var(--eepis-secondary);
  border-color: var(--eepis-secondary);
  transform: translateY(-1px);
  box-shadow:
    0 2px 4px rgba(30, 11, 54, 0.08),
    0 4px 8px rgba(30, 11, 54, 0.12),
    0 8px 16px rgba(30, 11, 54, 0.14);
}

.btn-secondary {
  background: transparent;
  color: var(--eepis-primary);
  border: 1px solid rgba(30, 11, 54, 0.2);
}

.btn-secondary:hover {
  background: rgba(30, 11, 54, 0.04);
  border-color: var(--eepis-primary);
  transform: translateY(-1px);
}

footer {
  background: var(--eepis-primary);
  color: var(--eepis-white);
  padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--eepis-secondary);
}

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

.store-badges {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.store-badge {
  display: inline-block;
  height: 50px;
  padding: 0.5rem 1.5rem;
  background: var(--eepis-primary);
  border-radius: 8px;
  text-decoration: none;
  color: var(--eepis-white);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.store-badge:hover {
  background: var(--eepis-secondary);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .nav-links {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 0 15px;
  }

  .store-badges {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}
