body {
            font-family: 'Inter', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        .header-font {
            font-family: 'Playfair Display', serif;
        }
        .gradient-bg {
            background: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
        }
        .question-card, .movie-card {
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        .question-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        .movie-card:hover {
             transform: scale(1.03);
        }
        main {
            flex-grow: 1;
        }
        .social-link {
            transition: transform 0.2s ease-in-out;
        }
        .social-link:hover {
            transform: translateY(-3px);
        }