
        /* Reset et structure de base */
        * { box-sizing: border-box; }
        
        body, html { 
            margin: 0; 
            padding: 0; 
            width: 100%;
            min-height: 100vh; /* Utilise toute la hauteur de l'écran */
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
        }

        
        .bg-container {
            background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("bg1.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            background-attachment: fixed; /* L'image reste fixe si on scroll */
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px; /* Espace pour pas que ça colle sur mobile */
        }

        /* Boîte de contenu responsive */
        .content-box {
            background: rgba(0, 0, 0, 0.8); /* Noir plus profond pour le texte */
            color: white;
            padding: 40px 30px;
            text-align: center;
            border-radius: 12px;
            max-width: 600px;
            width: 100%;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

		h1 {
			font-family: 'Inter', sans-serif; /* Une police très "Tech" */
			letter-spacing: -1px; /* Colle les lettres un peu pour le look logo */
			
		}

        p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            color: #ddd;
        }

        /* Le bouton d'achat GoDaddy */
        .btn-buy {
            background-color: #e41e26; /* Rouge Hockey */
            color: white;
            padding: 18px 35px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            border-radius: 6px;
            display: inline-block;
            transition: transform 0.2s, background-color 0.2s;
            text-transform: uppercase;
        }

        .btn-buy:hover {
            background-color: #ff2a32;
            transform: translateY(-2px);
        }

        .footer-text {
            margin-top: 20px;
            font-size: 0.85rem;
            color: #888;
        }
		
		.highlight1 {
			color: #007BFF; /* Le bleu dont on parlait */
			font-weight: 650; /* Un peu plus gras que le reste */
		}
		