* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), 
                url('https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    max-width: 450px;
    transition: 0.3s;
}

.container:hover {
    transform: scale(1.02);
}

.order-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.order-container p {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #fff;
    font-weight: 500;
}



h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #ddd;
}

button {
    padding: 15px 45px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    background-color: #dfa579; 
    color: #2c1810;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(223, 165, 121, 0.3);
    transition: all 0.4s ease;
}

button:hover {
    background-color: white;
    color: #4b3621;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}