/** deposit-bonus-section **/

.deposit-bonus-intro{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.deposit-bonus-intro .large-text{
  font-size: 20px;
  line-height: 1.6;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 20px;
}

.deposit-bonus-intro .highlight-text{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
  padding: 15px 25px;
  border-radius: 8px;
  display: inline-block;
  border-left: 4px solid #000000;
}

/* Bonus Structure Section */
.bonus-structure{
  position: relative;
  background: #ffffff;
}

.bonus-card{
  position: relative;
  margin-bottom: 30px;
}

.bonus-card .inner-box{
  background: #ffffff;
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bonus-card .inner-box:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: #000000;
}

.bonus-card .inner-box.featured{
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  border: none;
}

.bonus-card .inner-box.featured:hover{
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.featured-badge{
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000000;
  color: #ffffff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.bonus-card .inner-box.featured .icon-box{
  background: rgba(255, 255, 255, 0.2);
}

.bonus-card:hover .icon-box{
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.2);
}

.bonus-card .icon-box i{
  font-size: 30px;
  color: #000000;
}

.bonus-card .inner-box.featured .icon-box i{
  color: #ffffff;
}

.bonus-card h3{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.bonus-card .inner-box.featured h3{
  color: #ffffff;
}

.bonus-card:hover h3{
  color: #000000;
}

.bonus-card .inner-box.featured:hover h3{
  color: #ffffff;
}

.deposit-amount{
  margin-bottom: 25px;
}

.deposit-amount .currency{
  font-size: 24px;
  font-weight: 600;
  color: #666666;
  vertical-align: top;
}

.bonus-card .inner-box.featured .deposit-amount .currency{
  color: rgba(255, 255, 255, 0.8);
}

.deposit-amount .amount{
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.bonus-card .inner-box.featured .deposit-amount .amount{
  color: #ffffff;
}

.bonus-info{
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  border: 1px dashed #000000;
}

.bonus-card .inner-box.featured .bonus-info{
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.bonus-percent{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.gift-icon{
  font-size: 24px;
  animation: bounce 2s infinite;
}

.percent{
  font-size: 28px;
  font-weight: 700;
  color: #000000;
}

.bonus-card .inner-box.featured .percent{
  color: #ffffff;
}

.bonus-text{
  font-size: 16px;
  font-weight: 600;
  color: #666666;
}

.bonus-card .inner-box.featured .bonus-text{
  color: rgba(255, 255, 255, 0.9);
}

.total-balance{
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

.bonus-card .inner-box.featured .total-balance{
  border-top-color: rgba(255, 255, 255, 0.2);
}

.total-balance .label{
  display: block;
  font-size: 14px;
  color: #666666;
  margin-bottom: 5px;
}

.bonus-card .inner-box.featured .total-balance .label{
  color: rgba(255, 255, 255, 0.8);
}

.total-balance .balance{
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.bonus-card .inner-box.featured .total-balance .balance{
  color: #ffffff;
}

/* Important Conditions Section */
.important-conditions{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.conditions-box{
  position: relative;
}

.conditions-box .inner-container{
  background: #ffffff;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.conditions-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.condition-item{
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e5e5e5;
}

.condition-item:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.condition-item .icon-box{
  position: relative;
  min-width: 60px;
  height: 60px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  transition: all 0.3s ease;
}

.condition-item:hover .icon-box{
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.condition-item .icon-box i{
  font-size: 24px;
  color: #000000;
}

.condition-item .text-content{
  flex: 1;
}

.condition-item h4{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.condition-item:hover h4{
  color: #000000;
}

.condition-item p{
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* CTA Section */
.cta-section{
  position: relative;
  background: #000000;
  border-radius: 10px;
  padding: 60px 40px;
  color: #ffffff;
  text-align: center;
}

.cta-section .inner-container{
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h3{
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.cta-section p{
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 35px;
  color: #cccccc;
}

.cta-section .btn-box{
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-section .theme-btn{
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-section .btn-one{
  background: #ffffff;
  color: #000000;
  border: none;
}

.cta-section .btn-one:hover{
  background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-section .btn-two{
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cta-section .btn-two:hover{
  background: #ffffff;
  color: #000000;
  transform: translateY(-2px);
}

/* How to Claim Section */
.how-to-claim-section{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  overflow: hidden;
}

.how-to-claim-section::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"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="25" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(0,0,0,0.01)"/></svg>');
  background-size: 300px 300px;
  animation: float-bg 25s ease-in-out infinite;
}

.steps-container{
  position: relative;
  z-index: 1;
}

.step-card{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.step-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.step-number{
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: #000000;
  color: #ffffff;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.step-card:hover .step-number{
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-card h4{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.step-card:hover h4{
  color: #000000;
}

.step-card p{
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

.note-box{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.note-box::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.6) 100%);
}

.note-box::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.note-box:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.note-content{
  position: relative;
  z-index: 1;
}

.note-content .icon-box{
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.note-box:hover .icon-box{
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.note-content .icon-box i{
  font-size: 30px;
  color: #000000;
}

.note-content h4{
  font-size: 22px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.note-content p{
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Animations */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes float-bg {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .bonus-card .inner-box{
    padding: 30px 20px;
  }
  
  .conditions-box .inner-container{
    padding: 30px 25px;
  }
  
  .cta-section{
    padding: 40px 30px;
  }
  
  .cta-section .btn-box{
    flex-direction: column;
    align-items: center;
  }
  
  .cta-section .theme-btn{
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 767px) {
  .deposit-bonus-intro .large-text{
    font-size: 18px;
  }
  
  .deposit-bonus-intro .highlight-text{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .bonus-card .inner-box{
    padding: 25px 15px;
  }
  
  .deposit-amount .amount{
    font-size: 28px;
  }
  
  .percent{
    font-size: 24px;
  }
  
  .total-balance .balance{
    font-size: 20px;
  }
  
  .condition-item{
    flex-direction: column;
    text-align: center;
  }
  
  .condition-item .icon-box{
    margin: 0 auto 20px;
  }
  
  .cta-section h3{
    font-size: 24px;
  }
  
  .cta-section p{
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .bonus-card .inner-box{
    padding: 20px 15px;
  }
  
  .conditions-box .inner-container{
    padding: 25px 20px;
  }
  
  .cta-section{
    padding: 30px 20px;
  }
}
