/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    overflow-x: hidden;
    color: #333;
}

.container {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.dog-icon {
    animation: bounce 2s ease-in-out infinite;
}

.dog-icon svg {
    filter: drop-shadow(0 4px 8px rgba(26, 54, 93, 0.2));
    transition: transform 0.3s ease;
}

.dog-icon:hover svg {
    transform: scale(1.1);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.logo-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a365d;
    margin: 0;
    line-height: 1;
}

.logo-text .llc {
    font-size: 1rem;
    font-weight: 400;
    color: #1a365d;
    margin-left: 5px;
    vertical-align: top;
}

/* Main message */
.main-message h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

.main-message p {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Construction icon with animated gears */
.construction-icon {
    margin: 40px 0;
    position: relative;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gear {
    font-size: 3rem;
    position: absolute;
    animation: spin 3s linear infinite;
}

.gear-1 {
    animation-delay: 0s;
    transform: translateX(-40px);
}

.gear-2 {
    animation-delay: 1s;
    animation-direction: reverse;
    transform: translateX(0px);
}

.gear-3 {
    animation-delay: 2s;
    transform: translateX(40px);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Progress section */
.progress-section {
    margin: 40px 0;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    animation: progress 3s ease-in-out infinite;
    width: 75%;
}

@keyframes progress {
    0%, 100% { width: 75%; }
    50% { width: 85%; }
}

.progress-text {
    color: #718096;
    font-weight: 500;
}

/* Features preview */
.features-preview {
    margin: 50px 0;
}

.features-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-item {
    padding: 20px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d3748;
}

.feature-item p {
    color: #718096;
    font-size: 0.9rem;
}

/* Contact section */
.contact-section {
    margin: 50px 0;
}

.contact-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.email-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.email-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.email-form input:focus {
    outline: none;
    border-color: #667eea;
}

.email-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.email-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.social-links {
    color: #718096;
    margin-top: 20px;
}

.social-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #764ba2;
}


/* Background animation */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text h1 {
        font-size: 2.5rem;
    }
    
    .dog-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .main-message h2 {
        font-size: 2rem;
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .countdown-timer {
        gap: 10px;
    }
    
    .time-unit {
        min-width: 60px;
        padding: 15px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 2rem;
    }
    
    .dog-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .main-message h2 {
        font-size: 1.5rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
