/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background with red-golden divine theme */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #7b1113, #ffcc00);
    color: white;
    text-align: center;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container box */
.container {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.8);
    max-width: 800px;
    width: 90%;
}

/* Headline */
.container h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ffd700;
}

/* Tagline */
.tagline {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #fff3cd;
}

/* Mata Ji Image */
.image-box img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.7);
    margin: 20px 0;
}

/* Footer text */
.footer {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #ffcc70;
    font-weight: bold;
}
