* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  margin: 0;
  padding: 0;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.hero{
position:relative;

display:flex;
align-items:center;
justify-content:center;

height:100vh;

background-size:cover;
background-position:center;
background-repeat:no-repeat;
}

.hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

background:rgba(0,0,0,0.10);
}
  z-index: 1;
}

.hero-content{
position:relative;
z-index:2;

display:flex;
flex-direction:column;

align-items:center;
justify-content:center;

text-align:center;

max-width:700px;
margin:0 auto;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.gameplay-img{
display:block;
margin:25px auto;

width:100%;
max-width:520px;

border-radius:14px;
}

.description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #e0e0e0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.description {
margin-bottom: 30px;
}

.cta-button{

display:block;
margin:30px auto;

width:520px;
max-width:100%;

background:#e63946;
color:white;

padding:26px 0;

font-size:28px;
font-weight:700;

border:none;
border-radius:60px;

cursor:pointer;

animation:pulse 2s infinite;
}
@keyframes pulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}
.cta-button:hover {
  background: linear-gradient(135deg, #f14a54, #e63946);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(230, 57, 70, 0.8), 0 0 80px rgba(230, 57, 70, 0.5);
  animation: none;
}

.cta-button:active {
  transform: scale(1.05);
}

footer {
  display: none;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .gameplay-img {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  

  .cta-button {
    padding: 22px 60px;
    font-size: 20px;
    max-width: 100%;
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .cta-button {
    padding: 18px 48px;
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
