/* CASTLE SIEGE EPIC STYLES */
.castle-siege-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000, #0a0a0a);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.castle-siege-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/cs_bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    filter: sepia(1) saturate(2) hue-rotate(-30deg);
    pointer-events: none;
}

.cs-banner-card {
    background: rgba(15, 10, 5, 0.85);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.15);
    transition: all 0.5s ease;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.cs-banner-card:hover {
    box-shadow: 0 0 70px rgba(255, 215, 0, 0.25);
    transform: translateY(-5px);
}

.cs-title-wrapper {
    margin-bottom: 30px;
}

.cs-main-title {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.cs-subtitle {
    color: #ccc;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.cs-timer-container {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: inline-block;
    margin: 20px 0;
    min-width: 350px;
}

.cs-timer-value {
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    color: #fff;
    font-weight: bold;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    display: block;
}

.cs-timer-label {
    display: block;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 10px;
    font-size: 0.9rem;
}

.cs-status-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 10px 40px;
    border-radius: 50px;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 1.2rem;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
    z-index: 10;
    letter-spacing: 1px;
}

.cs-status-badge.active {
    background: #ff3333;
    color: #fff;
    box-shadow: 0 5px 25px rgba(255, 51, 51, 0.5);
    animation: pulseBattle 1s infinite alternate;
}

.cs-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.cs-info-item {
    border-left: 1px solid rgba(255, 215, 0, 0.3);
    padding-left: 20px;
    text-align: left;
}

.cs-info-item h4 {
    color: #ffd700;
    font-size: 1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.cs-info-item p {
    color: #fff;
    font-size: 1.4rem;
}

.cs-fire-container {
    position: absolute;
    bottom: -20px;
    width: 100%;
    height: 100px;
    overflow: hidden;
    opacity: 0.3;
}

@keyframes pulseBattle {
    from {
        transform: translateX(-50%) scale(1);
    }

    to {
        transform: translateX(-50%) scale(1.05);
    }
}

@media (max-width: 768px) {
    .cs-main-title {
        font-size: 2.2rem;
    }

    .cs-timer-value {
        font-size: 3.5rem;
    }

    .cs-banner-card {
        padding: 40px 20px;
    }

    .cs-timer-container {
        min-width: auto;
        width: 100%;
    }
}