body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark text */
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Logo positioning */
.logo-container {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.logo {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.coming-soon-container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #ffffff; /* White card background */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    color: #4CAF50; /* App Accent Color (You can change this) */
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

p {
    font-size: 1.2em;
    margin-bottom: 40px;
    text-align: center;
    line-height: 1.6;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.timer-unit {
    color: rgb(9, 9, 9);
    padding: 15px 20px;
    border-radius: 8px;
    min-width: 90px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Individual timer box colors */
.timer-unit:nth-child(1) {
    background-color: #e74c3c; /* Red for Days */
}

.timer-unit:nth-child(2) {
    background-color: #f1c40f; /* Yellow for Hours */
}

.timer-unit:nth-child(3) {
    background-color: #4CAF50; /* Green for Minutes */
}

.timer-unit:nth-child(4) {
    background-color: #3498db; /* Blue for Seconds */
}

.timer-unit span {
    display: block;
    font-size: 3em;
    font-weight: bold;
}

.timer-unit label {
    display: block;
    font-size: 0.9em;
    text-transform: uppercase;
}

/* Subscription Form Styling */
.subscribe-form {
    width: 100%;
    max-width: 500px;
    margin-top: 10px;
    margin-bottom: 30px;
}

.subscribe-form h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

/* Email input container styling */
.email-input-container {
    display: flex;
    gap: 0;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.email-input-container input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    outline: none;
    background-color: #f8f9fa;
}

.email-input-container input[type="email"]:focus {
    background-color: white;
    box-shadow: inset 0 0 0 2px #4CAF50;
}

.email-input-container button {
    padding: 15px 25px;
    background: linear-gradient(45deg, #4CAF50, #45a049);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.email-input-container button:hover {
    background: linear-gradient(45deg, #45a049, #4CAF50);
    transform: translateY(-1px);
}

/* Form styling */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.form-row input,
.form-row textarea {
    flex: 1;
    min-width: 200px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76, 175, 80, 0.3);
}

.form-row textarea {
    resize: vertical;
    min-height: 80px;
    font-family: Arial, sans-serif;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    width: 60%;
    max-width: 300px;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.subscribe-form button {
    padding: 10px 15px;
    background: linear-gradient(45deg, #4285f4, #34a853, #fbbc05, #ea4335); /* Google logo gradient */
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
    color: white;
    border: none;
    border-left: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.subscribe-form button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Launch message styling */
.message {
    margin: 20px 0;
}

.message h2 {
    color: #4CAF50;
    font-size: 2em;
    margin-bottom: 10px;
}

.app-links {
    margin-top: 20px;
}

.app-links a {
    display: inline-block;
    margin: 0 10px;
    padding: 12px 24px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.app-links a:hover {
    background-color: #45a049;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo-container {
        top: 15px;
        left: 15px;
    }
    
    .logo {
        max-width: 60px;
        max-height: 60px;
    }
    
    .coming-soon-container {
        width: 95%;
        padding: 40px 20px;
    }
    
    .countdown-timer {
        gap: 15px;
    }
    
    .timer-unit {
        min-width: 70px;
        padding: 12px 15px;
    }
    
    .timer-unit span {
        font-size: 2em;
    }
    
    h1 {
        font-size: 2em;
    }
    
    .email-input-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .email-input-container input[type="email"] {
        border-radius: 8px;
    }
    
    .email-input-container button {
        border-radius: 8px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-row input,
    .form-row textarea {
        min-width: 100%;
        width: 100%;
    }
    
    .subscribe-form input[type="email"] {
        width: 80%;
    }
    
    .subscribe-form {
        max-width: 100%;
    }
}

/* Social Media Icons */
.social-media {
    margin-top: 20px;
    text-align: center;
}

.social-media h3 {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: 30px 30px;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-icon.facebook {
    background-color: #1877f2;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z"/></svg>');
}

.social-icon.instagram {
    background-image: url('instagram.svg'), linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background-size: 30px 30px, cover;
    background-repeat: no-repeat;
    background-position: center;
}

.social-icon.youtube {
    background-color: #ff0000;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z"/></svg>');
}

.social-icon.linkedin {
    background-color: #0077b5;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433c-1.144 0-2.063-.926-2.063-2.065 0-1.138.92-2.063 2.063-2.063 1.14 0 2.064.925 2.064 2.063 0 1.139-.925 2.065-2.064 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>');
}
