@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background:  linear-gradient(-45deg, #3e68f5, #4845ee, #2679df, #427fc5);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  color:  #ffffff;
  min-height: 100vh;
}

/* NAVBAR */
nav {
  background:  linear-gradient(-45deg, #365bd3, #3d3bca, #226ac2, #3a71af);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav h1 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  transition: 0.2s;
}
nav h1:hover {
  font-size: 22px;
  font-weight: 700;
  color: #f0f0f0;
  cursor: pointer;
}

nav a {
  text-decoration: none;
  color: #dadada;
  margin-left: 20px;
  font-weight: 500;
  transition: 0.2s;
}

nav a:hover {
  color: #f0f0f0;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  animation: fadeIn 0.6s ease;
}

/* TITLES */
h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  color: #dadada;
  margin-bottom: 35px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.card {
  background:  linear-gradient(-45deg, #365bd3, #3d3bca, #226ac2, #3a71af);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
}

.card span {
  font-size: 42px;
  display: block;
  margin-bottom: 15px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.card p {
  font-size: 14px;
  color: #dadada;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* CONTENT */
.content-box {
  background:  linear-gradient(-45deg, #365bd3, #3d3bca, #226ac2, #3a71af);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  border-radius: 20px;
  padding: 30px;
  margin-top: 25px;
  line-height: 1.8;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* VIP */
.vip-box {
  max-width: 420px;
  margin: auto;
  background:  linear-gradient(-45deg, #365bd3, #3d3bca, #226ac2, #3a71af);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
  border-radius: 22px;
  padding: 35px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.vip-box input {
  width: 100%;
  padding: 14px;
  margin: 18px 0;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  outline: none;
}

.vip-box button {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: #2563eb;
  color: white;
  font-weight: 600;
  cursor: pointer;
}

.vip-box button:hover {
  background: #1d4ed8;
}

.hidden {
  display: none;
}

/* ANIMATION */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

img{
  width: 150px ;
  height: 200px ;
}

a{
  color: #dadada;
}