  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: #333;
            padding: 20px 0;
        }

        .container {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        .header {
            background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
            color: white;
            text-align: center;
            padding: 30px 20px;
        }

        .header h1 {
            font-size: 2.5em;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            margin-bottom: 10px;
        }

        .category {
            background: #f8f9fa;
            margin: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .category-header {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #ffd700;
            padding: 15px 20px;
            font-size: 1.5em;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-left: 5px solid #ffd700;
        }

        .menu-items {
            padding: 15px 20px;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px dashed #ddd;
            transition: all 0.3s ease;
        }

        .menu-item:last-child {
            border-bottom: none;
        }

        .menu-item:hover {
            transform: translateX(5px);
            background: rgba(255, 215, 0, 0.1);
            padding-left: 10px;
            border-radius: 5px;
        }

        .item-name {
            font-size: 1.05em;
            color: #2c3e50;
            font-weight: 500;
            flex: 1;
        }

        .item-price {
            background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
            color: #2c3e50;
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: bold;
            min-width: 60px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        }

        .item-price::after {
            content: ' ₺';
            font-size: 0.9em;
        }

        .footer {
            background: #2c3e50;
            color: white;
            text-align: center;
            padding: 20px;
            font-size: 0.9em;
        }

        @media (max-width: 600px) {
            .header h1 {
                font-size: 2em;
            }
            
            .category {
                margin: 15px 10px;
            }
            
            .category-header {
                font-size: 1.2em;
                padding: 12px 15px;
            }

            .item-name {
                font-size: 0.95em;
            }
        }

        .emoji {
            margin-right: 8px;
        }
        .logo {
            width: 80%;
            height: 350px;
            border-radius: 15px;
            
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }   