* /* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
} */

.container1 {
    position: relative;
    width: 800px;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.background-image1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('illustration_of_the_war.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7) contrast(1.1) blur(3px);
}

.content1 {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    height: 90%;
    width: 90%;
    margin: 5% auto 0;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-container1 {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.war-illustration1 {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.war-illustration1:hover {
    transform: scale(1.02);
}

h1 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

h1 span {
    font-size: 1.4rem;
}

h1 .ar {
    font-size: 1.6rem;
}

.countdown1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    width: 100%;
    max-width: 600px;
}

.total-days1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.total-days1 span:first-child {
    font-size: 4.5rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.label1 {
    color: #b3b3b3;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-top: 0.5rem;
}

.equivalent1 {
    color: #ffffff;
}

.equivalent1 p {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    color: #b3b3b3;
}

.time-details1 {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.time-block1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 100px;
}

.time-block1 span:first-child {
    font-size: 2rem;
    font-weight: bold;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.start-date1 {
    color: #b3b3b3;
    font-size: 1.2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.start-date1 p {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

@media (max-width: 850px) {
    .container1 {
        width: 95%;
        height: auto;
        min-height: 500px;
    }

    .content1 {
        padding: 1.5rem;
        width: 95%;
        height: 95%;
        margin: 2.5% auto 0;
    }

    h1 {
        font-size: 1.5rem;
    }
    
    .total-days1 span:first-child {
        font-size: 3.5rem;
    }
    
    .time-block1 span:first-child {
        font-size: 1.8rem;
    }

    .label1 {
        font-size: 1.1rem;
    }

    .equivalent1 p {
        font-size: 1.2rem;
    }

    .time-details1 {
        gap: 1.5rem;
    }

    .time-block1 {
        min-width: 80px;
    }
} 