/* Grid of Change Download Page Styles */
/* Color scheme from gridofchange.com */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #000001;
    color: #fffffe;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Countdown Banner */
.countdown-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c2f3a 0%, #1a1c24 100%);
    border-bottom: 2px solid #ffd800;
    padding: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 100;
    animation: slideDown 0.3s ease;
}

.countdown-banner.hidden {
    display: none;
}

.countdown-banner p {
    color: #f0e6b1;
    font-size: 1rem;
}

.countdown-banner #countdown-number {
    color: #ffd800;
    font-weight: 700;
    font-size: 1.25rem;
}

.countdown-banner #store-name {
    color: #ffd800;
    font-weight: 600;
}

.countdown-banner button {
    background: transparent;
    border: 1px solid #f0e6b1;
    color: #f0e6b1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.countdown-banner button:hover {
    background: #f0e6b1;
    color: #000001;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.container {
    max-width: 600px;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
}

/* Hero Section */
.hero {
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #f0e6b1;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.tagline {
    font-size: 1.25rem;
    color: #ffd800;
    font-weight: 500;
}

/* Preview Section */
.preview {
    margin-bottom: 2.5rem;
}

.cover-image {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* Download Buttons */
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
}

.store-button {
    display: inline-block;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.store-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.store-button img {
    height: 50px;
    width: auto;
}

/* Footer */
footer {
    color: #888;
    font-size: 0.875rem;
}

footer a {
    color: #f0e6b1;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive - Tablet+ */
@media (min-width: 480px) {
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .store-button img {
        height: 60px;
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }
}
