@font-face {
    font-family: 'Purplellis';
    src: url('assets/fonts/purplellis/PurplellisSemibold-Regular.otf') format('opentype'),
         url('assets/fonts/purplellis/PurplellisBlack-Regular.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Purplellis';
    src: url('assets/fonts/purplellis/PurplellisBlack-Regular.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

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

html, body {
    min-height: 100vh;
}

body {
    background: #ffffff;
}

#container {
    width: 100%;
    max-width: 640px;
    margin: 20px auto;
    overflow-y: auto;
}

.top-logo {
    width: 90%;
    display: block;
    margin: 0 auto;
}

.intro-text {
    width: 66%;
    min-width: 340px;
    display: block;
    margin: 20px auto;
}

.me-image {
    width: 85%;
    display: block;
    margin: 40px auto 0 auto;

}

.asset-item {
    width: calc(100% - 20px);
    aspect-ratio: 2 / 1;
    margin: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.asset-item img {
    width:auto;
    height: 50%;
    object-fit: contain;
    margin-top:-10px;
}
@media (min-width: 768px) {
    .asset-item img {
        width:auto;
        height: 55%;
        object-fit: contain;
        margin-top:-10px;
    }
}

.asset-note {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    /* font-family: Georgia, serif; */
    font-family: 'Purplellis', sans-serif;
    font-size: 14px;
    color: #000;
    opacity:0.66;
}

@media (min-width: 768px) {
    .asset-note {
        font-size: 18px;
    }
}

/* Verification Overlay */
.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.verify-modal {
    width: 360px;
    background: #fff;
    /* border-radius: 12px; */
    padding: 30px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verify-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: background 0.2s, color 0.2s;
}

.verify-close:hover {
    background: #e0e0e0;
    color: #333;
}

.verify-title {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 2px;
}

.verify-slider-track {
    width: 300px;
    height: 50px;
    background: #e8e8e8;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
    user-select: none;
    touch-action: none;
}

.verify-slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    border-radius: 25px 0 0 25px;
    pointer-events: none;
}

.verify-slider-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #888;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
}

.verify-slider-handle {
    position: absolute;
    top: 3px;
    left: 0;
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    touch-action: none;
}

.verify-slider-handle::before {
    content: '';
    width: 20px;
    height: 20px;
    background: url('assets/other/slide-arrow.png') center/contain no-repeat;
}

.verify-slider-handle:active {
    cursor: grabbing;
}

/* Coming Soon Overlay */
.coming-soon-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.coming-soon-text {
    font-family: Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Footer */
.site-footer {
    text-align: center;
    font-family: 'Purplellis', sans-serif;
    font-size: 14px;
    color: #666;
    padding: 20px 0;
    margin-bottom:150px;
}

.site-footnote {
    text-align: center;
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    color: #999;
    padding: 10px 0 20px 0;
    margin-bottom:150px;
}

/* About page */
.about-content {
    width: 90%;
    display: block;
    margin: 0 auto;
}

/* Content page */
#content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    padding-bottom: 60px;
}

.content-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 6px 0;
    transition: transform 0.3s ease;
}

.content-image:hover {
    transform: scale(1.05) !important;
    z-index: 10;
}

/* Form Styles */
.form-wrapper {
    width: 90%;
    max-width: 480px;
    margin: 40px auto;
    padding: 0 10px;
    font-size: 14px;
}

.form-title {
    font-family: 'Purplellis', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-align: center;
    color: #000;
    margin-bottom: 10px;
}

.form-description {
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.optional-text {
    font-weight: normal;
    font-size: 14px;
    color: #999;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="email"],
.form-group input[type="number"] {
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    padding: 12px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff5f7;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #ffb6c1;
}

.form-footnote {
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    color: #ff69b4;
    font-style: italic;
}

.error-message {
    font-family: 'Purplellis', sans-serif;
    font-size: 14px;
    color: #ff0000;
    margin-top: 5px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Purplellis', sans-serif;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #ffb6c1;
}

.submit-button {
    font-family: 'Purplellis', sans-serif;
    font-size: 18px;
    font-weight: 900;
    padding: 16px 32px;
    background: #ffb6c1;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-button:hover {
    background: #ff69b4;
    transform: scale(1.02);
}

.submit-button:active {
    transform: scale(0.98);
}

/* Response page */
.response-message {
    text-align: center;
    padding: 60px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.response-title {
    font-family: 'Purplellis', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #000;
    margin-bottom: 20px;
}

.response-text {
    font-family: 'Purplellis', sans-serif;
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .response-title {
        font-size: 40px;
    }
    
    .response-text {
        font-size: 20px;
    }
}

@media (min-width: 768px) {
    .form-title {
        font-size: 40px;
    }
    
    .form-description {
        font-size: 20px;
    }
    
    .form-group label {
        font-size: 18px;
    }
    
    .form-group input[type="text"],
    .form-group input[type="url"],
    .form-group input[type="email"],
    .form-group input[type="number"] {
        font-size: 18px;
        padding: 14px 16px;
    }
    
    .checkbox-label {
        font-size: 18px;
    }
    
    .submit-button {
        font-size: 18px;
    }
}

/* Sparkle particles */
.sparkle {
    position: fixed;
    width: 4px;
    height: 4px;
    pointer-events: none;
    z-index: 9999;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0%, #ffb6c1 40%, #ff69b4 100%);
    box-shadow: 
        0 0 2px #fff,
        0 0 4px #ffb6c1,
        0 0 6px #ff69b4;
    animation: sparkle-twinkle 0.15s ease-in-out infinite alternate;
}

@keyframes sparkle-twinkle {
    0% { opacity: 1; }
    100% { opacity: 0.6; }
}
