body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
    margin: 0;
}

.container {
    max-width: 400px;
    margin: 50px auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

h1 {
    text-align: center;
}

input, select {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ddd;
}

button {
    width: 100%;
    padding: 12px;
    background: #ff4b5c;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

button:hover {
    background: #ff1e3c;
    transform: scale(1.05);
}
a {
    display: block;
    margin: 10px 0;
    padding: 10px;
    background: #222;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
}

a:hover {
    background: #ff4b5c;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 10px;
    padding: 20px;
}

.gallery-item {
    width: 100%;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}
body {
    font-family: 'Poppins', sans-serif;
    background: #0f0f0f;
    color: white;
}

/* Glass UI */
.container {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
}

/* Inputs */
input, select, textarea {
    background: #1a1a1a;
    color: white;
    border: none;
}

/* Buttons */
button {
    background: linear-gradient(45deg,#ff4b5c,#ff7a7a);
    transition: 0.3s;
}

button:hover {
    transform: scale(1.05);
}

/* Neon text */
h1, h2 {
    background: linear-gradient(45deg,#ff4b5c,#ff7a7a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg,#ff4b5c,#1a1a1a);
}

.btn {
    padding: 12px 25px;
    background: white;
    color: black;
    border-radius: 25px;
    text-decoration: none;
}

#addressBox {
    transition: 0.3s ease;
}