body {
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(to bottom, #f0e6ff, #e6f0ff);
    margin: 0;
    padding: 20px;
    color: #333;
}
        
        .container {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            border: 8px solid #333;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            overflow: hidden;
        }
        
        header {
            background: #ff6b6b;
            color: white;
            text-align: center;
            padding: 20px;
            border-bottom: 8px solid #333;
        }
        
        h1 {
            margin: 0;
            font-size: 2.8em;
            text-shadow: 3px 3px 0 #333;
        }
        
        .subtitle {
            font-size: 1.3em;
            margin-top: 5px;
            opacity: 0.9;
        }
        
        .controls {
            background: #333;
            color: white;
            padding: 15px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
            justify-content: center;
        }
        
        .nav-buttons {
            display: flex;
            gap: 10px;
        }
        
        button {
            font-family: 'Comic Neue', cursive;
            font-size: 1.1em;
            padding: 12px 24px;
            border: 4px solid #333;
            background: #ffd93d;
            color: #333;
            cursor: pointer;
            border-radius: 8px;
            font-weight: bold;
            transition: all 0.2s;
        }
        
        button:hover {
            background: #ff6b6b;
            color: white;
            transform: scale(1.05);
        }
        
        button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }
        
        .dropdown {
            padding: 12px 16px;
            font-size: 1.1em;
            border: 4px solid #333;
            border-radius: 8px;
            background: white;
            color: #333;
            min-width: 280px;
        }
        
        .comic-container {
            padding: 30px;
            text-align: center;
            background: #fff9e6;
            min-height: 600px;
            position: relative;
        }
        
        .comic-panel {
            max-width: 100%;
            height: auto;
            border: 8px solid #333;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            transition: all 0.4s ease;
        }
        
        .comic-panel:hover {
            transform: scale(1.02);
        }
        
        .caption {
            margin-top: 20px;
            font-size: 1.4em;
            font-weight: bold;
            color: #333;
            min-height: 60px;
            text-align: center;
        }
        
        .counter {
            position: absolute;
            top: 20px;
            right: 30px;
            background: #333;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 1.1em;
        }
        
        footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 15px;
            font-size: 0.9em;
        }
        
        .speech-bubble {
            position: absolute;
            background: white;
            border: 4px solid #333;
            padding: 10px 15px;
            border-radius: 20px;
            font-size: 1.1em;
            max-width: 220px;
            box-shadow: 4px 4px 0 #333;
        }