.date-container {
    background: linear-gradient(135deg, #222222 0%, #000000 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    margin: 0;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.date-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-10%, -10%) scale(1.1);
    }
}

.date-content {
    z-index: 1;
}

.date-container h2 {
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin: 0;
    font-weight: 300;
}

.date-button {
    background: #ffffff;
    color: #000000;
    font-family: 'Arial', sans-serif;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.date-button:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.date-button:hover .arrow-icon {
    transform: translateX(5px);
}

.date-button:active {
    transform: translateY(-1px);
}

@media screen and (max-width: 768px) {
    .date-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        text-align: center;
    }

    .date-container h2 {
        font-size: 24px;
    }

    .date-subtitle {
        font-size: 14px;
    }

    .date-button {
        padding: 14px 30px;
        font-size: 14px;
        width: auto;
    }
}