/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: #ffffff;
    font-family: 'Cinzel', serif;
    height: 100vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Canvas styling for background particles */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1; /* Behind the content */
    pointer-events: none; /* Allows clicking through canvas if needed */
}

/* Content Container */
.content-container {
    position: relative;
    z-index: 2; /* In front of particles */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    animation: fadeIn 3s ease-in-out forwards;
}

/* Main Title styling */
.main-title {
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(135, 206, 250, 0.2), 
                 0 0 40px rgba(0, 0, 139, 0.4); /* Subtle blue glow */
    margin-bottom: 0.5rem;
}

/* Subtitle styling */
.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    color: #a0c4ff; /* Light, soft blue */
    opacity: 0.8;
}

/* Fade-in animation for the text */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }
    .subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
}
