/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #f8fafc;
    background-color: #040710;
    overflow-x: hidden;
}

/* Full Vibrant Background Image */
body.dark {
    background-image: url('background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Page Layout Container */
.page-layout {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 3rem 2rem 4rem;
    background: linear-gradient(to top, 
        rgba(4, 7, 16, 0.95) 0%, 
        rgba(4, 7, 16, 0.7) 40%, 
        rgba(4, 7, 16, 0.2) 75%, 
        transparent 100%);
}

.content-wrapper {
    text-align: center;
    max-width: 850px;
    width: 100%;
}

/* Title Styling */
.title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

/* Subtitle & Link Styling */
.subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e2e8f0;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

.brand-link {
    color: #38bdf8;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1.5px solid rgba(56, 189, 248, 0.5);
    padding-bottom: 2px;
    transition: all 0.25s ease;
    display: inline;
    white-space: normal;
}

.brand-link:hover {
    color: #ffffff;
    border-bottom-color: #ffffff;
    text-shadow: 0 0 14px rgba(56, 189, 248, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-layout {
        padding: 2rem 1.25rem 3rem;
    }
    
    .title {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
}