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

body, html {
    height: 100%;
    font-family: 'Courier Prime', monospace;
    background-color: #000;
    color: #222;
    overflow: hidden;
    text-transform: lowercase;
}

body {
    opacity: 0;
    transition: opacity 1s ease;
}

.contact-form {
    opacity: 0;
    transition: opacity 0.5s ease;
    background-color: rgba(0, 0, 0, 1);
    padding: 25px 30px;
    border-radius: 8px;
    max-width: 320px;
    margin: 0 auto;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    position: relative;
    z-index: 10;
}

.container {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #000;
}

/* Page Layout */
.page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease;
}

.hidden {
    display: none;
    opacity: 0;
}

/* Logo Styling */
.logo {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1rem;
    color: #333;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 1;
}

/* Page 1: Landing Page */
.main-text-container {
    position: relative;
    text-align: center;
    padding: 20px;
    cursor: pointer;
}

.main-text {
    font-size: 1.5rem;
    color: #111;
    letter-spacing: 1px;
    transition: color 0.5s ease, transform 0.3s ease;
    cursor: pointer;
}

.hover-text {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -30px;
    font-size: 0.9rem;
    color: #555;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    cursor: pointer;
    pointer-events: all;
    white-space: normal;
    width: 80%;
    text-align: center;
}

.main-text-container:hover .main-text {
    color: #555;
}

.main-text-container:hover .hover-text {
    opacity: 0.9;
    transform: translateX(-50%) translateY(-5px);
}

/* Make sure the hover text is clickable */
.hover-text:hover {
    opacity: 1 !important;
    color: #555;
}

.hover-text:hover {
    opacity: 0.9 !important;
}

/* Page 2: Video Page */
.video-container {
    position: relative;
    margin: 40px auto;
    max-width: 960px;
    width: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
    overflow: hidden;
    border-radius: 4px;
    background-color: #000;
}

/* Password Protection Overlay */
.password-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.password-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.password-container {
    text-align: center;
    padding: 40px 30px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    max-width: 350px;
    width: 90%;
}

.password-prompt {
    font-family: 'Special Elite', cursive;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: lowercase;
}

.password-input-container {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    align-items: center;
}

#passwordInput {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding: 12px 0;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: lowercase;
    outline: none;
    transition: border-color 0.3s ease;
}

#passwordInput::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

#passwordInput:focus {
    border-bottom-color: rgba(255, 255, 255, 0.6);
}

.password-btn {
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.password-btn:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

.password-btn:active {
    transform: translateY(1px);
}

.password-error {
    font-family: 'Courier Prime', monospace;
    font-size: 0.85rem;
    color: rgba(255, 100, 100, 0.8);
    margin-top: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-style: italic;
}

.password-error:not(.hidden) {
    opacity: 1;
}

/* Shake animation for wrong password */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

#promo-video {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    background-color: #000;
    object-fit: contain;
    max-height: 540px;
}

/* Custom Video Controls */
.custom-video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 20;
    pointer-events: auto;
}

.video-container:hover .custom-video-controls {
    opacity: 1;
}

.video-controls-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    height: 40px;
}

.play-pause-btn, .mute-btn, .fullscreen-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.play-pause-btn:hover, .mute-btn:hover, .fullscreen-btn:hover {
    opacity: 1;
}

.control-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.play-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
}

.pause-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M6 19h4V5H6v14zm8-14v14h4V5h-4z"/></svg>');
}

.volume-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M3 9v6h4l5 5V4L7 9H3zm13.5 3c0-1.77-1.02-3.29-2.5-4.03v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z"/></svg>');
}

