@media (max-width: 600px) {
    .popup-overlay {
        align-items: flex-start;
        justify-content: center;
    }
    .popup-content {
        margin-top: 10vh;
        padding: 1.2rem 0.5rem;
        min-width: 0;
        width: 85vw;
        max-width: 90vw;
        font-size: 1rem;
        border-radius: 10px;
        box-sizing: border-box;
    }
    .close-btn {
        top: 8px;
        right: 10px;
        font-size: 1.5rem;
    }
    .popup-content h2 {
        font-size: 1.2rem;
    }
    img {
        max-width: 100vw;
        max-height: 60vh;
    }
    .contact-btn {
        padding: 12px 0;
        width: 90vw;
        margin-top: 20px;
    }
    .container {
        padding: 0 5vw;
    }
}
/* Popup styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.popup-content {
    background: #1b1b30;
    color: #78d64b;
    padding: 2rem 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.25);
    min-width: 280px;
    max-width: 90vw;
    text-align: center;
    position: relative;
    font-size: 1.2rem;
    font-weight: bold;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}
.popup-content h2 {
    color: #78d64b;
    margin-bottom: 1rem;
}
.popup-content a {
    color: #78d64b;
    text-decoration: underline;
    word-break: break-all;
}
.close-btn {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 2rem;
    color: #78d64b;
    cursor: pointer;
    font-weight: bold;
    background: none;
    border: none;
    line-height: 1;
}
/* Under Construction styling */
.under-construction {
    margin-top: 28px;
    color: #78d64b;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #11111f;
    text-align: center;
}

html, body {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: #11111f;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    justify-content: center;
}

img {
    max-width: 90vw;
    max-height: 80vh;
}

.contact-btn {
    margin-top: 32px;
    padding: 16px 48px;
    background: #78d64b;
    color: #11111f;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
    font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
}
.contact-btn:hover {
    background: #6bc03f;
}

@media (max-width: 600px) {
    img {
        max-width: 100vw;
        max-height: 60vh;
    }
    .contact-btn {
        padding: 12px 0;
        width: 90vw;
        font-family: 'Arial', 'Helvetica Neue', Helvetica, sans-serif;
        margin-top: 20px;
    }
    .container {
        padding: 0 5vw;
    }
}
