:root {
    --pink: #ff1493;
    --teal: #008080;
    --orange: #ff4500;
    --violet: #8a2be2;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: #000;
    color: #fff;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--pink), var(--violet));
    -webkit-background-clip:text;
    color: transparent;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
    transition: 0.3s;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--teal), var(--violet));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 20%, #000 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #111;
}

.highlight-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: 0.3s;
}

.highlight-item:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.1);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--pink), var(--violet));
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.highlight-icon::before {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-icon.gameplay::before {
    content: '🎮';
}

.highlight-icon.worlds::before {
    content: '🌟';
}

.highlight-icon.rewards::before {
    content: '🎁';
}

.highlight-icon.art::before {
    content: '🎨';
}

.about {
    padding: 6rem 2rem;
    background: linear-gradient(to right, var(--teal), var(--violet));
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.6;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: #111;
}

.game-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.game-card img {
    width: 100%;
    height: auto;
    transition: 0.3s;
}

.game-card:hover img {
    transform: scale(1.1);
}

.play-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.8rem 2rem;
    background: var(--pink);
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: 0.3s;
}

.play-button:hover {
    background: var(--violet);
    transform: translateX(-50%) scale(1.1);
}

.contact-section {
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, var(--teal), var(--violet));
}

.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
}

.contact-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--pink);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
}

.submit-btn {
    padding: 1rem;
    border: none;
    border-radius: 25px;
    background: var(--pink);
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: var(--violet);
    transform: scale(1.05);
}

.legal-section {
    min-height: 100vh;
    padding: 120px 2rem 2rem;
    background: linear-gradient(135deg, var(--teal), var(--violet));
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
}

.legal-container h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--pink);
}

.legal-content {
    color: #fff;
}

.legal-content h2 {
    color: var(--orange);
    margin: 1.5rem 0 1rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    margin-left: 2rem;
}

footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    transition: 0.3s;
}

.footer-links a:hover,
.footer-links a.active {
    color: var(--pink);
}
.hero {
  height: 100vh;
  background: radial-gradient(circle at 20% 20%, #FF0080, #6B00FF, #0B0B0B);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Orbitron', sans-serif;
  position: relative;
  overflow: hidden;
  padding: 0 2rem;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-shadow: 0 0 10px #FF0080;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #E0D7FF;
  font-weight: 500;
  text-shadow: 0 0 5px #6B00FF;
}

.play-button {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B00, #00F0FF);
  padding: 1rem 3rem;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  user-select: none;
}

.play-button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
}

.play-button:hover::before {
  left: 100%;
}

.play-button:hover {
  box-shadow: 0 0 30px #FF6B00, 0 0 40px #00F0FF;
  transform: scale(1.05);
}
    