.muted-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M16.5 12c0-1.77-1.02-3.29-2.5-4.03v2.21l2.45 2.45c.03-.2.05-.41.05-.63zm2.5 0c0 .94-.2 1.82-.54 2.64l1.51 1.51C20.63 14.91 21 13.5 21 12c0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zM4.27 3L3 4.27 7.73 9H3v6h4l5 5v-6.73l4.25 4.25c-.67.52-1.42.93-2.25 1.18v2.06c1.38-.31 2.63-.95 3.69-1.81L19.73 21 21 19.73l-9-9L4.27 3zM12 4L9.91 6.09 12 8.18V4z"/></svg>');
}

.fullscreen-icon {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z"/></svg>');
}

.video-progress {
    flex: 1;
    margin: 0 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.progress-bar {
    height: 8px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    margin-bottom: 5px;
    transition: height 0.2s ease;
}

.progress-bar:hover {
    height: 12px;
}

.progress-indicator {
    height: 100%;
    background-color: #ff0000;
    border-radius: 4px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.1s ease;
}

.progress-indicator::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-bar:hover .progress-indicator::after {
    opacity: 1;
}

.time-display {
    font-size: 12px;
    color: white;
    opacity: 0.9;
}

.video-container .hover-text {
    position: absolute;
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    bottom: -40px;
    cursor: pointer;
    padding: 10px 0;
    z-index: 30; /* Higher than video controls */
    text-align: center;
    left: 0;
    right: 0;
    color: #555;
}

.video-container:hover .hover-text {
    opacity: 0.9;
    transform: translateY(-5px);
}

/* Video Caption */
.video-caption {
    text-align: center;
    margin: 20px auto;
    font-family: 'Special Elite', sans-serif;
    font-size: 12px;
    color: #494949;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 15px;
    border-radius: 4px;
    max-width: 300px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.dismiss-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    z-index: 101;
}

.dismiss-button:hover {
    opacity: 1;
}

.dismiss-button::before,
.dismiss-button::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 1px;
    background-color: #333;
}

.dismiss-button::before {
    transform: rotate(45deg);
}

.dismiss-button::after {
    transform: rotate(-45deg);
}

.video-caption:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    position: absolute;
    bottom: 40px;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.contact-prompt {
    font-size: 0.8rem;
    color: #111;
    margin-bottom: 15px;
    opacity: 0.6;
}

.contact-icons {
    display: none;
}

.ig-icon, .email-icon {
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.email-icon {
    font-size: 1.2rem;
    color: #333;
}

.ig-icon:hover, .email-icon:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Contact Form */
.contact-form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
}

.form-prompt {
    font-size: 0.8rem;
}

.input-group {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 40px;
    margin: 25px 0;
    width: 100%;
}

.input-wrapper {
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
}

.input-wrapper:hover {
    opacity: 1;
    background-color: rgba(51, 51, 51, 0.05);
}

.input-icon {
    margin-bottom: 12px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: text;
}

.input-wrapper:hover .input-icon {
    opacity: 1;
}

.email-icon-svg, .ig-icon-svg {
    width: 24px;
    height: 24px;
    fill: #333;
}

#emailInput, #igInput {
    background: transparent;
    border: none;
    border-bottom: 1px dotted rgba(120, 120, 120, 0.3);
    padding: 8px 0;
    width: calc(100% - 40px);
    max-width: 280px;
    color: #777;
    font-family: inherit;
    text-align: center;
    outline: none;
    cursor: text;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 0 0 rgba(120, 120, 120, 0.1);
    font-size: 0.85rem;
    margin: 0 auto;
}

#emailInput::placeholder, #igInput::placeholder {
    color: #666;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

#emailInput:focus::placeholder, #igInput:focus::placeholder {
    opacity: 0.2;
}

#emailInput:focus, #igInput:focus {
    box-shadow: 0 2px 4px rgba(51, 51, 51, 0.05);
    text-shadow: 0 0 1px rgba(51, 51, 51, 0.2);
}

/* Subtle pulsing cursor effect */
@keyframes subtleCursorPulse {
    0% { opacity: 0.6; }
    50% { opacity: 0.9; }
    100% { opacity: 0.6; }
}

