/* Modern Gaming Platform Styles */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --dark-bg: #1f2937;
  --light-bg: #f9fafb;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: #ffffff;
}

/* Navigation */
.eliterankcrew-navbar-pill {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
  position: relative;
}

.eliterankcrew-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.eliterankcrew-navbar-left a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.eliterankcrew-navbar-logo {
  width: 40px;
  height: 40px;
  margin-right: 0.75rem;
  border-radius: 8px;
}

.eliterankcrew-navbar-right {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.eliterankcrew-nav-link-pill {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.eliterankcrew-nav-link-pill:hover,
.eliterankcrew-nav-link-pill.active {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: translateY(-1px);
}

.eliterankcrew-navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1200;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex-direction: column;
}

.eliterankcrew-navbar-toggle-bar {
  display: block;
  width: 28px;
  height: 3px;
  background: white;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 4rem 0;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  background: linear-gradient(45deg, var(--accent-color), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.hero-notice {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
}

.btn-primary:hover {
  background: #d97706;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: var(--light-bg);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Games Showcase */
.games-showcase {
  padding: 5rem 0;
  background: var(--light-bg);
}

.game-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.game-showcase h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.game-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.game-frame {
  width: 100%;
  min-height: 500px;
  height: 600px;
  border: none;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background: white;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.community-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid var(--primary-color);
}

.community-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Game Hub Styles */
.game-hub-section {
  padding: 4rem 0;
  background: var(--light-bg);
}

.hub-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hub-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.hub-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.games-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 3rem;
  padding: 0 2rem;
}

.game-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.game-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.game-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.game-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.game-category {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.875rem;
  font-weight: 500;
}

.game-frame-container {
  height: 550px;
}

.game-frame {
  width: 100%;
  height: 100%;
  border: none;
}

.game-description {
  padding: 1.5rem;
}

.game-description p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.hub-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Community Page Styles */
.community-page {
  padding: 4rem 0;
  background: var(--light-bg);
}

.community-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.community-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.community-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.community-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.mission-section,
.features-section,
.join-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.mission-section h2,
.features-section h2,
.join-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.mission-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  max-width: 650px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.feature-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  background: linear-gradient(135deg, #6366f1, #10b981);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(44,62,80,0.08);
}

.feature-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: var(--text-primary);
}

.feature-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.safety-notice {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
}

.safety-notice h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.safety-notice p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Support Page Styles */
.support-page {
  padding: 4rem 0;
  background: var(--light-bg);
}

.support-hero {
  text-align: center;
  margin-bottom: 4rem;
}

.support-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.support-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
}

.support-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.info-section {
  margin-bottom: 2rem;
}

.info-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.contact-details {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.contact-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-form-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.support-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: var(--text-primary);
}

.form-control {
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.help-section {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.help-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  padding: 1.5rem;
  background: var(--light-bg);
  border-radius: 12px;
}

.faq-item h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Footer */
.eliterankcrew-footer {
  background: var(--dark-bg);
  color: white;
  padding: 3rem 0 2rem;
  margin-top: 5rem;
}

.eliterankcrew-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.eliterankcrew-footer p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.eliterankcrew-footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.eliterankcrew-footer a:hover {
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .eliterankcrew-navbar-right {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background: #4338ca;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(44,62,80,0.12);
    flex-direction: column;
    min-width: 180px;
    padding: 1rem 0.5rem;
    z-index: 2000;
  }
  .eliterankcrew-navbar-right.open {
    display: flex;
  }
  
  .eliterankcrew-navbar-toggle {
    display: flex;
  }
  
  .support-content {
    grid-template-columns: 1fr;
  }
  
  .games-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .community-grid {
    grid-template-columns: 1fr;
  }
  
  .hub-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .features-list {
    max-width: 98vw;
    padding: 0 1rem;
  }
  .feature-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }
  .feature-content {
    text-align: left;
  }
  .games-grid .game-frame {
    max-height: 350px;
    height: 350px;
  }
}

/* GDPR Popup */
#eliterankcrew-gdpr-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

#eliterankcrew-gdpr-popup:not(.hide) {
  transform: translateY(0);
}

.eliterankcrew-gdpr-btn {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.eliterankcrew-gdpr-btn:hover {
  background: #d97706;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
} 

.games-grid .game-frame {
  min-height: 550px;
} 