/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  overflow-x: hidden;
  background: black;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  max-width: 500px;
}

/* LOGO - unchanged */
.hero-logo {
  width: 280px;
  max-width: 85vw;
  height: auto;
}

/* BUTTON - Now smaller, tighter, more refined */
.button-container {
  cursor: pointer;
  background: linear-gradient(135deg,
    #ff5a00 0%,
    #ff8c00 25%,
    #ffaa00 50%,
    #ffd700 75%,
    #ffff66 100%
  );
  background-size: 200% 200%;
  border: none;
  padding: 11px 18px;               
  clip-path: polygon(
    0% 0%,
    64% 0%,
    64% 10%,
    70% 10%,
    75% 1%,
    100% 0%,
    100% 80%,
    95% 100%,
    42% 100%,
    42% 90%,
    34% 90%,
    34% 100%,
    5% 100%,
    0% 80%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s ease-in-out;
  position: relative;
  overflow: hidden;

  /* Smaller & perfectly balanced size */
  min-width: 160px;     
  max-width: 230px;     
  width: 68vw;          
}

/* .button-container:hover {
  background: linear-gradient(90deg,
    #ff8000 0%,
    #00ccff 20%,
    #00d4ff 50%,
    #0099ff 80%,
    #0066ff 100%
  );
  background-size: 200% 200%;
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 200, 255, 0.4);
} */

.button-container:active {
  transform: translateY(4px);
}


.button-container a:link {
  text-decoration: none;
}

/* Shine & Content */
.b-m-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;                    
  -webkit-mask-image: linear-gradient(-75deg, #000 30%, #000 50%, rgba(0,0,0,0.15) 70%);
  -webkit-mask-size: 200%;
  animation: shine 3.5s linear infinite;
}

@keyframes shine {
  0%   { -webkit-mask-position: 150%; }
  100% { -webkit-mask-position: -50%; }
}

.b-m-text {
  text-transform: uppercase;
  font-size: 15px;              
  color: #ffffff;
  font-weight: 900;
  font-family: "Franklin Gothic Medium", "Arial Black", sans-serif;
  letter-spacing: 1.8px;      
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
  white-space: nowrap;
}

.b-m-icon {
  width: 14px;                  
  height: 14px;
  flex-shrink: 0;
}

.b-m-icon svg {
  fill: #fff;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px rgba(255,255,255,0.8));
}

/* RESPONSIVE — Even better on small devices */
@media (max-width: 480px) {
  .hero-content { gap: 32px; }
  .hero-logo { width: 230px; }
  .button-container {
    padding: 10px 16px;
    min-width: 150px;
    max-width: 200px;
  }
  .b-m-text { font-size: 14px; letter-spacing: 1.6px; }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero-logo { width: 260px; }
  .button-container { max-width: 220px; }
}

@media (min-width: 769px) {
  .hero-logo { width: 280px; }
  .button-container { max-width: 230px; }
}
