:root {
    --primary-color: #111111;
    --secondary-color: #f9f9f9;
    --accent-color: #ff5800;
    --accent-secondary: #ffb600;
    --text-color: #ffffff;
    --dark-text: #222222;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1f1f1f 100%);
    color: var(--text-color);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Particles background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Header styles */
.header {
    position: relative;
    z-index: 100;
    padding: 2rem 0;
    text-align: center;
}

.logo-header {
    max-width: 300px;
    margin: 0 auto;
}

.logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 5px 15px rgba(255, 88, 0, 0.3));
    transition: all 0.5s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0px 8px 20px rgba(255, 88, 0, 0.5));
}

/* Main content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Construction banner */
.construction-banner {
    position: relative;
    margin-bottom: 4rem;
}

/* Gear animation */
.gear-animation {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    gap: 10px;
}

.gear {
    color: var(--accent-color);
    font-size: 2rem;
    animation: rotateGear 3s linear infinite;
}

.gear-2 {
    animation-delay: -1s;
    animation-direction: reverse;
}

.gear-3 {
    animation-delay: -2s;
}

@keyframes rotateGear {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Title styles */
.title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin: 2rem 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(45deg, var(--text-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.highlight {
    color: var(--accent-color) !important;
    -webkit-text-fill-color: var(--accent-color) !important;
    text-shadow: 0 0 20px rgba(255, 88, 0, 0.5);
}

/* Divider */
.divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    margin: 2rem auto;
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* Message styles */
.message {
    margin: 3rem 0;
}

.message p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.primary-text {
    font-weight: 600;
}

.spanish-text {
    font-size: 1rem;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 1rem !important;
}

.spanish-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

/* Progress container */
.progress-container {
    max-width: 400px;
    margin: 2rem auto;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    width: 75%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    border-radius: 4px;
    animation: progressFill 2s ease-in-out;
}

.progress-text {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

@keyframes progressFill {
    from {
        width: 0%;
    }
    to {
        width: 75%;
    }
}

/* Truck scene */
.truck-scene {
    position: relative;
    height: 150px;
    margin: 4rem 0;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #2a2a2a 100%);
}

.highway {
    position: absolute;
    bottom: 40px;
    width: 100%;
    height: 6px;
    background: #444;
    box-shadow: 0 2px 0 #666;
}

.highway::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        transparent 0,
        transparent 20px,
        #ffff00 20px,
        #ffff00 40px
    );
    animation: moveLine 2s linear infinite;
}

@keyframes moveLine {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(40px);
    }
}

.truck-container {
    position: absolute;
    bottom: 46px;
    left: -80px;
    animation: driveTruck 8s linear infinite;
}

.animated-truck {
    font-size: 3rem;
    color: var(--accent-color);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.truck-shadow {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: shadowMove 8s linear infinite;
}

@keyframes shadowMove {
    0%, 45% {
        opacity: 1;
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        opacity: 0;
    }
    55%, 100% {
        opacity: 1;
        transform: translateX(-50%) scaleX(-1);
    }
}

@keyframes driveTruck {
    0% {
        left: -80px;
        transform: scaleX(1);
    }
    45% {
        left: calc(100% + 80px);
        transform: scaleX(1);
    }
    50% {
        left: calc(100% + 80px);
        transform: scaleX(-1);
    }
    95% {
        left: -80px;
        transform: scaleX(-1);
    }
    100% {
        left: -80px;
        transform: scaleX(1);
    }
}

/* Countdown section */
.countdown-section {
    margin: 4rem 0;
}

.countdown-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    color: var(--accent-secondary);
}

.countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 100px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255, 88, 0, 0.2);
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 88, 0, 0.3);
}

.countdown-value {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-color);
    opacity: 0.8;
}

.countdown-separator {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin: 0 0.5rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0.3;
    }
}

/* Contact section */
.contact-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 88, 0, 0.1), rgba(255, 182, 0, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 88, 0, 0.2);
}

.contact-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-secondary);
}

.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 88, 0, 0.3);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-color);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 88, 0, 0.3);
}

.subscribe-btn {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 88, 0, 0.4);
}

/* Contact Information Section */
.contact-info-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(145deg, rgba(255, 182, 0, 0.1), rgba(255, 88, 0, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 182, 0, 0.2);
}

.contact-info-section h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-secondary);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 88, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 88, 0, 0.3);
    border-color: var(--accent-color);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-top: 0.2rem;
    min-width: 1.5rem;
}

.contact-details h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent-secondary);
}

.contact-details p {
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Footer */
.footer {
    margin-top: 4rem;
    padding: 3rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 2px solid rgba(255, 88, 0, 0.3);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(45deg, var(--accent-color), var(--accent-secondary));
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 88, 0, 0.3);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Language selector */
.language-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px;
    padding: 5px 15px;
    border: 1px solid rgba(255, 88, 0, 0.3);
    z-index: 100;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 5px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.6;
    border-radius: 20px;
}

.lang-btn.active {
    opacity: 1;
    background: rgba(255, 88, 0, 0.2);
    color: var(--accent-color);
}

.lang-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lang-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

/* Language specific text */
.es-text {
    display: none;
}

body.es .es-text {
    display: block;
}

body.es .en-text {
    display: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .countdown-title {
        font-size: 1.5rem;
    }

    .message p {
        font-size: 1rem;
    }
    
    .spanish-text {
        font-size: 0.9rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.8rem;
    }
    
    .countdown-value {
        font-size: 2rem;
    }

    .contact-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-input {
        width: 100%;
        min-width: unset;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .gear-animation {
        top: -10px;
        right: -10px;
    }
    
    .gear {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 0 1rem;
    }

    .logo-header {
        max-width: 280px;
    }

    .title {
        font-size: 2rem;
    }

    .countdown {
        flex-wrap: wrap;
    }

    .countdown-item {
        min-width: 70px;
        margin-bottom: 10px;
    }
    
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .contact-info-section {
        padding: 2rem 1rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-item i {
        margin-top: 0;
    }
}
