.legal-footer { margin-top: 0.5rem; padding: 1rem; font-size: 0.7rem; text-align: center; color: rgba(255,255,255,0.4); }
.legal-links { margin-bottom: 0.5rem; }
.legal-links label { display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.8); }
.legal-links a { color: rgba(255,255,255,0.9); text-decoration: underline; margin: 0 0.2rem; }

.bottom-nav {
    background: linear-gradient(to top, #1a0302, #2c0502);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

.nav-item {
    flex: 1;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item a {
    color: #d4a574;
    text-decoration: none;
    font-size: 0.75rem;
    display: block;
    padding: 0.3rem;
    line-height: 1.3;
    transition: all 0.3s ease;
}

.nav-item:hover a,
.nav-item.active a {
    color: #ffe600;
    transform: scale(1.05);
}

.nav-item::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffe600;
    margin: 0.2rem auto 0;
    transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 60%;
}



.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); display: none; align-items: center; justify-content: center;
    z-index: 9999; backdrop-filter: blur(3px);
}

.modal-btn { background: #25D366; color: white; border: none; padding: 0.8rem 0; border-radius: 2rem; font-size: 1rem; font-weight: bold; cursor: pointer; margin-top: 1rem; width: 100%; box-shadow: 0 3px 8px rgba(37, 211, 102, 0.3); }


.bottom-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 1rem 1rem 0 0;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

.bottom-modal.show {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #7c170f, #9b261e);
    color: white;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-close {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(255,255,255,0.2);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255,255,255,0.3);
    transform: rotate(90deg);
}

.modal-content {
    padding: 1.5rem;
    color: #333;
    line-height: 1.8;
}

.modal-content h3 {
    color: #7c170f;
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
}

.modal-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-backdrop.show {
    display: block;
    opacity: 1;
}

