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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
    background: #003366; /* Deep sea blue */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content {
    background: white; /* White middle box */
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Logo space */
.logo-space {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-space img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Construction icon */
.construction-icon {
    margin: 2rem 0;
}
.construction-icon i {
    font-size: 4rem;
    color: #f39c12;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Headings and text - black to match logo's write-up */
h2 {
    color: #000;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}
.message {
    color: #222;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
.message::after {
    content: '|';
    animation: blink 0.7s infinite;
    color: #666;
    margin-left: 2px;
}
@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}

/* Countdown box */
.release-info {
    margin: 2rem 0;
}
.date-box {
    display: inline-block;
    background: rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    border-radius: 10px;
}
.date-box .label {
    display: block;
    color: #555;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.date-box .date {
    display: block;
    color: #000;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Built-by section */
.built-by {
    margin-top: 2rem;
}
.built-by p {
    color: #555;
    margin-bottom: 1rem;
}
.pinchie .instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 25px;
    transition: all 0.3s ease;
}
.pinchie .instagram-link:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.pinchie .instagram-link i {
    font-size: 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    .content { padding: 2rem; }
    h2 { font-size: 1.5rem; }
    .message { font-size: 1rem; }
    .date-box .date { font-size: 1.2rem; }
}
