
.pricing-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 10px 20px;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 30px;
}

.pricing-description {
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
}

.pricing-description h1 {
  padding-bottom: 20px;
}

.pricing-description p{
  padding-bottom: 20px;
}


.pricing-data-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin-bottom: 50px;
  /* background-color: #111111; */
}

.pricing-data-table th, .pricing-data-table td {
  padding: 12px 15px;
  text-align: left;
}

.pricing-data-table th {
  /* background-color: #111111; */
  color: #fff;
  text-align: left;
  border-bottom: 2px solid #303030;
}

.pricing-data-table td {
  /* background-color: #111111; */
  color: #fff;
  /* border-bottom: 1px solid #76b65e; */
}

.pricing-data-table td + td {
  border-left: 1px solid #303030;
}

.pricing-card {
  background: linear-gradient(135deg, #2a2a2a 0%, #1e1e1e 100%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(81, 107, 255, 0.2);
  padding: 40px 50px;
  text-align: center;
  max-width: 600px;
  border: 2px solid transparent;
  background-clip: padding-box;
  margin-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(81, 107, 255, 0.1) 0%, rgba(111, 133, 255, 0.05) 100%);
  border-radius: 20px;
  z-index: -1;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #516BFF, #6f85ff, #8a9eff);
  border-radius: 22px;
  z-index: -2;
}

.pricing-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  background: linear-gradient(135deg, #516BFF, #6f85ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(81, 107, 255, 0.3);
}


.input-group {
  margin: 30px 0;
}

.input-group label {
  display: block;
  margin-bottom: 10px;
}

.input-group input {
  width: calc(100% - 10px);
  padding: 5px 5px 5px 10px;
  font-size: 16px;
  border: 1px solid #303030;
  border-radius: 10px;
  /* background-color: #000; */
  height: 40px;
  color: white;
}

.result-group {
  margin: 20px 0;
}

.result-group p {
  margin: 5px 0;
  font-size: 18px;
  color: #ffffff;
}

.pricing-button {
  display: inline-block;
  padding: 18px 40px;
  color: #fff;
  background: linear-gradient(135deg, #516BFF, #6f85ff);
  border-radius: 15px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(81, 107, 255, 0.4);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.pricing-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.pricing-button:hover::before {
  width: 300px;
  height: 300px;
}

.pricing-button:hover {
  background: linear-gradient(135deg, #6f85ff, #8a9eff);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(81, 107, 255, 0.5);
}

.pricing-button:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(81, 107, 255, 0.4);
}

.pricing-button * {
  position: relative;
  z-index: 1;
}


.amount-input {
  width: 100%;
  max-width: 200px;
  padding: 15px 20px;
  font-size: 18px;
  border: 2px solid #404040;
  border-radius: 15px;
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
  height: 55px;
  color: white;
  box-sizing: border-box;
  margin: 0px 10px 15px 0px;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.amount-input:focus {
  border-color: #516BFF;
  outline: none;
  box-shadow: 0 0 0 3px rgba(81, 107, 255, 0.2), inset 0 2px 5px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}
.ccy-input {
  width: 100%;
  min-width: 80px;
  max-width: 80px;
  font-size: 16px;
  font-weight: 600;
  height: 55px;
  border: 2px solid #404040;
  border-radius: 15px;
  padding: 15px 10px;
  box-sizing: border-box;
  margin: 0px 10px 15px 0px;
  background: linear-gradient(135deg, #516BFF, #6f85ff);
  color: white;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(81, 107, 255, 0.3);
}

.ccy-input:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(81, 107, 255, 0.4);
}
.amount-input:focus, .ccy-input:focus {
  border-color: white;
  outline: none;
}