.input-wrapper:hover #emailInput, .input-wrapper:hover #igInput {
    animation: subtleCursorPulse 2s infinite;
}



.form-prompt {
    font-size: 0.9rem;
    color: #666;
    opacity: 0.9;
    font-style: italic;
    margin-bottom: 20px;
    padding: 5px 10px;
    background-color: rgba(120, 120, 120, 0.05);
    border-radius: 4px;
    display: inline-block;
}

#submitContact {
    background: rgba(120, 120, 120, 0.1);
    border: 1px solid rgba(120, 120, 120, 0.2);
    border-radius: 4px;
    color: #666;
    font-family: inherit;
    margin-top: 20px;
    padding: 8px 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#submitContact:hover {
    opacity: 1;
    background: rgba(51, 51, 51, 0.15);
    transform: translateY(-1px);
}

#formSuccess {
    font-size: 0.8rem;
    color: #222;
    margin-top: 15px;
    font-style: italic;
    opacity: 0.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .main-text {
        font-size: 1.2rem;
    }
    
    .quote {
        font-size: 1.1rem;
    }
    
    .video-container .hover-text {
        width: 80%;
        max-width: 280px;
        margin: 0 auto;
        font-size: 0.8rem;
        bottom: -50px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    #formSuccess {
        margin: 15px auto;
        padding: 15px;
        font-size: 0.85rem;
        background-color: rgba(51, 51, 51, 0.2);
    }
    
    .main-text {
        font-size: 1rem;
    }
    
    .quote {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .author {
        padding-right: 10%;
        font-size: 0.9rem;
    }
    
    /* Fix for the contact section */
    .contact-section {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 20px;
        z-index: 100;
        background-color: rgba(0, 0, 0, 0.9);
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
        transform: translateY(0);
        transition: transform 0.3s ease;
    }
    
    /* Contact section when hidden */
    .contact-section.slide-down {
        transform: translateY(100%);
    }
    
    /* Dismiss button */
    .dismiss-button {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.3s ease;
        z-index: 101;
    }
    
    .dismiss-button:hover {
        opacity: 1;
    }
    
    .dismiss-button::before,
    .dismiss-button::after {
        content: '';
        position: absolute;
        width: 16px;
        height: 1px;
        background-color: #333;
    }
    
    .dismiss-button::before {
        transform: rotate(45deg);
    }
    
    .dismiss-button::after {
        transform: rotate(-45deg);
    }
    
    /* Swipe indicator */
    .swipe-indicator {
        width: 40px;
        height: 4px;
        background-color: rgba(51, 51, 51, 0.3);
        border-radius: 2px;
        margin: 10px auto;
    }
    
    /* Make the form prompt more visible */
    .form-prompt {
        margin-bottom: 20px;
        margin-top: 15px;
        font-size: 0.85rem;
        display: block;
        background-color: rgba(51, 51, 51, 0.15);
        padding: 8px 12px;
        border-radius: 4px;
    }
    
    /* Improve form visibility */
    .contact-form {
        background-color: rgba(51, 51, 51, 0.2);
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        border-radius: 6px;
        margin-bottom: 20px;
    }
    
    /* Stack inputs vertically */
    .input-group {
        flex-direction: column;
        gap: 25px;
        margin: 20px 0;
        align-items: center;
    }
    
    /* Make input wrappers more visible */
    .input-wrapper {
        width: 100%;
        max-width: 250px;
        padding: 12px;
        background-color: rgba(51, 51, 51, 0.15);
        border-radius: 4px;
    }
    
    /* Style the input fields */
    #emailInput, #igInput {
        font-size: 0.85rem;
        width: 100%;
    }
    
    /* Make the submit button stand out */
    #submitContact {
        margin-top: 25px;
        padding: 12px 30px;
        width: auto;
        font-size: 0.9rem;
        background-color: rgba(51, 51, 51, 0.25);
        border-radius: 4px;
        border: 1px solid rgba(51, 51, 51, 0.3);
    }
    
    /* Fix hover text positioning */
    .video-container .hover-text {
        width: 90%;
        font-size: 0.8rem;
        bottom: -70px;
        line-height: 1.5;
        padding: 15px 0;
    }
    
    /* Center the quote in the page */
    .page {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    /* Position the video container */
    .video-container {
        margin-top: -40px;
    }
}

