* { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: linear-gradient(135deg, #3b3c41 0%, #c82b94 100%); min-height: 100vh; padding: 40px 20px; } h1 { color: white; font-size: 2.5em; margin-bottom: 30px; text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); } p { background: white; padding: 20px; border-radius: 8px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); font-size: 1.1em; } ul { list-style: none; background: white; padding: 20px; border-radius: 8px; margin-bottom: 30px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } li { padding: 12px 0; border-bottom: 1px solid #eee; font-size: 1.05em; transition: transform 0.2s ease; display: inline-block; } li:hover { transform: translateX(10px); color: #667eea; } li:last-child { border-bottom: none; } a, button { display: inline-block; background: white; color: #667eea; padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); border: none; cursor: pointer; font-family: inherit; } a:hover, button:hover { background: #667eea; color: white; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); }