
.dk-section-events {
    width: 100%;
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

.dk-container-events {
    max-width: 1228px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 60px;
}

.dk-events-title-main {
    font-weight: 600;
    font-size: 36px;
    margin-bottom: 32px;
}

/* Сетка */
.dk-events-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 32px;
    border: 2px solid #C4C4C4;
    border-radius: 16px;
}

@media (min-width: 768px) {
    .dk-events-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Левая колонка */
.dk-events-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.dk-events-left-content {
    width: 100%;
}

.dk-events-subtitle {
    font-weight: 300;
    font-size: 20px;
    margin-bottom: 0;
}

.dk-events-date-main {
    font-weight: 400;
    font-size: 28px;
    color: #006a5c;
    margin-top: 12px;
    display: inline-block;
}

.dk-events-address {
    font-weight: 300;
    font-size: 14px;
    color: #9ca3af;
    margin-top: 8px;
    display: inline-block;
}

/* Промокод */
.dk-events-promo-wrapper {
    position: relative;
    z-index: 0;
    margin-top: 24px;
    cursor: pointer;
    display: inline-block;
}

.dk-events-promo-code {
    border: 2px dashed #006a5c;
    padding: 10px 32px;
    color: #006a5c;
    font-weight: 600;
    transition: all 0.3s;
}

.dk-events-promo-code:hover {
    background-color: #006a5c;
    color: white;
}

.dk-events-copy-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 14px;
    height: 14px;
}

.dk-events-copied-tooltip {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    color: #006a5c;
    font-size: 10px;
    white-space: nowrap;
}

.dk-events-hint {
    font-weight: 300;
    font-size: 10px;
    color: #9ca3af;
    margin-top: 24px;
    display: inline-block;
}

/* Правая колонка */
.dk-events-right {
    background: linear-gradient(to bottom, #006a5c, #000);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 4px;
}

.dk-events-timer-wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
    align-items: center;
}

.dk-events-timer-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.dk-events-timer-value {
    font-family: monospace;
    font-size: 32px;
    font-weight: 700;
    color: white;
    text-align: center;
}

@media (min-width: 640px) {
    .dk-events-timer-value {
        font-size: 64px;
    }
}

@media (min-width: 1024px) {
    .dk-events-timer-value {
        font-size: 84px;
        line-height: 120px;
    }
}

.dk-events-timer-label {
    color: white;
    font-weight: 600;
    font-size: 16px;
    margin-top: 0;
}

.dk-events-timer-separator {
    font-size: 32px;
    margin-bottom: 30px;
    color: white;
    transition: opacity 0.3s;
}

@media (min-width: 1024px) {
    .dk-events-timer-separator {
        font-size: 84px;
        margin-bottom: 40px;
    }
}

/* Кнопки */
.dk-events-btn {
    display: inline-block;
    padding-top: 12px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
    height: 48px;
    margin-top: 12px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .dk-events-btn {
        padding-left: 56px;
        padding-right: 56px;
        font-size: 16px;
    }
}

.dk-events-btn-primary {
    background-color: white;
    color: #006a5c;
    border: 2px solid #006a5c;
}

.dk-events-btn-primary:hover {
    background-color: #006a5c;
    color: white;
}

.dk-events-btn-secondary {
    background-color: white;
    color: #006a5c;
    border: 2px solid #006a5c;
}

.dk-events-btn-secondary:hover {
    background-color: #006a5c;
    color: white;
}

/* Анимации */
.transition-blink {
    transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.blink-on { 
    opacity: 1; 
}

.blink-off { 
    opacity: 0.3; 
}

[x-cloak] {
    display: none !important;
}
