:root{
  --brand:#009cdf;
  --brand-2:#009cdf;
  --brand-hover:#4d65ff;
  --bg:#f5f6fa;
  --card:#ffffff;
  --text:#444;
  --muted:#6b7280;
  --shadow:0 8px 24px rgba(0,156,223,.08);
  --gradient: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
}

*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg);
  color:var(--text);
  padding-top:70px;
  line-height:1.6;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--card);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  z-index: 1000;
  height: 70px;
}

.nav-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 40px;
  width: auto;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: var(--brand);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-link {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--brand);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--brand);
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-cards {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text);
}

.brand-text {
  color: var(--brand);
  font-weight: 700;
}

.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 5px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient);
  color: white;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(40,71,255,.15);
}

.btn-secondary {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}

.btn-secondary:hover {
  background: var(--brand);
  color: white;
}

.hero-visual {
  position: relative;
}

.floating-cards {
  position: relative;
  height: 450px;
  width: 280px;
}

.card-3d {
  position: absolute;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,156,223,0.15), 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: float 6s ease-in-out infinite;
  width: 160px;
  text-align: center;
  border: 1px solid rgba(0,156,223,0.1);
}

.card-3d:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,156,223,0.25), 0 8px 24px rgba(0,0,0,0.15);
}

.card-3d:nth-child(1) {
  top: 0;
  left: 38px;
  animation-delay: 0s;
  z-index: 4;
}

.card-3d:nth-child(2) {
  top: 100px;
  right: 0;
  left: 220px;
  animation-delay: 2s;
  z-index: 3;
}

.card-3d:nth-child(3) {
  top: 225px;
  left: 35px;
  animation-delay: 4s;
  z-index: 2;
}

.card-3d:nth-child(4) {
  top: 90px;
  right: 260px;
  animation-delay: 1s;
  z-index: 1;
}

.card-3d i {
  font-size: 3rem;
  color: var(--brand);
}

.card-3d span {
  font-weight: 600;
  text-align: center;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 60px;
}

/* Metrics Section */
.metrics {
  padding: 100px 0;
  background: var(--card);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.metric-card {
  background: var(--bg);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(40,71,255,0.1);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.metric-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.metric-icon i {
  font-size: 2rem;
  color: white;
}

.metric-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text);
}

.metric-card p {
  color: var(--muted);
  line-height: 1.6;
}

/* Tools Section */
.tools {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
}

.tool-card {
  background: var(--card);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  border: 1px solid rgba(40,71,255,0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(40,71,255,.15);
}

.tool-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.tool-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-header {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 30px;
}

.tool-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tool-icon i {
  font-size: 2rem;
  color: white;
}

.tool-info h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--text);
}

.tool-tag {
  color: var(--brand);
  font-weight: 500;
  font-size: 0.95rem;
}

.tool-content p {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.tool-features {
  list-style: none;
  margin-bottom: 30px;
}

.tool-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--text);
}

.tool-features i {
  color: var(--brand);
  font-size: 1.1rem;
}

.tool-metrics {
  display: flex;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(40,71,255,0.1);
}

.metric {
  text-align: center;
}

.metric-value {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 5px;
}

/* Games Section */
.games {
  padding: 100px 0;
  background: var(--card);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.game-card {
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid rgba(40,71,255,0.1);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(40,71,255,.15);
}

.game-image {
  height: 250px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
  transform: scale(1.05);
}

.game-image i {
  font-size: 4rem;
  color: white;
}

.game-content {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.game-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text);
}

.game-content p {
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.6;
  flex: 1;
}

.game-topics {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.game-topics li {
  background: rgba(40,71,255,0.1);
  color: var(--brand);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text);
}

.contact-item p {
  color: var(--muted);
}

.contact-form {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 2px solid rgba(40,71,255,0.1);
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--bg);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand);
}

.full-width {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: var(--brand);
}

.footer-links h4 {
  margin-bottom: 20px;
  color: white;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
  color: rgba(255,255,255,0.5);
}

/* Hero Image */
.hero-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

/* Tool Images */
.tool-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tool-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Wall of Fame Section */
.wall-of-fame {
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
}

.wall-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.wall-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.wall-features h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--text);
}

.wall-features p {
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.05rem;
}

.wall-list {
  list-style: none;
  margin-bottom: 30px;
}

.wall-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text);
  font-size: 1.05rem;
}

.wall-list i {
  color: var(--brand);
  font-size: 1.2rem;
  width: 20px;
}

.wall-metrics {
  display: flex;
  gap: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(40,71,255,0.1);
}

.wall-stat {
  text-align: center;
}

/* Talent Strategies Section */
.talent-strategies {
  padding: 100px 0;
  background: var(--card);
}

.strategies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.strategy-card {
  background: var(--bg);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  border: 1px solid rgba(40,71,255,0.1);
}

.strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.strategy-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.strategy-icon i {
  font-size: 2rem;
  color: white;
}

.strategy-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--text);
}

.strategy-card p {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

.strategy-features {
  list-style: none;
  text-align: left;
}

.strategy-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text);
}

.strategy-features li::before {
  content: '✓';
  color: var(--brand);
  font-weight: bold;
  font-size: 1.1rem;
}

.strategies-impact {
  text-align: center;
  padding: 60px 0;
  background: linear-gradient(135deg, #f5f6fa 0%, #ffffff 100%);
  border-radius: 20px;
  margin-top: 40px;
}

.strategies-impact h3 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: var(--text);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.impact-stat {
  text-align: center;
}

.impact-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 10px;
}

.impact-label {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}
/* Login Button */
.btn-login {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  margin: 0;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,156,223,0.3);
}

.nav-menu li {
  display: flex;
  align-items: center;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--card);
  margin: 5% auto;
  padding: 0;
  border-radius: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(0,156,223,0.1);
}

.modal-header h2 {
  color: var(--text);
  font-size: 1.5rem;
  margin: 0;
}

.close {
  color: var(--muted);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: var(--brand);
}

.modal-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(0,156,223,0.1);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: var(--bg);
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,156,223,0.1);
}

.form-options {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 25px;
}

.forgot-password {
  color: var(--brand);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.forgot-password:hover {
  color: var(--brand-hover);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background: var(--card);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0,0,0,0.05);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-text {
    align-items: center;
  }

  .hero-cards {
    order: 3;
  }

  .hero-image-container {
    order: 2;
  }

  .floating-cards {
    width: 200px;
    height: 300px;
    margin: 0 auto;
  }

  .card-3d {
    width: 140px;
    padding: 20px;
  }

  .card-3d i {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .floating-cards {
    height: 300px;
  }

  .card-3d {
    padding: 20px;
  }

  .card-3d i {
    font-size: 2rem;
  }

  .wall-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strategies-grid {
    grid-template-columns: 1fr;
  }

  .impact-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .games-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .game-card {
    max-width: 400px;
    margin: 0 auto;
  }

  .game-image {
    height: 200px;
  }

  .tool-header {
    flex-direction: column;
    text-align: center;
  }

  .tool-card {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .tool-metrics {
    justify-content: center;
  }

  .hero-image {
    max-width: 100%;
  }

  .tool-image img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .tool-card,
  .contact-form {
    padding: 25px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}
