/* High-end, glassmorphism, deep navy/gold, premium layout */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');
:root {
  --primary-bg: #151a28;
  --accent: #ffd700;
  --accent-gradient: linear-gradient(90deg, #ffec80 0%, #ffd700 100%);
  --glass-bg: rgba(26, 34, 54, 0.7);
  --glass-blur: blur(14px);
  --text-main: #f9fafc;
  --text-subtle: #b0b8c9;
  --card-bg: rgba(28, 34, 56, 0.92);
  --footer-bg: #11131c;
  --nav-bg: rgba(28, 34, 56, 0.97);
  --shadow: 0 8px 32px rgba(26,34,54,0.15);
  --shadow-card: 0 4px 24px rgba(255,215,0,0.08);
  --border-radius: 1.4rem;
  --font-main: 'Poppins', 'Segoe UI', Arial, sans-serif;
}
html {
  box-sizing: border-box;
  font-size: 17px;
  background: var(--primary-bg);
  color: var(--text-main);
  font-family: var(--font-main);
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  margin: 0;
  background: var(--primary-bg);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.site-header {
  background: var(--nav-bg);
  box-shadow: var(--shadow);
  padding: 0.8rem 0 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: var(--glass-blur);
}
.logo-title {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.logo {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 2px 12px #ffd70044;
  border: 2px solid #ffd700;
}
.site-header h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 12px #ffd70033;
}
.main-nav {
  display: flex;
  gap: 2.2rem;
  justify-content: center;
  margin-top: 0.7rem;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.4em 1em;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
  width: 0;
  transition: width 0.3s;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: #151a28;
  box-shadow: 0 4px 16px #ffd70033;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 80%;
}
.hero {
  background: linear-gradient(120deg, #1a2236 70%, #ffd700 100%);
  padding: 3.5rem 1rem 2.5rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #ffd70044 0%, #1a2236 80%);
  transform: translateX(-50%);
  z-index: 0;
}
.hero-content {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: var(--glass-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  backdrop-filter: var(--glass-blur);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1.5px solid #ffd70033;
}
.hero h2 {
  font-size: 2.7rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero p {
  color: var(--text-main);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.hero-img {
  margin-top: 1.8rem;
  border-radius: 1.5rem;
  box-shadow: 0 6px 32px #ffd70033, var(--shadow);
  max-width: 100%;
  height: auto;
  border: 2px solid #ffd70022;
}
.entertainment {
  background: var(--glass-bg);
  margin: 2.5rem auto 0 auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  max-width: 950px;
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1.5px solid #ffd70033;
  backdrop-filter: var(--glass-blur);
  position: relative;
}
.entertainment h3 {
  color: var(--accent);
  font-size: 2.1rem;
  margin-bottom: 1.3rem;
  font-weight: 700;
}
.entertainment-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 1.6rem;
}
.entertainment-links a {
  background: var(--primary-bg);
  color: var(--accent);
  border: 1.5px solid var(--accent);
  border-radius: 0.8rem;
  padding: 1.1em 1.2em;
  font-weight: 700;
  text-align: center;
  font-size: 1.07rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  text-decoration: none;
  box-shadow: 0 2px 12px #ffd70011;
  backdrop-filter: var(--glass-blur);
  position: relative;
}
.entertainment-links a:hover, .entertainment-links a:focus {
  background: var(--accent);
  color: #151a28;
  border-color: #ffd700;
  box-shadow: 0 4px 24px #ffd70033, 0 2px 8px #ffd70022;
}
.about, .industry, .contact {
  max-width: 950px;
  margin: 2.8rem auto 0 auto;
  background: var(--glass-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
  padding: 2.5rem 2rem 2rem 2rem;
  border: 1.5px solid #ffd70033;
  backdrop-filter: var(--glass-blur);
}
.about h3, .industry h3, .contact h3 {
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.industry ul {
  list-style: disc inside;
  color: var(--text-subtle);
  margin: 1.1rem 0 0 1.3rem;
  padding: 0;
  font-size: 1.04rem;
}
.site-footer {
  background: var(--footer-bg);
  color: var(--text-subtle);
  text-align: center;
  padding: 3rem 1rem 2.2rem 1rem;
  margin-top: auto;
  box-shadow: 0 -2px 16px #ffd70011;
  border-top: 1.5px solid #ffd70022;
}
.footer-content {
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.7rem;
}
.footer-favicon {
  width: 64px;
  height: 64px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 2px 12px #ffd70044;
  border: 2px solid #ffd700;
}
.footer-img {
  margin-top: 1.2rem;
  border-radius: 1.1rem;
  box-shadow: 0 2px 12px #ffd70022, var(--shadow);
  width: 300px;
  height: 200px;
  object-fit: cover;
  border: 1.5px solid #ffd70022;
}
.footer-content p, .footer-content a {
  color: var(--text-subtle);
  font-size: 1.07rem;
  margin: 0;
}
.footer-content a {
  color: var(--accent);
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.footer-content a:hover {
  color: #fffbe8;
}
@media (max-width: 900px) {
  .hero-content, .entertainment, .about, .industry, .contact, .footer-content {
    padding: 1.3rem 0.7rem 1rem 0.7rem;
  }
  .footer-img { width: 98vw; max-width: 300px; }
}
@media (max-width: 600px) {
  .logo-title h1 { font-size: 1.25rem; }
  .hero h2 { font-size: 1.35rem; }
  .entertainment h3, .about h3, .industry h3, .contact h3 { font-size: 1.1rem; }
  .footer-img { width: 90vw; height: auto; }
  .entertainment, .about, .industry, .contact, .footer-content { padding: 0.6rem; }
  .logo { width: 38px; height: 38px; }
  .footer-favicon { width: 38px; height: 38px; }
}
::-webkit-scrollbar {
  width: 10px;
  background: #181c2a;
}
::-webkit-scrollbar-thumb {
  background: #ffd70055;
  border-radius: 10px;
}
