:root {
    --bg-color: #1F252E; /* Dark slaty blue */
    --text-color: #F0F0F0;
    --accent-color: #FFFFFF;
    --font-serif: 'Cinzel', serif;
    --font-sans: 'Montserrat', sans-serif;
}

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

body, html {
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 1.5s ease-out;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    margin-bottom: 1.5rem;
    color: var(--text-color);
    opacity: 0;
    animation: slideDown 1s ease-out forwards 0.3s;
}

.logo svg {
    height: 80px; /* Adjust size to match image */
    width: auto;
}

/* Customizing the SVG paths for a closer match if needed via CSS */
.logo path, .logo rect {
    stroke: var(--text-color);
    fill: var(--text-color);
    /* Some paths are strokes, some are fills, reset for the inline svg */
}
.logo path[fill="none"] {
    fill: none;
}

.title {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    color: var(--accent-color);
    opacity: 0;
    animation: slideUp 1s ease-out forwards 0.6s;
}

.divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 1.5rem 0;
    position: relative;
    opacity: 0;
    animation: expandWidth 1.2s ease-out forwards 0.9s;
}

.subtitle {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease-out forwards 1.2s;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { 
        opacity: 0;
        transform: translateY(-20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expandWidth {
    from { 
        width: 0%; 
        opacity: 0;
    }
    to { 
        width: 100%; 
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }
    
    .subtitle {
        font-size: 0.7rem;
        line-height: 1.5;
    }
    
    .logo svg {
        height: 60px;
    }
}
