@import url('https://fonts.googleapis.com/css2?family=Changa+One:ital@0;1&family=Montserrat+Alternates:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=VT323&display=swap');

/* Main Layout */
.hero-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 100px 0 60px 0;
    gap: 40px;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

/* Coming Soon Text */
.coming-soon-badge {
    font-size: 100px;
    font-family: "Montserrat Alternates", sans-serif; 
    font-weight: 800;
    letter-spacing: -4px;
    line-height: 1.1;
    text-align: center;
    background: linear-gradient(45deg, #00ff87 0%, #60efff 15%, #0099ff 30%, #8b5cf6 45%, #a855f7 60%, #ec4899 75%, #f97316 90%, #ef4444 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 4s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 90%;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 20px;
    font-weight: 300;
    text-align: center;
    line-height: 1.6;
    color: var(--text-color, #fff);
}

/* Form Styles */
.subscription-form {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 10px; /* Added spacing below the form area */
}

#notifyForm {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensures text is centered */
}

.form-group {
    display: flex;
    gap: 10px;
    background-color: #292929;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%; /* Ensure it fills the container */
}

input {
    padding: 12px;
    width: 70%;
    background: transparent;
    border: none;
    color: white;
    outline: none;
}

button {
    padding: 12px;
    width: 30%;
    border-radius: 6px;
    border: none;
    background-color: white;
    color: #292929;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s;
}

button:hover {
    transform: translateY(-2px);
}

/* Form Message (Success/Error) */
.form-message {
    width: 100%;
    text-align: center;
    font-size: 14px;
    margin-top: 5px;
    min-height: 20px; /* Prevents jumping when message appears */
}

/* Fix for the Notification Text Positioning */
.notification-text {
    font-size: 16px;
    letter-spacing: .5px;
    font-weight: 200;
    text-align: center;
    opacity: 0.7;
    margin-top: 15px; /* Clear space between form/message and text */
    margin-bottom: 0;
    color: inherit;
    display: block;
}

/* --- UPDATED IMAGE FRAME STYLES (No Header) --- */

.showcase-wrapper {
    width: 90%;
    max-width: 1000px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1000px;
}

.preview-frame {
    width: 100%;
    background-color: transparent; /* Removed dark background */
    border-radius: 12px;
    
    /* Sleek glass border effect */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 
                0 0 0 1px rgba(255, 255, 255, 0.15); /* Thin crisp border */
    
    overflow: hidden;
    transform: rotateX(2deg);
    transition: transform 0.3s ease;
}

.preview-frame:hover {
    transform: rotateX(0deg) scale(1.01);
}

.interface-img {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom gap */
    border-radius: 12px; /* Matches the frame radius */
    filter: brightness(0.95); 
}

/* The caption below the image */
.caption-text {
    margin-top: 25px;
    font-size: 14px;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.08); /* Slightly lighter for visibility */
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.caption-text i {
    color: #4ade80; /* Green checkmark */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-badge {
        font-size: 60px;
    }
    
    .preview-frame {
        transform: none; /* Remove tilt on mobile */
    }
}

@media (max-width: 480px) {
    .coming-soon-badge {
        font-size: 48px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    input, button {
        width: 100%;
    }
}