/* 
 * User Colors 
 * Mustard Yellow: #FCB528
 * Maroon: #660000
 */

:root {
    --mustard-yellow: #fcb528;
    --maroon: #660000;
    --text-color: #333;
    --bg-color: #f4f4f4;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    background-image:
        radial-gradient(
            circle at 10% 20%,
            rgba(252, 181, 40, 0.1) 0%,
            transparent 20%
        ),
        radial-gradient(
        circle at 90% 80%,
        rgba(102, 0, 0, 0.1) 0%,
        transparent 20%
    );
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    color: var(--text-color);
}

.container {
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 90%;
    position: relative;
    border-top: 5px solid var(--mustard-yellow);
    border-bottom: 5px solid var(--maroon);
    animation: slideUp 0.8s ease-out;
}

.logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Typography */
h1 {
    color: var(--maroon);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -1px;
}

p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Highlight style as user requested (stabilo effect) */
.highlight {
    background: linear-gradient(
        120deg,
        rgba(252, 181, 40, 0.3) 0%,
        rgba(252, 181, 40, 0.3) 100%
    );
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 88%;
    padding: 0 5px;
    font-weight: 600;
    color: var(--maroon);
}

/* Construction Animation Area */
.animation-container {
    height: 120px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.gear {
    fill: var(--mustard-yellow);
    width: 60px;
    height: 60px;
    position: absolute;
    animation: rotate 4s linear infinite;
}

.gear-small {
    fill: var(--maroon);
    width: 40px;
    height: 40px;
    left: 55%;
    top: 55%;
    animation: rotate-reverse 4s linear infinite;
    opacity: 0.9;
}

.gear-large {
    left: 35%;
    top: 20%;
}

/* Interactive Button */
.btn {
    display: inline-block;
    background-color: var(--maroon);
    color: var(--white);
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--maroon);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--mustard-yellow);
    color: var(--maroon);
    border-color: var(--mustard-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(252, 181, 40, 0.4);
}

.btn:active {
    transform: translateY(0);
}

/* Animations */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

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

/* Decorative background elements */
.shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--mustard-yellow);
    opacity: 0.05;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--maroon);
    opacity: 0.05;
    bottom: -50px;
    left: -50px;
}

/* Responsive */
@media (max-width: 600px) {
    .container {
        padding: 2rem;
        width: 85%;
    }

    h1 {
        font-size: 2rem;
    }
}
