body {
            padding: 30px 0;
            background: linear-gradient(135deg, #ff5e01, #ff9101);
            font-family: 'Montserrat', Arial, sans-serif;
            margin: 0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #fff;
        }

        button {
            border: none; 
            background: #007bff;
            color: #fff;
            border-radius:4px; 
            cursor: pointer;
            display: flex;
            align-items: center; 
            justify-content: space-between;
        }

        .container {
            background: rgba(255,255,255,0.07);
            border-radius: 18px;
            padding: 40px 30px 30px 30px;
            box-shadow: 0 8px 32px 0 rgba(31,38,135,0.37);
            max-width: 400px;
            width: 100%;
            text-align: center;
        }
        .logo {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            margin-bottom: 18px;
            background: #fff;
        }
        h1 {
            font-size: 2rem;
            margin: 0 0 8px 0;
            letter-spacing: 1px;
            font-weight: 700;
        }
        p {
            font-size: 1rem;
            margin-bottom: 28px;
            color: #f3f3f3;
        }
        .links {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }
        .link {
            background: #fff;
            color: #ff9101;
            text-decoration: none;
            font-weight: 700;
            padding: 14px 0;
            border-radius: 10px;
            transition: background 0.2s, color 0.2s, transform 0.2s;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            font-size: 1.08rem;
            letter-spacing: 0.5px;
        }
        .link:hover {
            background: #ff9101;
            color: #fff;
            transform: translateY(-2px) scale(1.03);
        }
        .socials {
            margin-top: 28px;
            display: flex;
            justify-content: center;
            gap: 18px;
        }
        .socials a {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.2s;
        }
        .socials a:hover {
            color: #ffd700;
        }
        @media (max-width: 500px) {
            .container {
                padding: 30px 8px 20px 8px;
            }
        }