body, html {
    height: 100%;
    margin: 0;
}

.coming-soon-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background: linear-gradient(rgba(44, 26, 13, 0.85), rgba(44, 26, 13, 0.85)), url('../images/temple-bg.png') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.logo-section {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.logo-section .logo-img {
    height: 60px;
    margin-right: 15px;
}

.logo-section .logo-text {
    text-align: left;
}

.logo-section .logo-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.logo-section .logo-subtitle {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.coming-soon-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 500px;
}

.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    min-width: 100px;
}

.timer-box span {
    font-size: 3rem;
    font-weight: 600;
}

.timer-box p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.stay-tuned-text {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}

.footer-bottom {
    padding: 20px 0 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}