/* Custom styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Animation for chess pieces */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.chess-piece {
    animation: float 3s ease-in-out infinite;
}

/* Custom responsive tweaks */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
}