::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-track {
    background: #000000; 
}
::-webkit-scrollbar-thumb {
    background-color: #333333; 
    border-radius: 6px;
    border: 3px solid #000000;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #555555; 
}
html {
    scrollbar-width: thin;
    scrollbar-color: #333333 #000000;
}

html, body {
    height: 100%;
    margin: 0;
}
body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    overflow-x: hidden;
    color: #d1d5db;
}
main {
    position: relative;
    width: 100%;
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
}

main.is-hidden {
    opacity: 0;
    pointer-events: none;
}

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

.content-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.content-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #9ca3af;
    margin-bottom: 2.5rem;
}

.content-body {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1d5db;
    text-align: left;
}
.content-body p {
    margin-bottom: 1.5rem;
}

.content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

#orientation-lock-message {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #000;
    color: blue;
    z-index: 9999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
#orientation-lock-message i {
    font-size: 6vmin;
    margin-bottom: 2vmin;
    animation: rotate-animation 1.5s ease-in-out infinite;
}
@keyframes rotate-animation {
    0% { transform: rotate(0deg); }
    50% { transform: rotate(-90deg); }
    100% { transform: rotate(-90deg); }
}

@media (max-width: 700px) {
    body {
        overflow-y: auto;
    }
    .content-container {
        padding: 1.6vmin;
    }
    .content-title {
        font-size: 3.6vmin;
    }
    .content-subtitle {
        font-size: 1.76vmin;
    }
    .content-body {
        font-size: 1.6vmin;
    }
    .contact-label {
        display: none;
    }
}

@media (max-width: 850px) and (orientation: landscape) {
    #main-content {
        display: none;
    }
    #orientation-lock-message {
        display: flex;
    }
}

.contact-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.contact-modal-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
}
.contact-modal {
    background-color: #777777;
    padding: 3vmin;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    color: black;
}
.contact-modal .close-button {
    position: absolute;
    top: .5vmin;
    right: 2vmin;
    font-size: 4vmin;
    cursor: pointer;
    color: #333;
}
.contact-modal h2 {
    margin-top: 0;
    text-align: center;
}
.contact-modal input, .contact-modal textarea, .contact-modal button {
    width: 100%;
    padding: 1.2vmin;
    margin-bottom: 1.6vmin;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Inter', sans-serif;
    color: black;
    background-color: white;
    box-sizing: border-box;
}
.contact-modal button {
    background-color: blue;
    color: white;
    cursor: pointer;
    border: none;
}
.contact-modal label {
    display: block;
    margin-bottom: 0.8vmin;
    text-align: left;
}
#form-success-message, #form-error-message {
    display: none;
}
#form-success-message p {
    text-align: center; 
    font-size: 5vmin; 
    color: blue;
    font-weight: bold;
}
#form-error-message p {
    text-align: center;
    font-size: 4vmin;
    color: #990000;
    font-weight: bold;
}