/* styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #FFD700; /* Bright bold gold */
    font-family: 'Arial', 'Helvetica Neue', sans-serif;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.container {
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

/* Main heading */
h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* SVG Container */
.svg-container {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

.svg-container img {
    max-width: 100%;
    height: auto;
    max-height: 45vh;           /* Prevents it from becoming too tall on mobile */
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
    transition: transform 0.4s ease;
}

.svg-container img:hover {
    transform: scale(1.03);
}

/* Bottom message */
p {
    font-size: clamp(1.1rem, 4vw, 1.6rem);
    font-weight: 600;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.95;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    h1 {
        margin-bottom: 1.5rem;
    }
    
    .svg-container {
        margin: 1.5rem 0;
    }
}

/* Optional subtle animation for the whole container */
.container {
    animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}