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

/* Color Variables - Matching VCS Brand */
:root {
    --gold: #E6C164;
    --gold-hover: #d4b154;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #f5f5f5;
    --white: #ffffff;
}

/* Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    color: var(--light-gray);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

/* Content Area */
.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1s ease-in-out;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    animation: slideDown 0.8s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(230, 193, 100, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Title */
.title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: slideUp 0.8s ease-out;
    text-shadow: 0 0 30px rgba(230, 193, 100, 0.5);
}

/* Subtitle */
.subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    animation: fadeIn 1.2s ease-in-out;
}

/* Description */
.description {
    font-size: 1.125rem;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeIn 1.4s ease-in-out;
}

/* Decorative Divider */
.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 2rem auto;
    animation: glow 2s ease-in-out infinite;
}

/* Footer */
.footer {
    width: 100%;
    padding: 2rem 1rem;
    border-top: 1px solid rgba(230, 193, 100, 0.2);
    margin-top: auto;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(245, 245, 245, 0.7);
    letter-spacing: 0.5px;
}

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

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

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

@keyframes glow {
    0%, 100% {
        opacity: 0.5;
        box-shadow: 0 0 10px rgba(230, 193, 100, 0.3);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 20px rgba(230, 193, 100, 0.6);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.125rem;
    }

    .description {
        font-size: 1rem;
    }

    .logo {
        max-width: 200px;
    }

    .container {
        padding: 1.5rem;
    }
}

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

    .subtitle {
        font-size: 1rem;
    }

    .description {
        font-size: 0.9375rem;
    }

    .logo {
        max-width: 150px;
    }

    .footer {
        padding: 1.5rem 1rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}
