/* General Body & Centering Styles */
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: linear-gradient(135deg, #ece9e6, #ffffff);
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.landing-container {
    max-width: 600px;
    padding: 40px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- THIS IS THE RULE TO CHANGE --- */
/* Logo Styles */
#dynamic-logo {
    /* Changed from 150px to 512px */
    max-width: 512px; 
    height: auto; /* This maintains the aspect ratio */
    margin-bottom: 20px;
    transition: opacity 0.2s ease-in-out;
}

/* Manual Scroller Controls */
#manual-controls {
    display: flex; /* This will be set to 'flex' by JS */
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
    gap: 10px;
}

#logo-slider {
    width: 80%;
    cursor: pointer;
}

#logo-counter {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Content Styles */
h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}

/* Call-to-Action Button Styles */
.cta-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}
