/* Girls Stars - High-End, Modern Glassmorphic Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&family=Poppins:wght@500;800&display=swap');
:root {
  --accent1: #ff5e62;
  --accent2: #ffe066;
  --accent3: #7f53ff;
  --accent4: #1fd1f9;
  --glass-bg: rgba(34,34,40,0.65);
  --glass-blur: 18px;
  --bg: linear-gradient(135deg, #232526 0%, #414345 100%);
  --text: #f7f7fa;
  --card-bg: rgba(255,255,255,0.13);
  --card-shadow: 0 8px 32px 0 rgba(31,209,249,0.12);
  --footer-bg: rgba(20,20,25,0.98);
  --footer-text: #e2e2e2;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.01em;
}
header {
  position: sticky;
  top: 0; z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 7vw 0.7rem;
  background: rgba(30,30,38,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 3px 32px 0 rgba(127,83,255,0.07);
  border-bottom: 1.5px solid rgba(255,255,255,0.08);
}
header .logo {
  height: 54px; width: auto;
  display: flex; align-items: center;
  filter: drop-shadow(0 2px 6px #1fd1f9aa);
}
nav {
  display: flex;
  gap: 2.5rem;
}
nav a {
  color: var(--accent2);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.17rem;
  letter-spacing: 0.03em;
  transition: color 0.23s, text-shadow 0.23s;
  text-shadow: 0 1px 8px #1fd1f955;
  border-radius: 8px;
  padding: 0.2em 0.8em;
}
nav a:hover, nav a:focus {
  color: var(--accent4);
  background: rgba(255,255,255,0.08);
  text-shadow: 0 2px 16px #ff5e62bb;
}
.hero {
  padding: 4.5rem 7vw 2.5rem;
  text-align: center;
  background: linear-gradient(135deg, #232526 0%, #1fd1f9 100%);
  border-radius: 0 0 2.2rem 2.2rem;
  box-shadow: 0 8px 32px 0 rgba(127,83,255,0.10);
  margin-bottom: 2.5rem;
}
.hero h1 {
  font-size: 3.2rem;
  margin: 0 0 1.1rem;
  font-weight: 800;
  color: var(--accent1);
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px #ff5e6299;
}
.hero p {
  font-size: 1.35rem;
  color: #e9e9f7;
  margin-bottom: 1.4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 12px #23252655;
}
.entertainment {
  background: var(--glass-bg);
  border-radius: 2.2rem;
  margin: 2.5rem 0 2.8rem;
  padding: 2.5rem 2rem 2rem;
  box-shadow: var(--card-shadow);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  backdrop-filter: blur(var(--glass-blur));
  border: 1.5px solid rgba(255,255,255,0.13);
  position: relative;
  overflow: hidden;
}
.entertainment:before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle at 60% 40%, #ff5e62 0%, transparent 70%);
  opacity: 0.22;
  z-index: 0;
}
.entertainment h2 {
  color: var(--accent2);
  font-size: 2rem;
  margin-bottom: 1.4rem;
  font-family: 'Poppins', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.entertainment ul {
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 2;
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem 1.7rem;
}
.entertainment li {
  margin-bottom: 0.7rem;
  font-size: 1.09rem;
  background: var(--card-bg);
  border-radius: 1.1rem;
  box-shadow: 0 2px 16px 0 rgba(255,224,102,0.10);
  padding: 0.9em 1.1em;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex; align-items: center;
}
.entertainment li:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 24px 0 #ff5e6299;
  background: rgba(255,255,255,0.18);
}
.entertainment a {
  color: var(--accent4);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  transition: color 0.20s, text-shadow 0.20s;
  text-shadow: 0 1px 8px #1fd1f955;
  border-radius: 6px;
  padding: 0.1em 0.4em;
}
.entertainment a:hover, .entertainment a:focus {
  color: var(--accent1);
  text-shadow: 0 2px 16px #ff5e62bb;
  background: rgba(255,255,255,0.10);
}
.entertainment p {
  margin-top: 1.6rem;
  color: #e2e2e2;
  font-size: 0.99rem;
  text-align: center;
}
section[id^="about"], section[id^="contact"] {
  background: var(--glass-bg);
  border-radius: 1.7rem;
  margin: 0 auto 2.5rem;
  padding: 2rem 2rem 1.2rem;
  max-width: 820px;
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(var(--glass-blur));
  border: 1.2px solid rgba(255,255,255,0.10);
  color: #eaeaea;
}
section[id^="about"] h2, section[id^="contact"] h2 {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.6rem;
  color: var(--accent3);
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}
footer {
  margin-top: auto;
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 2.5rem 1.3rem 1.3rem;
  position: relative;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  box-shadow: 0 -4px 32px 0 #1fd1f955;
}
footer .footer-logo {
  width: 60px;
  height: 60px;
  margin: 1.1rem auto 0.6rem;
  display: block;
  filter: drop-shadow(0 2px 8px #ff5e6299);
}
footer .footer-info {
  font-size: 1.08rem;
  margin-bottom: 0.8rem;
}
footer a {
  color: var(--accent2);
  text-decoration: underline;
  font-weight: 600;
}
footer a:hover {
  color: var(--accent4);
}
.scroll-top {
  position: fixed;
  right: 2vw;
  bottom: 2.2vw;
  background: linear-gradient(135deg, #ff5e62 0%, #1fd1f9 100%);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px 0 #1fd1f955;
  cursor: pointer;
  font-size: 2rem;
  z-index: 99;
  opacity: 0.92;
  transition: opacity 0.18s, transform 0.18s;
}
.scroll-top:hover {
  opacity: 1;
  transform: scale(1.08);
}
@media (max-width: 900px) {
  header, .hero, .entertainment, section[id^="about"], section[id^="contact"] {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .entertainment h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.7rem 2vw 0.5rem;
  }
  nav {
    gap: 1.2rem;
    margin-top: 0.7rem;
  }
  .hero {
    padding-top: 2.1rem;
    padding-bottom: 1.1rem;
  }
  .entertainment {
    padding: 1.2rem 0.7rem;
    border-radius: 1.2rem;
  }
  section[id^="about"], section[id^="contact"] {
    padding: 1.1rem 0.7rem;
    border-radius: 1.1rem;
  }
  footer .footer-logo {
    width: 38px;
    height: 38px;
  }
  .scroll-top {
    width: 40px; height: 40px; font-size: 1.4rem;
  }
}
