/* Global Styles */
:root {
    --wip-blue: #0078d4;
    --wip-dark-blue: #005a9e;
    --ventures-color: #ff6b00;
    --ventures-dark: #cc5500;
    --text-color: #333;
    --background-color: #f8f9fa;
    --transition-time: 0.5s;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 2s ease;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 2rem;
    width: 100%;
}

.logo-container {
    position: relative;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 200px;
    max-height: 100px;
    transition: opacity var(--transition-time) ease, transform var(--transition-time) ease;
}

.hidden {
    opacity: 0;
    position: absolute;
    transform: scale(0.8);
}

/* Main Content Styles */
main {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.message-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--wip-blue);
    transition: color 2s ease;
}

.ventures-text {
    color: var(--ventures-color);
    opacity: 0.7;
    transition: opacity 2s ease;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

#countdown {
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--wip-blue);
    transition: color 2s ease;
}

.button-container {
    margin: 2rem 0;
}

.redirect-button {
    background-color: var(--wip-blue);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.redirect-button:hover {
    background-color: var(--wip-dark-blue);
}

/* Footer Styles */
footer {
    text-align: center;
    margin-top: 2rem;
    width: 100%;
}

.ventures-link {
    color: var(--ventures-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.ventures-link:hover {
    color: var(--ventures-dark);
    text-decoration: underline;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

.delay-2 {
    animation-delay: 0.6s;
}

.delay-3 {
    animation-delay: 0.9s;
}

.delay-4 {
    animation-delay: 1.2s;
}

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

/* Transition Classes */
.transition-active body {
    background-color: #fff8f0;
}

.transition-active h1 {
    color: var(--ventures-color);
}

.transition-active .ventures-text {
    opacity: 1;
}

.transition-active #countdown {
    color: var(--ventures-color);
}

.transition-active .redirect-button {
    background-color: var(--ventures-color);
}

.transition-active .redirect-button:hover {
    background-color: var(--ventures-dark);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .logo {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .message-container {
        padding: 1.5rem;
    }
    
    .logo {
        max-width: 120px;
    }
}