
/* Power SIP Section */
.power-sip-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  padding: 50px 20px;
}

.power-sip-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.power-sip-card {
  position: relative;
  z-index: 2;
  background: transparent;
  border-radius: 20px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #e7e7e7;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.power-sip-image-area {
  flex: 1 1 40%;
  position: relative;
  min-width: 300px;
}

.power-sip-rocket {
  width: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}

.power-sip-arrow {
  width: 100%;
  height: auto;
  /* margin-top: 100px; */
}

/* .power-sip-coins { */
  /* width: 100%; */
  /* height: 200px; */
  /* background: url('https://i.ibb.co/4Vbnvv7/coin-stack.png') no-repeat center bottom/contain; */
/* } */

.power-sip-content {
  flex: 1 1 60%;
  padding: 20px;
}

.power-sip-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 15px;
}

.power-sip-exclusive {
  color: #00c853;
  font-size: 20px;
}

.power-sip-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.power-sip-features {
  list-style: none;
  margin-bottom: 20px;
}

.power-sip-features li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.power-sip-features li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #00c853;
}

.power-sip-buttons {
  display: flex;
  gap: 15px;
}

.power-sip-setup {
  padding: 14px 28px;
  font-size: 16px;
  background-color: #00c26f;
  border: 2px dashed rgba(0, 194, 111, 0.5);
  color: white;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 194, 111, 0.3);
  transition: all 0.3s ease;
}

.power-sip-setup:hover{
  background-color: #00a95f;
}

.power-sip-read-more {
  background-color: #eee;
  color: #333;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.power-sip-read-more:hover{
  background-color: #ddd;
}

/* Responsive */
@media (max-width: 768px) {
  .power-sip-card {
    flex-direction: column;
    text-align: left;
  }

  .power-sip-image-area, .power-sip-content {
    flex: 1 1 100%;
  }

  .power-sip-rocket {
    position: relative;
    top: 0;
    transform: none;
    margin-bottom: 20px;
  }

  .power-sip-read-more {
    background-color: #eee;
    color: #333;
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
  }

}