.dh-405-wrapper {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

.dh-405-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.dh-405-logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 20px;
}

.dh-405-date-wrap {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.dh-405-date {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #FFDE59;
}

.dh-405-desc {
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    color: #FFFFFF;
}

.dh-405-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.dh-405-btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dh-405-btn-primary {
    color: #000 !important;
    background-color: #FFDE59;
}

.dh-405-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 222, 89, 0.3);
}

.dh-405-btn-secondary {
    background: transparent;
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.dh-405-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Decorative Elements */
.dh-405-deco {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
}

.dh-405-star-yellow {
    width: 60px;
    height: 60px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFDE59"><path d="M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z"/></svg>') no-repeat center/contain;
    top: 20%;
    left: 15%;
    animation: dh405Float 6s infinite ease-in-out;
}

.dh-405-star-pink {
    width: 40px;
    height: 40px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FF66C4"><path d="M12 0L14.59 9.41L24 12L14.59 14.59L12 24L9.41 14.59L0 12L9.41 9.41L12 0Z"/></svg>') no-repeat center/contain;
    bottom: 30%;
    right: 20%;
    animation: dh405Float 5s infinite ease-in-out reverse;
}

.dh-405-diamond-blue {
    width: 50px;
    height: 50px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2338B6FF"><path d="M12 0L24 12L12 24L0 12L12 0Z"/></svg>') no-repeat center/contain;
    top: 30%;
    right: 15%;
    animation: dh405Pulse 4s infinite ease-in-out;
}

.dh-405-diamond-green {
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%2300BF63"><path d="M12 0L24 12L12 24L0 12L12 0Z"/></svg>') no-repeat center/contain;
    bottom: 20%;
    left: 25%;
    animation: dh405Pulse 5s infinite ease-in-out 1s;
}

@keyframes dh405Float {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

@keyframes dh405Pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@media (max-width: 768px) {
    .dh-405-wrapper {
        padding: 80px 15px;
    }
    
    .dh-405-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .dh-405-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }
    
    .dh-405-deco {
        display: none;
    }
}
