
/* styles.css */
.navbar {
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  border-bottom: 1px solid #e5e7eb;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.navbar-container {
    max-width: 1300px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar-brand {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  text-decoration: none;
}
.navbar-links {
  display: flex;
  gap: 1.5rem;
}
.navbar-link {
  color: #374151;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}
.navbar-link:hover {
  color: #111827;
}
@media (max-width: 768px) {
  .navbar-links {
    display: none;
  }
}


/* Hide links and show hamburger on mobile */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    .navbar-links.active {
        display: flex;
    }
    .navbar-toggle {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    .navbar-toggle-icon {
        /*width: 30px;*/
        /*height: 3px;*/
        /*background: #333;*/
        /*display: block;*/
        /*margin: 6px 0;*/
        /*border-radius: 2px;*/
        /*box-shadow: 0 2px #333, 0 4px #333;*/
    }
}
@media (min-width: 769px) {
    .navbar-toggle {
        display: none;
    }
}

.footer-section {
  background: #0f172a;
  color: #fff;
  padding: 3rem 0;
}
.footer-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #fde047;
  margin-bottom: 1rem;
}
.footer-desc {
  color: #cbd5e1;
  line-height: 1.7;
}
.footer-subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer-socials {
  display: flex;
  gap: 1rem;
}
.footer-social-link {
  color: #cbd5e1;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer-social-link:hover {
  color: #fde047;
}
.footer-icon {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-separator {
  height: 1px;
  background: #334155;
  margin-bottom: 2rem;
}
.footer-copyright {
  text-align: center;
  color: #94a3b8;
  font-size: 0.95rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

.unitycoin-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.unitycoin-navbar {
  background: #0f172a;
  color: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.unitycoin-navbar-brand {
  color: #facc15;
}
.unitycoin-main {
  flex: 1 1 0%;
  display: flex;
  flex-direction: column;
}
.unitycoin-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #134e4a 100%);
  padding: 5rem 1rem 4rem 1rem;
  text-align: center;
}
.unitycoin-hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .unitycoin-hero-title {
    font-size: 3.5rem;
  }
}
.unitycoin-hero-subtitle {
  font-size: 1.25rem;
  color: #fde047;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .unitycoin-hero-subtitle {
    font-size: 1.5rem;
  }
}
.unitycoin-hero-desc {
  font-size: 1.125rem;
  color: #bae6fd;
  max-width: 40rem;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
}
.unitycoin-features {
  background: #fff;
  padding: 4rem 1rem;
}
.unitycoin-features-container {
  max-width: 72rem;
  margin: 0 auto;
}
.unitycoin-features-header {
  text-align: center;
  margin-bottom: 3rem;
}
.unitycoin-features-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .unitycoin-features-title {
    font-size: 2.5rem;
  }
}
.unitycoin-features-desc {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 32rem;
  margin: 0 auto;
}
.unitycoin-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .unitycoin-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .unitycoin-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.unitycoin-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(30, 41, 59, 0.10);
  border: 2px solid #e0e7ef;
  transition: box-shadow 0.2s, border-color 0.2s;
  padding: 2rem 1.5rem;
}
.unitycoin-card-blue {
  border-color: #dbeafe;
}
.unitycoin-card-blue:hover {
  border-color: #60a5fa;
}
.unitycoin-card-green {
  border-color: #bbf7d0;
}
.unitycoin-card-green:hover {
  border-color: #4ade80;
}
.unitycoin-card-purple {
  border-color: #e9d5ff;
}
.unitycoin-card-purple:hover {
  border-color: #a78bfa;
}
.unitycoin-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  justify-content: center;
}
.unitycoin-icon {
  font-size: 2rem;
  display: inline-block;
  border-radius: 0.5rem;
  padding: 0.5rem;
  background: #f1f5f9;
}
.unitycoin-icon-blue {
  color: #2563eb;
  background: #dbeafe;
}
.unitycoin-icon-green {
  color: #16a34a;
  background: #bbf7d0;
}
.unitycoin-icon-purple {
  color: #9333ea;
  background: #e9d5ff;
}
.unitycoin-card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1e293b;
}
.unitycoin-card-content p {
  color: #64748b;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
.unitycoin-cta {
  background: #f9fafb;
  padding: 4rem 1rem;
}
.unitycoin-cta-container {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.unitycoin-cta-title {
  font-size: 2rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .unitycoin-cta-title {
    font-size: 2.5rem;
  }
}
.unitycoin-cta-desc {
  font-size: 1.125rem;
  color: #64748b;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.unitycoin-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #facc15, #fb923c);
  color: #1e293b;
  font-weight: 600;
  border-radius: 0.75rem;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(251, 146, 60, 0.10);
  transform: scale(1);
  border: none;
  cursor: pointer;
}
.unitycoin-cta-btn:hover {
  background: linear-gradient(to right, #fde047, #f97316);
  transform: scale(1.05);
}
.unitycoin-cta-btn-icon {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.unitycoin-footer {
  background: #0f172a;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.footer-location {
  text-align: center;
  color: #fde047;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.footer-extra {
  text-align: center;
  margin: 0.5rem 0;
}
.footer-extra a {
  color: #fde047;
  text-decoration: underline;
  font-weight: 500;
}
