/* Access Page Styles */
body.access-page {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-color: #f5f5f5;
    background-image: repeating-linear-gradient(#eee 0px, #eee 1px, transparent 1px, transparent 2px);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

/* CRT screen effect */
body.access-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.1) 50%);
    background-size: 100% 2px;
    pointer-events: none;
    z-index: 4;
}

.close-link {
    position: fixed;
    top: 20px;
    left: 20px;
    font-family: 'VT323', monospace;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 9999;
    text-transform: uppercase;
    padding: 10px;
    margin: -10px;
}

.close-link:hover {
    color: rgba(0, 0, 0, 1);
}

.access-content {
    background-color: transparent;
    color: black;
    max-width: 400px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.access-content h2 {
    font-family: 'VT323', monospace;
    text-transform: uppercase;
    font-size: 32px;
    margin-top: 7px;
    margin-bottom: 5px;
    color: black;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    display: inline-block;
}

.access-dot {
    animation: blink 1s infinite;
    width: 10px;
    height: auto;
    transition: all 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto 5px;
}

.access-content p {
    font-family: 'VT323', monospace;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

.access-note {
    font-family: 'VT323', monospace;
    font-size: 14px !important;
    color: rgba(0, 0, 0, 0.6) !important;
    text-align: center;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Form Styling */
.access-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    position: relative;
    margin-bottom: 5px;
    height: 50px;
    background-color: rgba(221, 221, 221, 0.3);
}

.form-group:hover {
    background-color: rgba(205, 205, 205, 0.5);
}

.form-group label {
    display: none;
}

.form-group input {
    font-family: 'VT323', monospace;
    font-size: 24px;
    padding: 0;
    border: none;
    background-color: transparent;
    color: black;
    text-align: center;
    transition: all 0.2s ease;
    border-radius: 0;
    width: 100%;
    height: 100%;
    line-height: 50px;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.7);
    opacity: 1;
}

.form-group input:focus {
    outline: none;
}

.submit-button {
    font-family: 'VT323', monospace;
    font-size: 20px;
    letter-spacing: 1px;
    background: transparent;
    border: none;
    color: #343434;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    display: inline-block;
    animation: revealText 3s infinite;
    mask-image: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 50%, transparent 100%);
    mask-size: 200% 100%;
    -webkit-mask-size: 200% 100%;
}

.submit-button:hover {
    color: #343434;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes revealText {
    from { mask-position: 100% 0; -webkit-mask-position: 100% 0; }
    to { mask-position: -100% 0; -webkit-mask-position: -100% 0; }
}

/* Success message */
.success-message {
    color: white;
    background-color: #000;
    padding: 5px 18px;
    text-align: center;
    border-radius: 50px;
    margin-top: 20px;
    font-family: 'VT323', monospace;
    font-size: 18px;
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: disneyBounce 0.25s forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
}

@keyframes disneyBounce {
    0% { 
        opacity: 0;
        transform: translateX(-50%) translateY(80px) scale(0.8);
    }
    25% { 
        opacity: 1;
        transform: translateX(-50%) translateY(-20px) scale(1.15);
    }
    50% { 
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }
    75% { 
        transform: translateX(-50%) translateY(-5px) scale(1.02);
    }
    100% { 
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    .access-content {
        padding: 20px;
        margin: 40px auto;
    }
    
    .access-content h2 {
        font-size: 28px;
    }
    
    .access-content p {
        font-size: 18px;
    }
    
    .form-group input {
        font-size: 20px;
    }
    
    .submit-button {
        font-size: 22px;
        padding: 5px 15px;
        margin-top: 25px;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }
} 