/* DIO PROMOTE BANNER - Frontend Aesthetic */
/* Version v.1.003a - Added Countdown Timer & Red Theme Refinements */

.dio-promote-wrap {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Red Theme: Transitioning from dark base to a deep red heart */
    background: #0f172a; 
    background: linear-gradient(135deg, #0f172a 0%, #4a0404 100%);
    border-top: 2px solid #ed1d27; /* Logo Red */
    border-bottom: 2px solid #ed1d27;
    padding: 50px 0;
    font-family: 'Oswald', sans-serif;
    color: #ffffff;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(237, 29, 39, 0.1);
}

.dio-promote-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.dio-promote-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dio-promote-h {
    font-size: 64px;
    font-weight: 900;
    line-height: 0.85;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -2px;
    font-style: italic;
}

.dio-promote-h .white {
    color: #ffffff;
}

.dio-promote-h .accent {
    color: #ed1d27; /* DEVVU Red */
    text-shadow: 0 0 25px rgba(237, 29, 39, 0.4);
}

.dio-promote-sub {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #e7f6ff; /* Light Gray */
    opacity: 0.8;
    margin-top: 10px;
    letter-spacing: 3px;
}

/* Countdown Styles - Red/Dark Aesthetic */
.dio-promote-timer {
    display: flex;
    gap: 12px;
}

.dio-timer-box {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(237, 29, 39, 0.3);
    padding: 10px 15px;
    border-radius: 12px;
    min-width: 75px;
    text-align: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.dio-timer-val {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
}

.dio-timer-label {
    font-size: 9px;
    font-weight: 800;
    color: #ed1d27;
    margin-top: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.dio-promote-description {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    max-width: 350px;
    color: #e7f6ff; /* Light Gray */
    font-weight: 500;
}

.dio-promote-btn {
    /* Solid High-Contrast Red Button */
    background: #ed1d27;
    color: #fff !important;
    text-decoration: none !important;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(237, 29, 39, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-transform: uppercase;
}

.dio-promote-btn:hover {
    background: #ff2d38; /* Brighter red hover */
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 35px rgba(237, 29, 39, 0.5);
}

@media (max-width: 1024px) {
    .dio-promote-content { flex-direction: column; text-align: center; gap: 30px; }
    .dio-promote-description { max-width: 100%; }
    .dio-promote-h { font-size: 48px; }
    .dio-promote-wrap { padding: 40px 0; }
}