body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #fff2f5 0%, #ffe9e4 45%, #ffe6a7 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  color: #222;
}
.contact-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  margin: 2rem auto 2rem auto;
  max-width: 1000px;
}
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pipshark-logo {
  width: 54px;
  height: auto;
  margin-right: 0.7rem;
}
.nav-links .nav-btn {
  background: linear-gradient(90deg, #e94560 30%, #ffb347 100%);
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  margin-left: 1rem;
}
.nav-links .nav-btn:hover {
  background: linear-gradient(90deg, #ffb347 40%, #e94560 100%);
  transform: scale(1.05);
}
.contact-container {
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  padding: 2.5rem;
  text-align: center;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 8px 32px 0 rgba(233,69,96,0.08);
  border-radius: 1.5rem;
  border: 1px solid rgba(233,69,96,0.07);
}
.subtitle {
  font-size: 1.17rem;
  color: #e94560;
  margin-bottom: 2.1rem;
}
.icon-row {
  display: flex;
  justify-content: center;
  gap: 2.3rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.contact-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 1.13rem;
  color: #e94560;
  font-weight: 600;
  transition: transform 0.18s, box-shadow 0.18s;
  will-change: transform;
}
.icon-circle {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e94560 10%, #ffb347 80%);
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(233,69,96,0.13), 0 0 0 7px #fff8;
  margin-bottom: 0.7rem;
  transition: box-shadow 0.2s, background 0.2s;
  position: relative;
}
.contact-icon:hover .icon-circle {
  box-shadow: 0 8px 36px 0 rgba(249,212,35,0.23);
  background: linear-gradient(135deg, #ffb347 10%, #e94560 80%);
}
.icon-circle svg {
  width: 46px;
  height: 46px;
  display: block;
  margin: 0;
}
.contact-icon span {
  margin-top: 0.5rem;
  color: #e94560;
}
.shake {
  animation: shake-pause 2.4s cubic-bezier(.36,.07,.19,.97) infinite;
}
@keyframes shake-pause {
  0%, 100% { transform: translateX(0); }
  3%, 7% { transform: translateX(-9px); }
  5%, 9% { transform: translateX(9px); }
  11%, 15% { transform: translateX(-7px); }
  13%, 17% { transform: translateX(7px); }
  18%, 100% { transform: translateX(0); }
}
/* The above shakes twice (left-right-left-right) then pauses for ~2s */
.contact-form-section {
  background: rgba(255,255,255,0.93);
  padding: 2rem 1rem 1.5rem 1rem;
  border-radius: 1.2rem;
  margin: 1.5rem auto 2.5rem auto;
  max-width: 500px;
  box-shadow: 0 4px 18px rgba(233,69,96,0.08);
}
.contact-form h3 {
  margin-bottom: 1.2rem;
  color: #E94560;
}
.contact-form input, .contact-form textarea {
  width: 95%;
  padding: 0.8rem;
  margin: 0.6rem 0;
  border: 1px solid #ffb34744;
  border-radius: 0.9rem;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.68);
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: #E94560;
}
.trading-btn {
  background: linear-gradient(90deg, #e94560 30%, #ffb347 100%);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(233,69,96,0.12);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.trading-btn:hover {
  background: linear-gradient(90deg, #ffb347 40%, #e94560 100%);
  transform: translateY(-2px) scale(1.03);
}
.support-info {
  margin-top: 2.5rem;
  padding: 1.5rem 1rem;
  text-align: left;
  background: rgba(255,255,255,0.89);
  border-radius: 1.1rem;
  box-shadow: 0 1px 6px 0 rgba(233,69,96,0.07);
}
.support-info h4 {
  color: #E94560;
}
.support-info ul {
  margin: 0.5rem 0 0 1.2rem;
  padding: 0;
}
footer {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(6px);
  border-top: 1.5px solid #e9456015;
  padding: 2rem 0 0 0;
  margin-top: 4rem;
  color: #222;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: auto;
}
.footer-section {
  flex: 1 1 180px;
  margin-bottom: 1rem;
}
.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: #E94560;
}
.footer-section .quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.footer-section .quick-links a {
  color: #E94560;
  text-decoration: none;
  font-size: 1.05rem;
  padding: 0.3rem 0.5rem;
  border-radius: 0.7rem;
  transition: background 0.18s, color 0.18s;
  width: fit-content;
}
.footer-section .quick-links a:hover {
  background: #F9D423;
  color: #fff;
}
.small-social-icons a {
  color: #E94560;
  font-size: 1.4rem;
  margin-right: 0.8rem;
  transition: color 0.2s;
}
.small-social-icons a:hover {
  color: #F9D423;
}
.footer-bottom {
  text-align: center;
  color: #aaa;
  font-size: 0.9rem;
  margin-top: 2rem;
  padding-bottom: 0.7rem;
}
.dev-link {
  display: inline-block;
  color: #E94560;
  margin-top: 1rem;
  font-size: 1rem;
  transition: color 0.2s;
}
/* --- Responsive Universal Header --- */
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem 1rem 1rem;
  position: relative;
  z-index: 1200;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: #E94560;
  letter-spacing: 2px;
  text-decoration: none;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 1.07rem;
  z-index: 10;
}
nav.main-nav a, .dev-link {
  text-decoration: none;
  color: #E94560;
  font-weight: 600;
  transition: color 0.3s;
}
nav.main-nav a:hover, .dev-link:hover {
  color: #F9D423;
}
.trading-btn {
  background: linear-gradient(90deg, #e94560 30%, #ffb347 100%);
  color: #fff;
  border: none;
  border-radius: 1.5rem;
  padding: 0.7rem 1.7rem;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(233,69,96,0.16);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.trading-btn:hover {
  background: linear-gradient(90deg, #ffb347 40%, #e94560 100%);
  transform: translateY(-2px) scale(1.03);
}
/* Hamburger icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  margin-left: 1rem;
}
.menu-icon span {
  display: block;
  height: 4px;
  margin: 5px 0;
  background: #E94560;
  border-radius: 2px;
  transition: 0.3s;
}
/* X close icon */
.close-icon {
  display: none;
  position: fixed;
  top: 28px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #E94560;
  z-index: 1200;
  cursor: pointer;
  transition: color 0.2s;
}
.close-icon.show {
  display: block;
}

/* --- Mobile Navigation --- */
@media (max-width: 900px) {
  nav.main-nav {
    position: fixed;
    top: 0; right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: rgba(255,255,255,0.99);
    box-shadow: -2px 0 28px 0 rgba(73,160,157,0.13);
    flex-direction: column;
    align-items: flex-start;
    padding: 4.5rem 2rem 2rem 2rem;
    gap: 1.4rem;
    font-size: 1.2rem;
    transition: right 0.36s cubic-bezier(.75,0,.25,1);
    z-index: 1100;
  }
  nav.main-nav.nav-active {
    right: 0;
  }
  nav.main-nav a, nav.main-nav button {
    width: 100%;
    text-align: left;
    padding: 0.6rem 0 0.6rem 0.3rem;
    font-size: 1.14rem;
    border-radius: 0.6rem;
    margin: 0;
  }
  .menu-icon {
    display: flex;
  }
  .header-flex {
    padding: 1.1rem 1rem 1.1rem 1rem;
  }
  .close-icon {
    display: none;
  }
  body.nav-open {
    overflow: hidden;
  }
}
/* Make sure .container is always 100% width on mobile */
@media (max-width: 900px) {
  .container {
    width: 100%;
    max-width: 100vw;
    padding: 0;
  }
}
@media (max-width: 900px) {
  .contact-container { padding: 1rem; }
  .icon-row { flex-direction: column; gap: 1.2rem; }
  .footer-container { flex-direction: column; align-items: center; }
  .contact-nav { flex-direction: column; }
}
