/* Base Styles */
:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #00cec9;
  --dark-color: #2d3436;
  --light-color: #dfe6e9;
  --text-color: #2d3436;
  --light-text: #f5f6fa;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --error-color: #d63031;
  --neon-glow: 0 0 5px rgba(108, 92, 231, 0.5), 0 0 20px rgba(108, 92, 231, 0.4), 0 0 30px rgba(108, 92, 231, 0.3);
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background: #f8f9fa;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--secondary-color);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--dark-color);
}

p {
  margin-bottom: 20px;
}

ul {
  list-style: none;
}

section {
  padding: 60px 0;
}

/* Header and Navigation */
header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 15px;
}

.logo h1 {
  font-size: 1.8rem;
  margin-bottom: 0;
  color: var(--primary-color);
  font-weight: 800;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 600;
  padding: 10px 5px;
  position: relative;
  display: flex;
  align-items: center;
}

nav ul li a i {
  margin-right: 5px;
  font-size: 0.9rem;
}

nav ul li a:hover, nav ul li a.active {
  color: var(--primary-color);
}

nav ul li a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

nav ul li a:hover:after, nav ul li a.active:after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark-color);
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 30px;
}

/* Featured Posts */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.post-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.post-image {
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-image img {
  transform: scale(1.05);
}

.post-content {
  padding: 20px;
}

.post-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.post-content h3 a {
  color: var(--dark-color);
  transition: var(--transition);
}

.post-content h3 a:hover {
  color: var(--primary-color);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 15px;
}

.post-meta span {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.post-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.read-more {
  display: inline-block;
  font-weight: 600;
  margin-top: 10px;
  color: var(--primary-color);
  position: relative;
}

.read-more:after {
  content: '→';
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.read-more:hover:after {
  transform: translateX(5px);
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.view-all a {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition);
}

.view-all a:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Random Fact Section */
.random-fact {
  background-color: var(--light-color);
  padding: 40px 0;
}

.fact-box {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.fact-box h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fact-box h3 i {
  margin-right: 10px;
  color: var(--accent-color);
}

.fact-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

#new-fact-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

#new-fact-btn:hover {
  background: var(--secondary-color);
}

/* Community Section */
.community {
  padding: 70px 0;
}

.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.community-info {
  padding-right: 20px;
}

.community-info p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.community-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-stats span {
  display: block;
}

.community-stats span:first-child {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.community-stats i {
  font-size: 2rem;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.community-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

/* Neon Button */
.neon-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--neon-glow);
}

.neon-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(108, 92, 231, 0.7), 
              0 0 30px rgba(108, 92, 231, 0.5), 
              0 0 50px rgba(108, 92, 231, 0.3);
  color: white;
}

.neon-button:active {
  transform: translateY(0);
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.footer-logo p {
  opacity: 0.8;
}

.footer-links h3, 
.footer-contact h3 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h3:after,
.footer-contact h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  border-radius: 1.5px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
  color: var(--primary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

.social-icons {
  display: flex;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-left: 10px;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(44, 62, 80, 0.95);
  color: white;
  padding: 20px;
  z-index: 999;
  display: flex;
  justify-content: center;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  text-align: center;
}

.cookie-content p {
  margin-bottom: 20px;
  line-height: 1.5;
}

.cookie-content i {
  margin-right: 5px;
}

.cookie-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-btn {
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.cookie-btn.accept {
  background: var(--success-color);
  color: white;
}

.cookie-btn.customize {
  background: var(--warning-color);
  color: var(--dark-color);
}

.cookie-btn.decline {
  background: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.cookie-content a {
  color: var(--accent-color);
  text-decoration: underline;
}

.cookie-content a:hover {
  color: white;
}

/* Page Headers */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.page-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: white;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Page Specific */
.blog-header:before {
  background-image: url('images/blog-header-bg.jpg');
}

/* Blog Post Content */
.blog-post-content {
  padding: 60px 0;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #777;
}

.breadcrumbs a {
  color: #777;
}

.breadcrumbs a:hover {
  color: var(--primary-color);
}

.post-header {
  margin-bottom: 30px;
}

.post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.post-featured-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.post-body {
  line-height: 1.8;
  font-size: 1.1rem;
}

.post-body h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: var(--dark-color);
}

.post-body h3 {
  font-size: 1.4rem;
  margin: 30px 0 15px;
}

.post-body ul, .post-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.post-body li {
  margin-bottom: 10px;
}

.post-body ul {
  list-style-type: disc;
}

.post-body blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 15px 20px;
  margin: 30px 0;
  background: rgba(108, 92, 231, 0.05);
  font-style: italic;
  color: #555;
}

.post-tags {
  margin: 40px 0;
}

.post-tags h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.post-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.post-tags li {
  margin: 0;
}

.post-tags a {
  display: inline-block;
  padding: 6px 15px;
  background: #f1f2f6;
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--text-color);
  transition: var(--transition);
}

.post-tags a:hover {
  background: var(--primary-color);
  color: white;
}

.share-post {
  margin-bottom: 40px;
}

.share-post h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.social-share {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-share a {
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  transition: var(--transition);
}

.social-share a i {
  margin-right: 7px;
}

.social-share .facebook {
  background: #3b5998;
}

.social-share .twitter {
  background: #1da1f2;
}

.social-share .reddit {
  background: #ff4500;
}

.social-share .email {
  background: #777;
}

.social-share a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}

.prev-post, .next-post {
  flex: 0 0 48%;
}

.next-post {
  text-align: right;
}

.post-navigation a {
  display: block;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: var(--transition);
}

.post-navigation a:hover {
  background: #f1f2f6;
  transform: translateY(-3px);
  box-shadow: var(--box-shadow);
}

.post-navigation span {
  display: block;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 5px;
}

.post-navigation h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
  color: var(--dark-color);
  transition: var(--transition);
}

.post-navigation a:hover h4 {
  color: var(--primary-color);
}

.related-posts {
  margin-bottom: 40px;
}

.related-posts h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.post-card.small .post-image {
  height: 150px;
}

.post-card.small .post-content h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.post-card.small .post-meta {
  margin-bottom: 0;
}

/* Comments Section */
.comments-section {
  margin-top: 50px;
}

.comments-section h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.comment {
  display: flex;
  margin-bottom: 30px;
}

.comment-avatar {
  flex: 0 0 60px;
  margin-right: 20px;
}

.comment-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-content {
  flex: 1;
}

.comment-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.comment-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0;
}

.comment-info span {
  font-size: 0.85rem;
  color: #777;
}

.comment-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.comment-actions a {
  font-size: 0.9rem;
  color: #777;
  display: flex;
  align-items: center;
}

.comment-actions a i {
  margin-right: 5px;
}

.comment-actions a:hover {
  color: var(--primary-color);
}

.view-more-comments {
  text-align: center;
  margin: 30px 0;
}

.view-more-comments button {
  background: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  padding: 10px 25px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

.view-more-comments button:hover {
  background: var(--primary-color);
  color: white;
}

.leave-comment {
  margin-top: 50px;
}

.leave-comment h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.form-group.checkbox {
  display: flex;
  align-items: center;
}

.form-group.checkbox input {
  width: auto;
  margin-right: 10px;
}

.form-group.checkbox label {
  margin-bottom: 0;
  font-weight: normal;
}

/* Forum Page Specific */
.forum-header:before {
  background-image: url('images/forum-header-bg.jpg');
}

.forum-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.forum-search {
  display: flex;
  max-width: 400px;
  width: 100%;
}

.forum-search input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
}

.forum-search button {
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 0 20px;
  cursor: pointer;
  transition: var(--transition);
}

.forum-search button:hover {
  background: var(--secondary-color);
}

/* Forum Categories */
.forum-categories h3 {
  text-align: center;
  margin-bottom: 30px;
}

.category {
  background: white;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.category:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.category-header {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #f1f2f6;
  align-items: center;
}

.category-icon {
  flex: 0 0 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-right: 20px;
}

.category-info {
  flex: 1;
}

.category-info h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.category-info p {
  margin-bottom: 0;
  color: #777;
  font-size: 0.9rem;
}

.category-stats {
  display: flex;
  gap: 20px;
}

.category-stats .stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.category-stats .number {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.category-stats .label {
  font-size: 0.8rem;
  color: #777;
}

.latest-post {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: #f8f9fa;
}

.post-avatar {
  flex: 0 0 40px;
  height: 40px;
  margin-right: 15px;
}

.post-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.post-info h5 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.post-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #777;
}

/* Forum Stats */
.forum-stats {
  background: var(--light-color);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-card h3 {
  font-size: 2rem;
  margin-bottom: 5px;
  color: var(--dark-color);
}

.stat-card p {
  color: #777;
  margin-bottom: 0;
}

/* Online Members */
.online-members {
  padding: 40px 0;
}

.online-members h3 {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.online-indicator {
  display: inline-block;
  color: #00b894;
  margin-right: 10px;
  font-size: 0.8rem;
}

.members-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.member {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  text-align: center;
}

.member img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 5px;
}

.member span {
  font-size: 0.85rem;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.more-members {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.more-members a {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* About Page Specific */
.about-header:before {
  background-image: url('images/about-header-bg.jpg');
}

.our-story, .our-mission {
  padding: 70px 0;
}

.story-content, .mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.story-text, .mission-text {
  line-height: 1.8;
}

.story-text h3, .mission-text h3 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  position: relative;
  padding-bottom: 15px;
}

.story-text h3:after, .mission-text h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.story-image img, .mission-image img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.mission-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.mission-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.mission-list li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.team-member {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  padding-bottom: 20px;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.team-member h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.member-bio {
  padding: 0 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f1f2f6;
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.member-social a:hover {
  background: var(--primary-color);
  color: white;
}

.team-note {
  text-align: center;
  font-style: italic;
  color: #777;
}

/* Values Section */
.our-values {
  background: var(--light-color);
  padding: 70px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.value-card p {
  margin-bottom: 0;
}

/* About Stats */
.about-stats {
  padding: 60px 0;
}

.about-stats .stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: var(--dark-color);
}

/* Join Us Section */
.join-us {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: 60px 0;
}

.join-us h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.join-us p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.join-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.secondary-button {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid white;
  transition: var(--transition);
}

.secondary-button:hover {
  background: white;
  color: var(--primary-color);
}

/* Contact Page Specific */
.contact-header:before {
  background-image: url('images/contact-header-bg.jpg');
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.info-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.info-card p {
  margin-bottom: 5px;
  color: #555;
}

.social-icons-contact {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-icons-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f1f2f6;
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-icons-contact a:hover {
  background: var(--primary-color);
  color: white;
}

/* Contact Form */
.contact-form .container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
}

.form-wrapper, .map-wrapper {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: var(--box-shadow);
}

.form-wrapper h3, .map-wrapper h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-actions {
  display: flex;
  gap: 15px;
}

.map-container {
  height: 300px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-hours h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.business-hours h4 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.business-hours ul {
  list-style: none;
  padding: 0;
}

.business-hours li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.business-hours span {
  font-weight: 600;
}

/* FAQ Section */
.contact-faq {
  padding: 70px 0;
  background: var(--light-color);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question h4 {
  margin-bottom: 0;
  font-size: 1.1rem;
}

.faq-toggle {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 20px;
  height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active .faq-question {
  background: var(--primary-color);
  color: white;
}

.faq-item.active .faq-toggle {
  color: white;
}

.faq-item.active .faq-answer {
  padding: 20px;
  height: auto;
}

/* Thank You Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #777;
  transition: var(--transition);
}

.close-modal:hover {
  color: var(--error-color);
}

.modal-body {
  padding: 40px 30px;
  text-align: center;
}

.success-icon {
  font-size: 3rem;
  color: var(--success-color);
  margin-bottom: 20px;
}

.modal-body h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.modal-body p {
  margin-bottom: 25px;
}

.close-btn {
  display: inline-block;
}

/* Additional Blog Post Elements */
.image-container {
  margin: 30px 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.image-container img {
  width: 100%;
  display: block;
}

.caption {
  background: #f8f9fa;
  padding: 10px 15px;
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  border-top: 1px solid #eee;
  margin: 0;
}

/* Comparison Table */
.comparison-table {
  margin: 30px 0;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: var(--box-shadow);
}

.comparison-table th {
  background: var(--primary-color);
  color: white;
  padding: 15px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.comparison-table tr:nth-child(even) {
  background: #f8f9fa;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
}

.feature-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: 15px;
}

.feature-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--success-color);
  font-weight: bold;
}

/* Indie Games Cards */
.indie-game-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  margin: 20px 0 30px;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  align-items: center;
}

.indie-game-image {
  height: 120px;
  overflow: hidden;
  border-radius: 5px;
}

.indie-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indie-game-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.indie-game-details li {
  margin: 0;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
}

/* Esports Section */
.esports-games {
  margin: 30px 0;
}

.esports-game {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.esports-game h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.esports-game p {
  margin-bottom: 0;
}

/* Advice List */
.advice-list {
  margin: 30px 0;
  padding-left: 0;
  list-style: none;
}

.advice-list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.advice-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
  .story-content, .mission-content, .contact-form .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .community-content {
    grid-template-columns: 1fr;
  }
  
  .community-info {
    order: 2;
    padding-right: 0;
  }
  
  .community-image {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px 0;
    z-index: 99;
  }
  
  nav.active {
    transform: translateY(0);
    opacity: 1;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  
  nav ul li {
    margin: 10px 0;
  }
  
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .post-header h1 {
    font-size: 2rem;
  }
  
  .post-navigation {
    flex-direction: column;
    gap: 15px;
  }
  
  .prev-post, .next-post {
    flex: 0 0 100%;
  }
  
  .next-post {
    text-align: left;
  }
  
  .indie-game-card {
    grid-template-columns: 1fr;
  }
  
  .indie-game-image {
    height: 200px;
  }
}

@media screen and (max-width: 576px) {
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .logo img {
    width: 40px;
    height: 40px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .forum-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .forum-search {
    max-width: 100%;
  }
  
  .category-header {
    flex-direction: column;
    text-align: center;
  }
  
  .category-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .category-stats {
    margin-top: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .post-card .post-meta {
    flex-direction: column;
    gap: 5px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .comment {
    flex-direction: column;
  }
  
  .comment-avatar {
    margin-bottom: 10px;
  }
  
  .comment-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
