body{
    padding-top: 70px;
    background-color: #000000;
    color: #ffffff;
}

.navbar-brand {
    color: #ffffff !important;
    border-bottom: 2px solid #00d2ff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 5px;
}

.navbar-brand:hover {
    color: #00d2ff !important;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
}

.val {
    box-sizing: border-box;
    background-color: #f8d7da;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Indie Flower', cursive;
    overflow: hidden;
    color: #000000;
}

.heart {
    background-color: #ff0000;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 200px;   
    position: relative;
    transform: rotate(-45deg);
    animation: heartbeat 1.2s infinite ease-in-out; 
    box-shadow: -10px 10px 40px rgba(0,0,0,0.2); 
    margin-bottom: 50px;
}

.heart::before, .heart::after {
    content: "";
    background-color: #ff0000;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    position: absolute;
}

.heart::before { top: -50%; left: 0; }
.heart::after { left: 50%; top: 0; }

.inner-content {
    z-index: 10;
    transform: rotate(45deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

.heart-img {
    width: 80px; 
    height: 80px; 
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    margin-bottom: 10px;
}

.message {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.button-container {
    display: flex;
    gap: 20px;
    z-index: 20;
}

.btn {
    padding: 10px 30px;
    font-size: 1.5rem;
    font-family: 'Indie Flower', cursive;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-yes { background-color: #ff0000; color: white; }
.btn-no { background-color: white; color: #ff0000; }
.btn:hover { transform: scale(1.1); }

.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: Arial, sans-serif; 
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 85vh; 
    overflow-y: auto; 
}

.modal-content h2 { margin: 0; color: #333; }

.fake-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
}

.system-btn {
    background: #007BFF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 10px;
}

.system-btn:hover { background: #0056b3; }

.skip-btn {
    background: #6c757d;
    font-size: 0.9rem;
}

.fake-link {
    color: #007BFF;
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

.robot-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
}

.password-rules {
    text-align: left;
    background: #fff3cd;
    color: #856404;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ffeeba;
    font-size: 0.85rem;
    margin: 10px 0;
}
.password-rules ul { margin: 5px 0 0 0; padding-left: 20px; }
.password-rules li { margin-bottom: 5px; }

.tos-scroll {
    height: 250px; 
    overflow-y: scroll;
    text-align: left;
    border: 1px solid #ccc;
    padding: 15px;
    font-size: 0.8rem;
    color: #444;
    background: #fafafa;
    line-height: 1.6;
}

.bs-btn {
    background: #ff4757;
    font-family: 'Indie Flower', cursive;
    font-size: 1.2rem;
}

.success-video { 
    width: auto; 
    max-width: 100%; 
    max-height: 50vh; 
    border-radius: 10px; 
    outline: none;
    display: block;
    margin: 0 auto; 
}

.success-text { 
    font-family: 'Indie Flower', cursive; 
    font-size: 1.5rem; 
    color: #ff0000; 
    margin-top: 15px; 
}

@media (max-width: 500px) {
    .heart { 
        width: 150px; 
        height: 150px; 
        margin-bottom: 30px; 
    }
    
    .heart-img { width: 60px; height: 60px; }
    .message { font-size: 1.2rem; }
    
    .btn { padding: 8px 20px; font-size: 1.3rem; }

    .modal-content { 
        padding: 15px;
        width: 95%; 
    }
    
    .password-rules { font-size: 0.75rem; padding: 10px; }
    .password-rules ul { padding-left: 15px; }
    
    .tos-scroll { height: 180px; }
}

@keyframes heartbeat {
    0% { transform: rotate(-45deg) scale(1); }
    14% { transform: rotate(-45deg) scale(1.1); }
    28% { transform: rotate(-45deg) scale(1); }
    42% { transform: rotate(-45deg) scale(1.1); }
    70% { transform: rotate(-45deg) scale(1); }
    100% { transform: rotate(-45deg) scale(1); }
}