body {
    background-color: #fcfaf5; 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
    color: #2c2c2c;
    font-family: 'Georgia', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    max-width: 450px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
}

.bookmark-hint {
    margin-top: 30px;
    font-size: 0.8rem;
    color: #8c8c8c;
    font-style: italic;
    border-top: 1px solid #e0e0e0;
    padding-top: 15px;  
}

.site-footer {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: #a0a0a0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-link {
    color: #a0a0a0;
    text-decoration: none;
    border-bottom: 1px dotted #ccc;
    transition: 0.3s;
}

.footer-link:hover {
    color: #d4af37;
    border-bottom: 1px solid #d4af37;
}

@media (max-height: 700px) {
    .site-footer {
        position: relative;
        margin-top: 20px;
        padding-bottom: 20px;
    }
}

.portrait {
    width: 150px;      
    height: 150px;
    border-radius: 50%; 
    object-fit: cover;  
    object-position: center; 
    border: 2px solid #d4af37;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background-color: #fff; 
}

.btn-main {
    background: #d4af37;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    opacity: 0.4;
    pointer-events: none; 
}

.btn-main.active {
    opacity: 1;
    pointer-events: auto;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.result-card {
    margin-top: 25px;
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
    animation: fadeIn 0.8s ease-in;
}

.result-card h3, .video-link {
    line-height: 1.5; 
    display: block; 
    margin-bottom: 15px;
    font-size: 1.1rem; 
}

.video-link {
    color: #1a1a1a;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: bold;
}

.calendar-options {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-cal {
    flex: 1;
    padding: 10px;
    font-size: 0.8rem;
    text-decoration: none;
    border: 1px solid #d4af37;
    color: #d4af37;
    transition: 0.2s;
}

.btn-cal:hover {
    background: #d4af37;
    color: white;
}

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