@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=MedievalSharp&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            cursor: url('mouse.cur'), auto;
        }
        
        body {
            font-family: 'Cinzel', serif;
            background: url('last.webp') no-repeat center center fixed;
            background-size: cover;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 20vh;
            padding: 1px;
            position: relative;
            overflow: hidden;
            cursor: url('mouse.cur'), auto;
        }
        
        body::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0; bottom: 0;
            background: 
                radial-gradient(circle at 20% 30%, rgba(232, 123, 30, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(232, 123, 30, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .menu-container {
            position: relative;
            width: 650px;
            height: auto; 
            min-height: 595px;
            background: linear-gradient(135deg, rgba(26, 10, 0, 0.95) 0%, rgba(61, 26, 0, 0.95) 50%, rgba(122, 53, 0, 0.95) 100%);
            border: 2px solid #E87B1E;
            border-radius: 15px;
            padding: 1px 42px;
            box-shadow: 
                0 0 50px rgba(232, 123, 30, 0.5),
                inset 0 0 30px rgba(232, 123, 30, 0.1),
                0 20px 60px rgba(0, 0, 0, 0.9);
            animation: containerGlow 3s ease-in-out infinite;
        }
        
        @keyframes containerGlow {
            0%, 100% {
                box-shadow: 
                    0 0 50px rgba(232, 123, 30, 0.5),
                    inset 0 0 30px rgba(232, 123, 30, 0.1),
                    0 20px 60px rgba(0, 0, 0, 0.9);
            }
            50% {
                box-shadow: 
                    0 0 70px rgba(232, 123, 30, 0.7),
                    inset 0 0 40px rgba(232, 123, 30, 0.2),
                    0 20px 80px rgba(0, 0, 0, 0.9);
            }
        }
        
        .ornate-border {
            position: absolute;
            top: 10px; left: 10px; right: 10px; bottom: 10px;
            border: 1px solid rgba(232, 123, 30, 0.3);
            border-radius: 15px;
            pointer-events: none;
        }
        
        .corner-decoration {
            position: absolute;
            width: 22px;
            height: 22px;
            border: 2px solid #F0A050;
            pointer-events: none;
        }
        
        .corner-decoration.tl { top: 15px; left: 15px; border-right: none; border-bottom: none; border-radius: 6px 0 0 0; }
        .corner-decoration.tr { top: 15px; right: 15px; border-left: none; border-bottom: none; border-radius: 0 6px 0 0; }
        .corner-decoration.bl { bottom: 15px; left: 15px; border-right: none; border-top: none; border-radius: 0 0 0 6px; }
        .corner-decoration.br { bottom: 15px; right: 15px; border-left: none; border-top: none; border-radius: 0 0 6px 0; }
        
        .logo-section {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }
        
        .logo-glow {
            position: absolute;
            top: 50%; left: 50%;
            transform: translate(-50%, -50%);
            width: 150px; height: 75px;
            background: radial-gradient(circle, rgba(232, 123, 30, 0.4) 0%, transparent 70%);
            animation: logoGlow 2s ease-in-out infinite;
        }
        
        @keyframes logoGlow {
            0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
        }
        
        .logo-image {
            width: 180px;
            height: auto;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 0 15px rgba(232, 123, 30, 0.8)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.9));
            animation: logoFloat 3s ease-in-out infinite;
        }
        
        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }
        
        .logo-subtitle {
            font-size: 10px;
            color: #F0A050;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-top: 6px;
            position: relative;
            z-index: 1;
            text-shadow: 0 0 10px rgba(232, 123, 30, 0.8);
        }
        
        .menu-items {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }
        
        .menu-item {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 13px 18px;
            background: linear-gradient(135deg, rgba(122, 53, 0, 0.4) 0%, rgba(61, 26, 0, 0.3) 100%);
            border: 2px solid #E87B1E;
            border-radius: 9px;
            cursor: url('mouse.cur'), pointer !important;
            transition: all 0.3s ease;
            overflow: hidden;
            text-decoration: none;
        }
        
        .menu-item::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(232, 123, 30, 0.4), transparent);
            transition: left 0.5s ease;
        }
        
        .menu-item:hover::before { left: 100%; }
        
        .menu-item:hover {
            background: linear-gradient(135deg, rgba(232, 123, 30, 0.5) 0%, rgba(122, 53, 0, 0.4) 100%);
            border-color: #F0A050;
            transform: translateX(10px);
            box-shadow: 0 0 25px rgba(232, 123, 30, 0.6), inset 0 0 15px rgba(232, 123, 30, 0.2);
        }
        
        .menu-item:active { transform: translateX(8px) scale(0.98); }
        
        .menu-icon {
            width: 38px; height: 38px;
            background: radial-gradient(circle, rgba(232, 123, 30, 0.3) 0%, transparent 70%);
            border: 2px solid #E87B1E;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            margin-right: 15px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .menu-item:hover .menu-icon {
            background: radial-gradient(circle, rgba(232, 123, 30, 0.5) 0%, rgba(240, 160, 80, 0.3) 70%);
            border-color: #FFD9A8;
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 20px rgba(232, 123, 30, 0.8);
        }
        
        .menu-text {
            flex: 1;
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 0 10px;
        }
        
        .menu-title {
            font-size: 15px;
            font-weight: 700;
            color: #FFD9A8;
            letter-spacing: 0.8px;
            text-shadow: 0 0 10px rgba(255, 217, 168, 0.8);
            margin-bottom: 3px;
            transition: all 0.3s ease;
        }
        
        .menu-item:hover .menu-title {
            color: #FFFFFF;
            text-shadow: 0 0 15px rgba(255, 217, 168, 1);
        }
        
        .menu-description {
            font-size: 8px;
            color: #F0A050;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            transition: all 0.3s ease;
        }
        
        .menu-item:hover .menu-description { color: #FFD9A8; }
        
        .menu-arrow {
            font-size: 18px;
            color: #E87B1E;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }
        
        .menu-item:hover .menu-arrow {
            color: #FFD9A8;
            transform: translateX(5px);
        }
        
        .particles {
            position: absolute;
            width: 100%; height: 100%;
            top: 0; left: 0;
            pointer-events: none;
            overflow: hidden;
        }
        
        .particle {
            position: absolute;
            width: 4px; height: 4px;
            background: #F0A050;
            border-radius: 50%;
            opacity: 0;
            animation: particleFloat 4s infinite;
            box-shadow: 0 0 6px rgba(232, 123, 30, 0.8);
        }
        
        @keyframes particleFloat {
            0% { transform: translateY(0) translateX(0); opacity: 0; }
            10% { opacity: 1; }
            90% { opacity: 1; }
            100% { transform: translateY(-100px) translateX(20px); opacity: 0; }
        }
        
        .particle:nth-child(1) { left: 10%; bottom: -10px; animation-delay: 0s; }
        .particle:nth-child(2) { left: 30%; bottom: -10px; animation-delay: 1s; }
        .particle:nth-child(3) { left: 50%; bottom: -10px; animation-delay: 2s; }
        .particle:nth-child(4) { left: 70%; bottom: -10px; animation-delay: 1.5s; }
        .particle:nth-child(5) { left: 90%; bottom: -10px; animation-delay: 0.5s; }
        
        .sparkle {
            position: absolute;
            width: 2px; height: 2px;
            background: #FFD9A8;
            border-radius: 50%;
            box-shadow: 0 0 8px rgba(255, 217, 168, 1);
            animation: sparkleFloat 6s infinite;
        }
        
        @keyframes sparkleFloat {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
            25% { opacity: 1; }
            75% { opacity: 0.5; }
            100% { transform: translateY(-150px) scale(0); opacity: 0; }
        }
        
        .sparkle:nth-child(6) { left: 15%; bottom: 0; animation-delay: 0.5s; }
        .sparkle:nth-child(7) { left: 45%; bottom: 0; animation-delay: 1.5s; }
        .sparkle:nth-child(8) { left: 75%; bottom: 0; animation-delay: 2.5s; }
        .sparkle:nth-child(9) { left: 25%; bottom: 0; animation-delay: 3s; }
        .sparkle:nth-child(10) { left: 65%; bottom: 0; animation-delay: 4s; }
        
        @media (max-width: 500px) {
            .menu-container { padding: 30px 20px; }
            .logo-title { font-size: 36px; }
            .logo-subtitle { font-size: 11px; letter-spacing: 3px; }
            .menu-item { padding: 15px 20px; }
            .menu-icon { width: 40px; height: 40px; font-size: 20px; margin-right: 15px; }
            .menu-title { font-size: 16px; }
            .menu-description { font-size: 9px; }
        }