
body {
    background: #0a0a0a;
    color: #fff;
    font-family: Arial, sans-serif;
    padding: 20px;
    margin: 0;
}
h1 {
    text-align: center;
    color: gold;
    margin-bottom: 30px;
}
.grid-3d {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 10px;
}
.grid-3d img {
    width: calc(33.333% - 20px);
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 0 10px #333;
}
@media (max-width: 992px) {
    .grid-3d img {
        width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .grid-3d img {
        width: 100%;
    }
}
.menu-buttons {
    text-align: center;
    margin: 20px 0;
}
.menu-buttons .btn {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 10px 20px;
    margin: 0 10px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease;
}
.menu-buttons .btn:hover {
    background: #e6c200;
}
@media (max-width: 600px) {
    .menu-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        font-size: 16px;
    }
}
.grid-3d {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .grid-box {
    background: #fff;
    padding: 1px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
  }
  
  