html,body{
margin:0;
padding:0;
height:100%;
font-family:Arial,Helvetica,sans-serif;
overflow-x:hidden;
background:#000;
color:#fff;
}

#bgvideo{
position:fixed;
top:0;
left:0;
width:100vw;
height:100vh;
object-fit:cover;
z-index:1;
pointer-events:none;
}

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.35);
z-index:2;
}

nav{
position:fixed;
top:0;
left:0;
right:0;
height:72px;
display:flex;
justify-content:center;
align-items:center;
gap:30px;
background:rgba(0,0,0,.35);
backdrop-filter:blur(8px);
z-index:1000;
}

nav a{
color:#D4AF37;
text-decoration:none;
font-weight:bold;
}

.page{
position:relative;
z-index:10;
padding-top:90px;
width:min(1400px,95%);
margin:auto;
}

.logo{
display:block;
margin:20px auto;
width:min(650px,70%);
filter:drop-shadow(0 0 25px rgba(0,0,0,.9));
}

.card{
background:rgba(0,0,0,.45);
backdrop-filter:blur(12px);
border:1px solid rgba(212,175,55,.30);
border-radius:20px;
padding:30px;
margin:30px 0;
}

.button{
display:inline-block;
padding:15px 30px;
background:#D4AF37;
color:#000;
font-weight:bold;
text-decoration:none;
border-radius:35px;
margin:10px;
}

footer{
position:relative;
z-index:10;
padding:40px;
text-align:center;
background:rgba(0,0,0,.35);
}

#musicbox{

position:fixed;

bottom:20px;

right:20px;

z-index:99999;

background:rgba(0,0,0,.65);

padding:12px;

border-radius:15px;

backdrop-filter:blur(10px);

}

#musicBtn{

background:#D4AF37;

color:#000;

padding:12px 18px;

border:0;

border-radius:10px;

cursor:pointer;

font-weight:bold;

}


.hero{
padding:60px 20px;
text-align:center;
}

.subtitle{
font-size:24px;
margin-bottom:30px;
}

.hero-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:30px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap:25px;
margin-top:30px;
}

.service-card{
background:rgba(0,0,0,.45);
border:1px solid rgba(212,175,55,.35);
border-radius:18px;
padding:25px;
text-align:center;
backdrop-filter:blur(8px);
}

.service-card h3{
color:#D4AF37;
margin-top:0;
}

.service-card h2{
font-size:34px;
margin:15px 0;
}

.pricing{

width:100%;

border-collapse:collapse;

margin-top:20px;

}

.pricing th{

background:#D4AF37;

color:#000;

padding:15px;

}

.pricing td{

padding:15px;

border-bottom:1px solid rgba(255,255,255,.15);

}

.pricing tr:hover{

background:rgba(255,255,255,.05);

}


footer h3{

color:#D4AF37;

font-size:28px;

margin-bottom:10px;

}

footer p{

line-height:1.8;

font-size:18px;

}


input[type=text]{

width:100%;

padding:15px;

font-size:18px;

margin:20px 0;

border-radius:12px;

border:1px solid #888;

background:#222;

color:white;

box-sizing:border-box;

}

