

/* ==========================================================================
   Styles extracted from privacy.html
   ========================================================================== */

body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 800px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        h1 {
            color: #2c3e50;
            border-bottom: 2px solid #eee;
            padding-bottom: 10px;
        }

        h2 {
            color: #e67e22;
            margin-top: 30px;
            border-left: 5px solid #e67e22;
            padding-left: 10px;
        }

        p {
            margin-bottom: 15px;
        }

        ul {
            margin-bottom: 15px;
        }

        li {
            margin-bottom: 5px;
        }

        a {
            color: #3498db;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        .footer {
            margin-top: 50px;
            font-size: 0.9em;
            color: #777;
            border-top: 1px solid #eee;
            padding-top: 20px;
            text-align: center;
        }

        /* --- HERO SECTION STYLES --- */
        .hero-section {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            border-radius: 24px;
            padding: 40px 20px;
            text-align: center;
            color: white;
            margin-bottom: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 10%, transparent 50%);
            animation: rotateBG 20s linear infinite;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes rotateBG {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .hero-banner-img {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: 15px;
            margin: 0 auto 20px auto;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            display: block;
        }

        .hero-title {
            font-size: 24px;
            font-weight: 800;
            margin: 0 0 10px 0;
            position: relative;
            z-index: 1;
            letter-spacing: -0.5px;
            background: linear-gradient(to right, #fff, #cbd5e1);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            border-bottom: none;
            padding-bottom: 0;
        }

        .hero-subtitle {
            font-size: 14px;
            line-height: 1.5;
            opacity: 0.85;
            margin: 0 auto 20px;
            max-width: 90%;
            position: relative;
            z-index: 1;
        }

        .hero-buttons {
            display: flex;
            gap: 10px;
            justify-content: center;
            position: relative;
            z-index: 1;
            width: 100%;
        }

        .hero-buttons>* {
            flex: 1;
        }

        .btn-primary,
        .btn-secondary {
            padding: 10px 8px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            border: none;
            transition: transform 0.1s, opacity 0.2s;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-sizing: border-box;
            font-family: inherit;
            line-height: 1;
        }

        .btn-primary {
            background: linear-gradient(135deg, #0ea5e9, #2563eb);
            color: white;
            box-shadow: 0 4px 10px rgba(14, 165, 233, 0.3);
        }

        .btn-primary:hover {
            color: white;
            text-decoration: none;
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .btn-secondary:hover {
            color: white;
            text-decoration: none;
        }

        .btn-primary:active,
        .btn-secondary:active {
            transform: scale(0.95);
        }

        /* --- SHARE BUTTON & TOAST --- */
        .share-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            transition: all 0.2s ease;
            backdrop-filter: blur(5px);
            font-size: 18px;
        }

        .share-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .share-btn:active {
            transform: scale(0.9);
        }

        .toast-notification {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #2563eb;
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
            opacity: 0;
            transition: opacity 0.3s, transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 100000;
            display: flex;
            align-items: center;
            gap: 10px;
            pointer-events: none;
        }

        .toast-notification.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }