/** auction-accounts-section **/

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

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

.auction-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;
}

/* Accounts Showcase Section */
.accounts-showcase{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.accounts-showcase::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;
}

.account-block{
  position: relative;
  margin-bottom: 30px;
}

.account-card{
  position: relative;
}

.account-card .inner-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);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.account-card .inner-box::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;
}

.account-card .inner-box: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);
}

.account-card .inner-box.featured{
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.account-card .inner-box.featured::before{
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.account-card .inner-box.featured:hover{
  background: rgba(0, 0, 0, 0.9);
  box-shadow: 0 20px 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;
}

.account-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.account-card .inner-box.featured .account-header{
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.account-number{
  font-size: 24px;
  font-weight: 700;
  color: #000000;
}

.account-card .inner-box.featured .account-number{
  color: #ffffff;
}

.status-badge{
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.available{
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.status-badge.pending{
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.status-badge.special{
  background: rgba(0, 0, 0, 0.1);
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.account-card .inner-box.featured .status-badge.available{
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}

.account-details{
  position: relative;
}

.detail-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.account-card .inner-box.featured .detail-item{
  background: rgba(255, 255, 255, 0.1);
}

.detail-item:hover{
  background: rgba(0, 0, 0, 0.05);
}

.account-card .inner-box.featured .detail-item:hover{
  background: rgba(255, 255, 255, 0.15);
}

.detail-item .label{
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.account-card .inner-box.featured .detail-item .label{
  color: #ffffff;
}

.detail-item .value{
  font-size: 18px;
  font-weight: 700;
  color: #000000;
}

.detail-item .value.balance{
  color: #000000;
}

.detail-item .value.settlement{
  color: #000000;
}

.account-card .inner-box.featured .detail-item .value{
  color: #ffffff;
}

.account-card .inner-box.featured .detail-item .value.balance{
  color: #ffffff;
}

.account-card .inner-box.featured .detail-item .value.settlement{
  color: #ffffff;
}

.withdrawal-info{
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 12px;
  margin-top: 25px;
}

.account-card .inner-box.featured .withdrawal-info{
  background: rgba(255, 255, 255, 0.1);
}

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

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

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

.account-card .inner-box.featured .withdrawal-info:hover .icon-box{
  background: rgba(255, 255, 255, 0.3);
}

.withdrawal-info .icon-box i{
  font-size: 20px;
  color: #000000;
}

.account-card .inner-box.featured .withdrawal-info .icon-box i{
  color: #ffffff;
}

.withdrawal-info .text-content h4{
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
}

.account-card .inner-box.featured .withdrawal-info .text-content h4{
  color: #ffffff;
}

.withdrawal-info .text-content p{
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.account-card .inner-box.featured .withdrawal-info .text-content p{
  color: #ffffff;
}

.additional-benefit{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
  padding: 12px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.account-card .inner-box.featured .additional-benefit{
  background: rgba(255, 255, 255, 0.1);
}

.benefit-icon{
  font-size: 20px;
}

.benefit-text{
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
}

.account-card .inner-box.featured .benefit-text{
  color: #ffffff;
}

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

.notice-box{
  position: relative;
}

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

.notice-box .inner-container::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;
}

.notice-box .inner-container: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);
}

.notice-content{
  position: relative;
  z-index: 1;
  text-align: center;
}

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

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

.warning-icon i{
  font-size: 36px;
  color: #000000;
}

.notice-content p{
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-info{
  margin-top: 40px;
}

.contact-info h4{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.contact-methods{
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover{
  background: rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.contact-item i{
  font-size: 18px;
  color: #000000;
}

.contact-item span{
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

/* Animations */
@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) {
  .account-card .inner-box{
    padding: 30px 25px;
  }
  
  .notice-box .inner-container{
    padding: 40px 30px;
  }
  
  .contact-methods{
    flex-direction: column;
    align-items: center;
  }
  
  .contact-item{
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .auction-intro .large-text{
    font-size: 18px;
  }
  
  .auction-intro .highlight-text{
    font-size: 16px;
    padding: 12px 20px;
  }
  
  .account-card .inner-box{
    padding: 25px 20px;
  }
  
  .account-header{
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .detail-item{
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .withdrawal-info{
    flex-direction: column;
    text-align: center;
  }
  
  .withdrawal-info .icon-box{
    margin: 0 auto 15px;
  }
  
  .additional-benefit{
    flex-direction: column;
    text-align: center;
  }
  
  .notice-box .inner-container{
    padding: 30px 25px;
  }
  
  .contact-methods{
    gap: 20px;
  }
}

@media (max-width: 575px) {
  .account-card .inner-box{
    padding: 20px 15px;
  }
  
  .notice-box .inner-container{
    padding: 25px 20px;
  }
  
  .warning-icon{
    width: 60px;
    height: 60px;
  }
  
  .warning-icon i{
    font-size: 28px;
  }
  
  .notice-content p{
    font-size: 16px;
  }
  
  .contact-info h4{
    font-size: 18px;
  }
}
