/* GayGoblin420.com - Modern Premium Styles */
:root {
  --primary: #232336;
  --accent: #ff7a59;
  --accent2: #6d7cff;
  --bg: #f4f7fa;
  --glass: rgba(255,255,255,0.25);
  --glass-border: rgba(255,255,255,0.4);
  --text: #232336;
  --footer-bg: #232336;
  --footer-text: #fff;
  --shadow: 0 8px 32px 0 rgba(31,38,135,0.14);
  --radius: 22px;
  --orbitron: 'Orbitron', 'Inter', Arial, sans-serif;
  --inter: 'Inter', Arial, sans-serif;
}
html {
  box-sizing: border-box;
  font-size: 18px;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }
body {
  margin: 0;
  font-family: var(--inter);
  background: var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1.5px solid var(--glass-border);
  color: #fff;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 24px rgba(45,45,84,0.12);
  transition: box-shadow 0.3s;
}
.logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(45,45,84,0.13));
}
.nav a {
  color: var(--primary);
  margin-left: 2rem;
  text-decoration: none;
  font-weight: 700;
  font-family: var(--orbitron);
  letter-spacing: 1px;
  font-size: 1.08rem;
  transition: color 0.2s;
  position: relative;
}
.nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transition: width 0.3s;
  margin-top: 2px;
}
.nav a:hover, .nav a:focus {
  color: var(--accent);
}
.nav a:hover:after, .nav a:focus:after {
  width: 100%;
}
.glass {
  background: var(--glass);
  backdrop-filter: blur(16px) saturate(180%);
  border-radius: var(--radius);
  border: 1.5px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 3.5rem 1rem 2.5rem 1rem;
  box-shadow: var(--shadow);
}
.hero-bg-anim {
  position: absolute;
  top: -30%; left: -30%;
  width: 160%; height: 160%;
  background: radial-gradient(circle at 60% 40%, #ff7a59 0%, #6d7cff 60%, #232336 100%);
  filter: blur(60px) brightness(1.15);
  opacity: 0.72;
  z-index: 0;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  0% { filter: blur(60px) brightness(1.15); }
  100% { filter: blur(80px) brightness(1.25); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.headline {
  font-family: var(--orbitron);
  font-size: 2.7rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 24px rgba(109,124,255,0.09);
}
.headline span {
  color: var(--accent);
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.subtitle {
  font-size: 1.25rem;
  opacity: 0.93;
  margin-bottom: 1.6rem;
  color: var(--primary);
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(90deg,var(--accent),var(--accent2));
  color: #fff;
  font-family: var(--orbitron);
  font-size: 1.1rem;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(109,124,255,0.13);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg,var(--accent2),var(--accent));
  transform: scale(1.04);
}
main {
  flex: 1 0 auto;
  max-width: 1100px;
  margin: 0 auto;
  background: transparent;
  border-radius: var(--radius);
  box-shadow: none;
  padding: 0 1.5rem 1.5rem 1.5rem;
}
section {
  margin-bottom: 2.5rem;
}
h2 {
  color: var(--accent2);
  font-family: var(--orbitron);
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 1rem;
}
.about, .industry, .contact {
  background: var(--glass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  margin-bottom: 2.5rem;
}
.entertainment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.ent-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--glass);
  border: 1.5px solid var(--glass-border);
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(109,124,255,0.08);
  padding: 1.2rem 1.2rem;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s, border 0.2s;
  color: var(--primary);
  position: relative;
  overflow: hidden;
  min-height: 84px;
  cursor: pointer;
}
.ent-card:hover, .ent-card:focus {
  box-shadow: 0 6px 32px 0 rgba(109,124,255,0.13);
  border-color: var(--accent2);
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(90deg,rgba(255,122,89,0.13),rgba(109,124,255,0.11));
}
.ent-icon {
  font-size: 2.1rem;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 8px rgba(109,124,255,0.11));
}
.ent-info {
  display: flex;
  flex-direction: column;
}
.ent-title {
  font-family: var(--orbitron);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}
.ent-desc {
  font-size: 0.98rem;
  color: var(--accent2);
  font-family: var(--inter);
  opacity: 0.82;
}
.fab {
  position: fixed;
  bottom: 2.1rem;
  right: 2.1rem;
  z-index: 200;
  background: linear-gradient(135deg,var(--accent),var(--accent2));
  color: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 24px rgba(255,122,89,0.18);
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.18s;
  outline: none;
}
.fab:hover, .fab:focus {
  box-shadow: 0 8px 32px rgba(109,124,255,0.21);
  transform: scale(1.07);
}
.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 1.6rem 0 1.2rem 0;
  border-radius: 0 0 var(--radius) var(--radius);
  margin-top: 2rem;
  box-shadow: 0 -2px 24px rgba(45,45,84,0.09);
}
.footer-logo img {
  vertical-align: middle;
  margin-bottom: 0.5rem;
}
.footer-text {
  font-size: 1.08rem;
  color: var(--footer-text);
}
.fadein {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.5,0,.2,1), transform 0.7s cubic-bezier(.5,0,.2,1);
}
.fadein.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .entertainment-grid { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
  .headline { font-size: 2.1rem; }
  main { padding: 0 0.5rem 1rem 0.5rem; }
  .about, .industry, .contact { padding: 1.1rem 0.7rem 1rem 0.7rem; }
}
@media (max-width: 700px) {
  .header { flex-direction: column; padding: 0.7rem 0.5rem; }
  .logo { margin-bottom: 0.5rem; }
  .nav a { margin-left: 1.1rem; font-size: 0.98rem; }
  .hero { min-height: 200px; padding: 2rem 0.5rem 1.4rem 0.5rem; }
  .fab { width: 52px; height: 52px; bottom: 1.3rem; right: 1.3rem; }
}
@media (max-width: 500px) {
  html { font-size: 15px; }
  .headline { font-size: 1.35rem; }
  .hero { border-radius: 0; box-shadow: none; }
  .footer { border-radius: 0; }
  .about, .industry, .contact { border-radius: 0; }
}
