﻿.footer-links-row {
            color:White;
            text-align:center;
            margin: auto;
            font-size:.95em;
            padding-top:0.5rem;
        }
        
        @media (max-width:480px)	
{ 
    
    .footer-links-row {
            font-size:0.85em;
           
        }
    
}

        .footer-links-row a {
            text-decoration: none;
        }

        .footer-links-row a:hover {
            text-decoration: underline;
        }

        .link-disclaimer {
            color: #FFFF00;
        }

        .link-copyright {
            color: #FFB6C1;
        }

        .link-privacy {
            color: #00FF00;
        }

        .link-hyperlink {
            color: #FF69B4;
        }

        .link-terms {
            color: #ADFF2F;
        }

        /* MODAL */
        .modal-wrap {
            position: fixed;
            inset: 0;
            background: rgba(10, 20, 40, 0.65);
            backdrop-filter: blur(6px);
            z-index: 200;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        .modal-wrap.open {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-box {
            background: white;
            border-radius: 20px;
            width: 100%;
            max-width: 420px;
            overflow: hidden;
            transform: scale(0.95) translateY(16px);
            transition: transform 0.3s var(--ease-out);
            box-shadow: 0 40px 80px rgba(10, 20, 40, 0.3);
        }

        .modal-wrap.open .modal-box {
            transform: scale(1) translateY(0);
        }

        .modal-head {
            padding: 1.5rem 1.5rem 1.25rem;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 1rem;
            border-bottom: 1px solid #E8E3DC;
        }

        .modal-head-label {
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #8A837C;
            margin-bottom: 0.3rem;
        }

        .modal-title {
            font-family: 'Noto Serif', Georgia, "Times New Roman", serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--ink);
        }

        .modal-close {
            background: #E8E3DC;
            border: none;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            color:#4A4440;
            flex-shrink: 0;
            transition: background 0.2s;
        }

        .modal-close:hover {
            background: #DDD;
        }

        .modal-body {
            padding: 1.5rem;
        }
