/* =========================================================
   ELECTRONIC SHOW V7 — BASE
   Global structure, typography, buttons and helpers
   ========================================================= */

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}

body{
background:#0A0A0A;
color:#FFF;
font-family:Arial,sans-serif;
line-height:1.6;
overflow-x:hidden;
}

.center{text-align:center}
.blue{color:#0066FF}

.section{
max-width:1180px;
margin:0 auto;
padding:100px 22px;
}

.section-title{
font-size:clamp(38px,5vw,68px);
line-height:1;
text-transform:uppercase;
margin-bottom:30px;
}

.button{
display:inline-block;
padding:18px 55px;
min-width:280px;
border-radius:3px;
font-weight:bold;
text-transform:uppercase;
font-size:13px;
letter-spacing:2px;
text-decoration:none;
text-align:center;
transition:.25s;
}

.button.primary{
background:#0066FF;
color:#FFF;
box-shadow:0 0 30px rgba(0,102,255,.45);
}

.button.primary:hover{
background:#FFF;
color:#0A0A0A;
transform:translateY(-2px);
}

hr{
border:0;
height:1px;
background:linear-gradient(90deg,transparent,#0066FF,transparent);
opacity:.35;
}
