* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    background-color: black;
    color: #fff;
        text-decoration: none;
}
a {
    /* color: #fff; */
    text-decoration: none;
}
/* Zoom animation for order buttons */
.zoom {
    width: 100%;
    max-width: 400px;
    height: auto;
    animation: zoomInOut 4s infinite alternate;
    transition: transform 0.3s ease;
}

.zoom:hover {
    transform: scale(1.05);
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Order button styles */
.order-button {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin: 20px auto;
    display: block;
    text-decoration: none;
}

.order-button:hover {
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Green text utility */
.green-text {
    color: #4CAF50 !important;
    font-weight: bold;
}

/* P margin utility */
.p_margin {
    margin: 20px 0;
}

/* New back section styles */
.new_back {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    color: black;
}

.new_back1 {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    /* color: white; */
}

.new_back2 {
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    margin: 20px 0;
}

.new_back3 {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
}

/* Simple set list styles */
.simple_set {
    list-style: none;
    padding: 0;
}

.simple_set li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.simple_set img {
    margin-right: 15px;
    flex-shrink: 0;
}

/* Highlight box styles */
.highlight-box {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.highlight-box span {
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Responsive order button sizes */
@media (max-width: 768px) {
    .order-button {
        padding: 12px 25px;
        font-size: 16px;
        width: 90%;
        max-width: 300px;
    }
    
    .zoom {
        max-width: 300px;
    }
    
    .new_back1 {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .order-button {
        padding: 10px 20px;
        font-size: 14px;
        width: 95%;
        max-width: 250px;
    }
    
    .zoom {
        max-width: 250px;
    }
    
    .new_back1 {
        font-size: 18px;
    }
    
    .simple_set li {
        flex-direction: column;
        text-align: center;
    }
    
    .simple_set img {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 480px) {
    .order-button {
        padding: 8px 16px;
        font-size: 12px;
        width: 100%;
    }
    
    .zoom {
        max-width: 200px;
    }
    
    .new_back1 {
        font-size: 16px;
    }
}

/* Prevent zoom on iOS */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input, textarea, select {
        font-size: 16px;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}