#bgVideo {
    position: absolute;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    filter: brightness(0.4) contrast(1.2);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

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

.enter-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
}

.warning-text {
    font-family: 'Special Elite', cursive;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
    opacity: 0.8;
}

.enter-btn {
    font-family: 'Special Elite', cursive;
    font-size: 0.8rem;
    background: transparent;
    color: rgba(255, 255, 255, 0.3);
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    text-transform: lowercase;
}

.enter-btn:hover {
    color: rgba(255, 255, 255, 0.5);
}



.main-content {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
    width: 100%;
    max-height: 100vh;
    overflow-y: auto;
    padding-bottom: 2rem;
}

.main-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.fund-name {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
    color: rgb(85, 138, 182);
    text-shadow: 0 0 10px rgba(85, 138, 182, 0.5);
}

.quote-container {
    margin-bottom: 4rem;
}

.quote {
    font-size: 2rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    min-height: 140px;
}

.author {
    font-size: 1.2rem;
    text-align: right;
    opacity: 0.8;
}

.form-container {
    background-color: transparent;
    padding: 2rem 0;
    border: none;
    animation: fadeIn 1s ease-in-out forwards;
    animation-delay: 2.5s;
    opacity: 0;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    display: block !important;
    visibility: visible !important;
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-container h2 {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    opacity: 0.7;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
    display: block;
}

input {
    width: 100%;
    padding: 0.8rem 0;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid rgba(85, 138, 182, 0.15);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Special Elite', cursive;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}

input:focus {
    outline: none;
    border-color: rgba(85, 138, 182, 0.4);
    background-color: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.submit-btn {
    font-family: 'Special Elite', cursive;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0.8rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    text-transform: lowercase;
    margin-top: 1rem;
}



.loading {
    display: inline-block;
    position: relative;
    width: 20px;
    text-align: center;
    animation: loadingDots 1.5s infinite;
}

@keyframes loadingDots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

.submit-btn:hover {
    color: rgb(85, 138, 182);
}

.hidden {
    display: none;
}

#formSuccess {
    text-align: center;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    font-size: 1rem;
    font-family: 'Special Elite', cursive;
    color: rgb(85, 138, 182);
    margin: 20px auto;
    max-width: 300px;
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .quote {
        font-size: 1.5rem;
        min-height: 120px;
    }
    
    .enter-btn {
        font-size: 1.8rem;
        padding: 0.8rem 2rem;
    }
    
    .fund-name {
        font-size: 2.2rem;
    }
    
    .warning-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .quote {
        font-size: 1.2rem;
        min-height: 100px;
    }
    
    .enter-btn {
        font-size: 1.5rem;
        padding: 0.7rem 1.5rem;
    }
    
    .form-container {
        padding: 1.5rem;
        margin-top: 1rem;
        width: 100%;
        z-index: 100;
    }
    
    .fund-name {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .warning-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    input {
        display: block !important;
        width: 100% !important;
        margin-bottom: 1rem !important;
        padding: 0.8rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        -webkit-appearance: none;
        appearance: none;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    .form-group {
        margin-bottom: 1.5rem !important;
        display: block !important;
        width: 100% !important;
    }
    
    .submit-btn {
        width: 100% !important;
        margin-top: 1rem !important;
        padding: 1rem !important;
        display: block !important;
    }
    
    /* Fix for iOS and Safari */
    .content {
        -webkit-overflow-scrolling: touch;
    }
}