body {
		  margin: 0;
		  overflow: hidden;
		  background-color: black;
		}
		
		.scene {
		  width: 100%;
		  height: 100%;
		  position: fixed;
		  top: 0;
		  left: 0;
      display: none;
		}

		.form-section {
            background: rgba(139, 21, 56, 0.05);
            border: 2px dashed #D4AF37;
            border-radius: 15px;
            padding: 20px;
            margin: 20px 0;
        }

		label {
            background: var(--henna-green);
            color: var(--henna-gold);
            padding: 10px 30px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 30px;
            font-weight: 700;
        }
		
		.credits {
		  position: fixed;
		  bottom: 10px;
		  right: 10px;
		  max-width: 250px;
		  z-index: 10;
		  text-align: right;
		}

		textarea {
            background: rgba(255, 255, 255, 0.9);
            border: 2px solid #D4AF37;
            border-radius: 8px;
            padding: 8px 12px;
            font-family: inherit;
            color: #333;
            width: 100%;
            text-align: center;
            transition: all 0.3s ease;
        }

		.btn-submit-khaliji {
            background: linear-gradient(135deg, #8B1538, #D4AF37);
            color: white;
            border: none;
            padding: 15px 50px;
            font-size: 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 30px auto;
        }

		.henna-names {
			font-size: 3rem;
			color: #1d1f3f;
			text-shadow: 0 10px 20px rgba(0,0,0,0.5);
			margin-bottom: 2rem;
		}

        .btn-submit-khaliji:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
        }
		
		a {
		  display: block;
		  padding: 2px 0;
		  color: #1d1f3f;
		  text-decoration: none;
		  font-family: Helvetica, Verdana, sans-serif;
		  font-size: 15px;
		}
		
		a:hover {
		  text-decoration: underline;
		}
		
		.gift.hidden {
		  display: none;
		}
		
		.gift {
		  position: fixed;
		  top: 0;
		  left: 0;
		  width: 100%;
		  height: 100%;
		  background: black;
		  cursor: pointer;
		}
		
		.gift svg {
		  width: 100%;
		  height: 100%;
		}