/* Import a modern, bold font (e.g., from Google Fonts) */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&display=swap');

/* Color Variables */
:root {
    --bg-color: #121212; /* Dark background */
    --gem-color: #33ccff; /* Electric Blue for 'Gem' */
    --coming-color: #f0f0f0; /* Subtle white/grey for 'is coming...' */
    --stats-color: #ff3366; /* Accent color for 'Stats!' */
    --text-color: #f0f0f0;
}

/* Reset basic styles */
body {
    font-family: 'Orbitron', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden; /* Prevent scrollbar from potential glow effects */
}

/* Main content container */
.container {
    max-width: 800px;
    padding: 20px;
    animation: fadeIn 1.5s ease-out; /* Subtle entrance animation */
}

/* Gem is coming... title styling (The main focus) */
.gem-title {
    font-size: 5vw; /* Responsive font size */
    font-weight: 900;
    /* Set the default color for the h1 (which includes 'is coming...') */
    color: var(--coming-color); 
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 5px rgba(240, 240, 240, 0.3); /* Subtle white glow */
    margin-bottom: 0.1em;
}

/* Specific styling for the 'Gem' part (requires <span class="gem-name">Gem</span> in HTML) */
.gem-name {
    color: var(--gem-color); /* Apply the new Electric Blue color */
    /* Create an intense neon glow effect specifically for 'Gem' */
    text-shadow: 
        0 0 15px var(--gem-color),
        0 0 30px var(--gem-color),
        0 0 60px rgba(51, 204, 255, 0.7);
    margin-right: 0.1em; /* Small space before 'is coming...' */
}


/* Stats! subtitle styling */
.stats-subtitle {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--stats-color);
    letter-spacing: 3px;
    /* Subtle glow for accent */
    text-shadow: 0 0 8px rgba(255, 51, 102, 0.7);
    margin-top: 0;
    margin-bottom: 2em;
}

/* Loading/progress bar */
.loading-bar {
    width: 100%;
    height: 10px;
    background-color: #333;
    border-radius: 5px;
    overflow: hidden;
    margin: 30px auto;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.progress {
    height: 100%;
    width: 0; /* Starts at 0, animated via CSS */
    background: linear-gradient(90deg, #ff9900, var(--gem-color));
    border-radius: 5px;
    animation: loadProgress 5s infinite cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Email Signup Form Styling */
.email-signup {
    margin-top: 50px;
}

.email-signup h2 {
    font-size: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.email-input, .subscribe-button {
    padding: 12px 20px;
    border: 2px solid var(--gem-color);
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    transition: all 0.3s ease;
}

.email-input {
    background-color: transparent;
    color: var(--text-color);
    width: 60%; 
    max-width: 300px;
    margin-right: 10px;
}

.email-input::placeholder {
    color: rgba(240, 240, 240, 0.5);
}

.subscribe-button {
    cursor: pointer;
    background-color: var(--gem-color);
    color: var(--bg-color); /* Dark text on bright background */
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 0 15px rgba(51, 204, 255, 0.7); /* Matching blue glow */
}

.subscribe-button:hover {
    background-color: #66e0ff; /* Lighter shade on hover */
    transform: translateY(-2px);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes loadProgress {
    0% { width: 0; }
    50% { width: 85%; }
    100% { width: 0; }
}

/* Media Query for smaller screens */
@media (max-width: 600px) {
    .gem-title {
        font-size: 10vw;
        letter-spacing: 3px;
    }
    .stats-subtitle {
        font-size: 5vw;
        letter-spacing: 2px;
    }
    .email-input {
        width: 90%;
        margin-bottom: 10px;
    }
    .subscribe-button {
        width: 90%;
    }
}