body {
    overflow : hidden;
    position: relative;
}

.flex-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

 /* Footer avec disclaimer */
        .footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(26, 26, 46, 0.9);
            border-top: 2px solid #34495e;
            padding: 15px 20px;
            text-align: center;
            backdrop-filter: blur(10px);
        }

        .disclaimer {
            font-size: 15px;
            color: #e17055;
            text-shadow: 2px 2px 0px #2c3e50;
            line-height: 1.4;
            max-width: 800px;
            margin: 0 auto;
        }

        .disclaimer::before {
            content: '⚠️ ';
            font-size: 16px;
        }

        .btn-play {
            background: #e75c5c;
            color: #ecf0f1;
            border-color: #bd0e0e;
            box-shadow: 0 4px 0px #620505, 0 8px 10px rgba(0, 0, 0, 0.3);
        }

.btn-play:hover {
	background: #cf974f;
	transform: translateY(2px);
	border-color: #4f3009;
	box-shadow:
		0 4px 0px #9f6220,
		0 8px 10px rgba(0, 0, 0, 0.3);
}
        .btn {
            font-family: 'Press Start 2P', monospace;
            font-size: 16px;
            padding: 24px 40px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.2s ease;
            text-transform: uppercase;
            margin-right: 15px;
            position: relative;
            border: 2px solid;
            border-top-color: currentcolor;
            border-right-color: currentcolor;
            border-bottom-color: currentcolor;
            border-left-color: currentcolor;
        }