:root {
  --primary-color: #fcd505;
  --primary-dark: #e6c000;
  --primary-light: #ffe44d;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #fffbf0;
  --bg-white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: linear-gradient(135deg, var(--bg-light) 0%, #fff8e1 100%);
  min-height: 100vh;
}

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

.main-card {
  background: var(--bg-white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(252, 213, 5, 0.15);
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(252, 213, 5, 0.1);
}

/* Header Styles */
.header {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  color: var(--text-dark);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.8);
}

.brand-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-dark);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.main-slogan {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* Content Styles */
.content {
  padding: 60px 40px;
}

.section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-title::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--primary-color);
  border-radius: 2px;
}

.section-content {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

.section-content p {
  margin-bottom: 15px;
}

/* Table Styles */
.apps-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(252, 213, 5, 0.1);
  border: 1px solid rgba(252, 213, 5, 0.2);
}

.apps-table th,
.apps-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid rgba(252, 213, 5, 0.1);
}

.apps-table th {
  font-weight: 600;
  color: var(--text-dark);
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  font-size: 1.1rem;
  color: var(--text-dark);
}

.apps-table td {
  color: var(--text-light);
  font-size: 1rem;
}

.apps-table tr:hover {
  background: rgba(252, 213, 5, 0.05);
}

/* App Showcase Styles */
.app-showcase {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-light) 100%
  );
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  color: var(--text-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(252, 213, 5, 0.3);
}

.app-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(0,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.app-showcase h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.app-icon-small {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.app-showcase p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
  position: relative;
  z-index: 2;
  color: var(--text-dark);
}

.app-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.app-btn {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.app-btn i {
  margin-right: 8px;
  font-size: 1.1rem;
}

/* Store Button Styles */
.store-button {
  display: inline-block;
  transition: all 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.store-icon {
  height: 50px;
  width: auto;
  display: block;
}

/* Typography Styles */
.motto {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  text-align: center;
}

.tagline {
  color: var(--text-light);
  font-style: italic;
  text-align: center;
  font-size: 1.1rem;
}

/* Contact Styles */
.contact-list {
  list-style: none;
  margin-top: 20px;
}

.contact-list li {
  margin-bottom: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.social-links {
  margin-top: 15px;
}

.social-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Footer Styles */
.footer {
  background: var(--bg-light);
  padding: 30px 40px;
  text-align: center;
  border-top: 1px solid rgba(252, 213, 5, 0.2);
}

.footer p {
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  .header {
    padding: 40px 20px;
  }

  .content {
    padding: 40px 20px;
  }

  .logo-section {
    flex-direction: column;
    gap: 15px;
  }

  .brand-name {
    font-size: 2.2rem;
  }

  .main-slogan {
    font-size: 1.2rem;
  }

  .apps-table {
    font-size: 0.9rem;
  }

  .apps-table th,
  .apps-table td {
    padding: 12px 8px;
  }

  .app-showcase {
    padding: 30px 20px;
  }

  .app-showcase h3 {
    font-size: 1.6rem;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 100%;
    justify-content: center;
  }
}
