<!DOCTYPE html>
<html lang="it">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>SCOPAMICI | LOGIN</title>
    <meta name="description" content="Scopri SCOPAMICI: la piattaforma fresca e coinvolgente per incontri reali e connessioni autentiche. Entra ora e vivi nuove emozioni.">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: linear-gradient(to right, #f8bbd0, #bbdefb);
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            color: #333;
            text-align: center;
        }

        .box-main {
            max-width: 520px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 6px 16px rgba(0,0,0,0.25);
            border: 2px solid #7c4dff;
        }

        h1 {
            font-size: 2em;
            color: #7c4dff;
            margin: 10px 0;
        }

        h2 {
            font-size: 1.4em;
            color: #444;
            margin: 10px 25px 25px 25px;
        }

        .txt-verifica {
            font-size: 1.2em;
            color: #333;
            margin: 20px;
        }

        .btn-conferma {
            display: inline-block;
            text-decoration: none;
            color: white;
            background: #7c4dff;
            padding: 18px 65px; 
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.4em; 
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: background 0.3s ease-in-out, transform 0.2s;
            box-shadow: 0 6px 16px rgba(124, 77, 255, 0.6);
            animation: pulse 2s infinite;
        }

        .btn-conferma:hover {
            background: #651fff;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        svg text {
            fill: #7c4dff;
        }

        svg circle {
            stroke: #7c4dff;
        }
		
        a {
            text-decoration: none;
            color: inherit;
        }

        @media (max-width: 600px) {
            .box-main {
                padding: 10px;
                max-width: 95%;
            }

            h1 {
                font-size: 1.9em;
            }

            h2 {
                font-size: 1.3em;
            }

            .btn-conferma {
                font-size: 1.2em;
                padding: 15px 55px;
            }
        }
    </style>
</head>
<body>
    <div class="box-main">
        <h1>SCOPAMICI: L'INIZIO DEL TUO VIAGGIO ROMANTICO</h1>
        <h2>Accedi ora e vivi qualcosa di unico</h2>
        <a href="scopamici-enter.php">
            <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">
                <circle cx="100" cy="100" r="72" fill="white" stroke-width="8"/>
                <text x="50%" y="54%" font-family="Arial, sans-serif" font-weight="bold" font-size="72" text-anchor="middle" alignment-baseline="middle">18+</text>
            </svg>
        </a>
        <p class="txt-verifica">Sei maggiorenne (18+) e pronto a scoprire nuove esperienze entusiasmanti su <a href="https://scopamici.click/">Scopamici</a>?</p>
        <a href="scopamici-enter.php" class="btn-conferma">ENTRA</a>
    </div>
</body>
</html>
