:root {
   --card-bg: #1f122e;
   --shadow-dark: rgba(0, 0, 0, 0.6);
   --accent-color: #e040fb;
   --text-light: #f5eef9;
   --text-muted: #c9a4e0;
   --gradient-end: #ab47bc;
   --gradient-start: #7b1fa2;
}
.feature-card:nth-child(1) {
    background: linear-gradient(150deg, hsla(230, 11%, 11%, 1) 0%, hsla(192, 61%, 16%, 1) 100%);
}
.feature-card:nth-child(2) {
    background: linear-gradient(150deg, hsla(283, 12%, 11%, 1) 0%, hsla(307, 51%, 20%, 1) 100%);
}
.feature-card:nth-child(3) {
    background: linear-gradient(150deg, hsla(228, 9%, 11%, 1) 0%, hsla(124, 39%, 14%, 1) 100%);
}
.feature-card:nth-child(4) {
    background: linear-gradient(150deg, hsla(280, 6%, 10%, 1) 0%, hsla(8, 44%, 22%, 1) 100%);
}

.daily-reward-container {
   display: block;
   width: 100%;
   background-color: var(--card-bg);
   border-radius: 15px;
   padding: 0;
   margin-bottom: 0;
   box-shadow: 0 6px 20px var(--shadow-dark);
   color: var(--text-light);
   background-image: linear-gradient(135deg, rgba(31, 18, 46, 0.9), rgba(31, 18, 46, 0.95)), url('https://i.ibb.co/SxP9M3v/PAGESKIN.jpg');
   background-size: cover;
   background-position: center;
   position: relative;
   overflow: hidden;
   border: 1px solid rgba(224, 64, 251, 0.2);
   z-index: 10;
}

.daily-reward-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 30px;
   position: relative;
   z-index: 2;
   height: 288px;
   background: url(https://ik.imagekit.io/528ufvab6/stream/Assets/maniceysi.png?updatedAt=1752364148557) no-repeat;
   background-size: 100% 100%;
}

.daily-reward-left {
   flex-basis: 60%;
   /* display: none; */
}

.daily-badge {
   background: linear-gradient(135deg, #41f6c0, #41f5bf57);
   color: white;
   padding: 4px 12px;
   border-radius: 20px;
   font-size: 10px;
   font-weight: 700;
   display: inline-block;
   margin-bottom: 10px;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
   display: none;
}

.daily-reward-left h1 {
   font-size: 24px;
   font-weight: 800;
   margin: 0 0 12px 0;
   line-height: 1.2;
   background: white;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   display: none;
}

.countdown-timer {
   display: flex;
   align-items: center;
   gap: 8px;
   margin-top: 20%;
}

.time-block {
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
   padding: 0px 15px;
   border-radius: 10px;
   text-align: center;
   min-width: 65px;
   border: 1px solid rgba(224, 64, 251, 0.4);
   backdrop-filter: blur(10px);
   box-shadow: 0 0 10px;
}

.time-block span {
   display: block;
   font-weight: bold;
}

.time-block .time-value {
   font-size: 20px;
   color: var(--text-light);
   font-weight: 700;
   text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.time-block .time-label {
   font-size: 9px;
   color: #ffffffb3;
   text-transform: uppercase;
   margin-top: 3px;
   letter-spacing: 0.5px;
}

.time-separator {
   font-size: 24px;
   font-weight: bold;
   color: white;
   text-shadow: 0 0 8px rgba(224, 64, 251, 0.4);
}

.collect-button {
   background: linear-gradient(135deg, #00bfff, #0099cc);
   color: white;
   border: none;
   padding: 12px 35px;
   border-radius: 10px;
   font-size: 15px;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
   text-transform: uppercase;
   letter-spacing: 0.5px;
   display: none;
}

.collect-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
   background: linear-gradient(135deg, #00d4ff, #00a8d4);
}

.daily-reward-right {
   flex-basis: 40%;
   display: flex;
   justify-content: center;
   align-items: center;
   position: relative;
}

.daily-reward-right img {
   max-width: 220px;
   height: auto;
   object-fit: contain;
   filter: drop-shadow(0 8px 20px rgba(224, 64, 251, 0.25));
   animation: float 3s ease-in-out infinite;
   display: none;
}

@keyframes float {
   0%, 100% { transform: translateY(0); }
   50% { transform: translateY(-8px); }
}

.reward-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
    margin-top: -9px;
    position: relative;
    z-index: 5;
}

.feature-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(224, 64, 251, 0.1);
    backdrop-filter: blur(5px);
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
   opacity: 0;
   transition: opacity 0.3s ease;
}

.feature-card:hover {
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
   border-color: rgba(224, 64, 251, 0.3);
   background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.feature-card:hover::before {
   opacity: 1;
}

.feature-card .icon {
    font-size: 18px;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-card:hover .icon {
   transform: scale(1.1) rotate(5deg);
}

/* Card Specific Colors with enhanced gradients */


.feature-card span {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-light);
    flex: 1;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
   .reward-features {
       grid-template-columns: repeat(2, 1fr);
   }
   
   .feature-card {
       min-height: 80px;
   }
}

@media (max-width: 768px) {
   .daily-reward-content {
       flex-direction: column;
       padding: 20px;
   }
   
   .daily-reward-left {
       flex-basis: 100%;
       text-align: center;
   }
   
   .daily-reward-right {
       margin-top: 15px;
   }
   
   .daily-reward-right img {
       max-width: 180px;
   }
   
   .reward-features {
       grid-template-columns: repeat(2, 1fr);
       gap: 10px;
   }
   
   .feature-card {
       padding: 10px;
       min-height: 50px;
       gap: 8px;
   }
   
   .countdown-timer {
       justify-content: center;
       margin-top: 60% !important;
   }
}
@media (max-width: 767px) {
.daily-reward-content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 20px 30px;
   position: relative;
   z-index: 2;
   height: 288px;
   background: url(https://ik.imagekit.io/528ufvab6/stream/Assets/mani-ceysimobil.png?updatedAt=1752403643368) no-repeat;
   background-size: contain;
}
.countdown-timer {
        margin-top: 28%;
    }
}