/* ====== VARIABLES ====== */
:root {
  --primary-color: #6c5ce7;
  --secondary-color: #a29bfe;
  --accent-color: #fd79a8;
  --dark-color: #2d3436;
  --darker-color: #1e272e;
  --light-color: #dfe6e9;
  --text-color: #b2bec3;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --danger-color: #e17055;
  --card-bg: rgba(45, 52, 54, 0.7);
  --section-padding: 80px 0;
}

/* ====== GLOBAL STYLES ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--darker-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--accent-color));
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(108, 92, 231, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--light-color);
  border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.btn-outline:hover {
  background: var(--light-color);
  color: var(--darker-color);
}

/* ====== NAVBAR ====== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 39, 46, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand .logo {
  height: 50px;
}

.navbar-menu {
  display: flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin-right: 30px;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--light-color);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.server-status {
  display: flex;
  align-items: center;
  margin-right: 20px;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
}

.status-indicator {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success-color);
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 184, 148, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 184, 148, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 148, 0);
  }
}

.status-text {
  font-size: 0.9rem;
}

.player-count {
  font-weight: 700;
  color: var(--light-color);
}

.discord-btn {
  background: #5865F2;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.discord-btn:hover {
  background: #4752C4;
  transform: translateY(-2px);
}

.discord-btn a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.discord-btn i {
  margin-right: 8px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--light-color);
  border-radius: 3px;
}

/* ====== HERO SECTION ====== */
.hero {
  padding: 150px 0 var(--section-padding);
  background: linear-gradient(rgba(30, 39, 46, 0.8), rgba(30, 39, 46, 0.9)), url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--light-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(108, 92, 231, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  margin-left: 50px;
}

.hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* ====== FEATURES PREVIEW ====== */
.features-preview {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  color: var(--light-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ====== OWNER MESSAGE ====== */
.owner-message {
  padding: var(--section-padding);
  background: linear-gradient(rgba(108, 92, 231, 0.1), rgba(253, 121, 168, 0.1));
}

.message-card {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.owner-avatar {
  flex: 0 0 150px;
  margin-right: 40px;
}

.owner-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  object-fit: cover;
}

.message-content h3 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.message-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.owner-signature {
  font-style: italic;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: right;
  margin-top: 20px;
}

/* ====== SERVER STATUS ====== */
.server-status-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.status-card {
  display: flex;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.status-info {
  flex: 1;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.status-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-item:last-child {
  border-bottom: none;
}

.status-label {
  color: var(--text-color);
}

.status-value {
  color: var(--light-color);
  font-weight: 600;
}

.status-motd {
  flex: 1;
  padding: 30px;
  background: rgba(108, 92, 231, 0.1);
}

.status-motd h3 {
  color: var(--light-color);
  margin-bottom: 15px;
}

/* ====== TESTIMONIALS ====== */
.testimonials {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.testimonials-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}

.testimonial {
  flex: 0 0 350px;
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  scroll-snap-align: start;
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-content::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.testimonial-author p {
  font-size: 0.9rem;
  color: var(--text-color);
}

/* ====== PAGE HEADER ====== */
.page-header {
  padding: 100px 0 50px;
  background: linear-gradient(rgba(30, 39, 46, 0.9), rgba(30, 39, 46, 0.9)), url('/images/page-header-bg.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  color: var(--light-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--secondary-color);
}

/* ====== STORE SECTION ====== */
.store-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.store-intro {
  text-align: center;
  margin-bottom: 50px;
}

.store-intro h2 {
  font-size: 2.5rem;
  color: var(--light-color);
  margin-bottom: 15px;
}

.store-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.store-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.store-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.store-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.card-header {
  background: rgba(108, 92, 231, 0.2);
  padding: 20px;
  text-align: center;
}

.card-header h3 {
  color: var(--light-color);
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.coin-amount {
  color: var(--warning-color);
  font-size: 1.8rem;
  font-weight: 700;
}

.card-body {
  padding: 20px;
  text-align: center;
}

.price {
  color: var(--light-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.description {
  color: var(--text-color);
  margin-bottom: 20px;
}

.card-footer {
  padding: 0 20px 20px;
  text-align: center;
}

.store-note {
  text-align: center;
  padding: 30px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  margin-top: 30px;
}

.store-note p {
  margin-bottom: 20px;
}

/* ====== MODAL ====== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--darker-color);
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  padding: 30px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: var(--danger-color);
}

.modal-content h2 {
  color: var(--light-color);
  margin-bottom: 20px;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-color);
}

.form-group input {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  color: var(--light-color);
  font-size: 1rem;
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

/* ====== FOOTER ====== */
.footer {
  background: var(--dark-color);
  padding: 70px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-column h3 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-color);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
}



/* ====== JOIN SECTION ====== */
.join-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.join-intro {
  text-align: center;
  margin-bottom: 50px;
}

.join-intro h2 {
  font-size: 2.5rem;
  color: var(--light-color);
  margin-bottom: 15px;
}

.join-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.join-method {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.method-header {
  background: rgba(108, 92, 231, 0.2);
  padding: 20px;
  display: flex;
  align-items: center;
}

.method-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 15px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
}

.method-header h3 {
  color: var(--light-color);
  font-size: 1.5rem;
}

.method-steps {
  padding: 30px;
}

.step {
  display: flex;
  margin-bottom: 25px;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 20px;
}

.step-content h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.join-note {
  margin-top: 30px;
}

.note-card {
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  padding: 30px;
  border-left: 4px solid var(--primary-color);
}

.note-card h3 {
  color: var(--light-color);
  margin-bottom: 15px;
}

.note-card ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.note-card li {
  margin-bottom: 10px;
}

/* ====== SERVER INFO ====== */
.server-info {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.info-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.info-card h3 {
  color: var(--light-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

/* ====== RANKS SECTION ====== */
.ranks-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.ranks-intro {
  text-align: center;
  margin-bottom: 50px;
}

.ranks-intro h2 {
  font-size: 2.5rem;
  color: var(--light-color);
  margin-bottom: 15px;
}

.ranks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.rank-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.rank-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rank-card.featured {
  border: 2px solid var(--accent-color);
  position: relative;
}

.rank-card.featured::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--accent-color);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.rank-card.free {
  border: 2px solid var(--success-color);
}

.rank-card.free::before {
  content: 'FREE';
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--success-color);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.rank-header {
  background: rgba(108, 92, 231, 0.2);
  padding: 20px;
  text-align: center;
}

.rank-name {
  color: var(--light-color);
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.rank-price {
  color: var(--warning-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.rank-period {
  color: var(--text-color);
  font-size: 0.9rem;
}

.rank-content {
  padding: 20px;
  flex-grow: 1;
}

.rank-prefix {
  margin-bottom: 15px;
  text-align: center;
}

.rank-prefix span {
  color: var(--secondary-color);
  font-weight: 600;
}

.rank-features ul {
  list-style: none;
}

.rank-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.rank-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.rank-features i {
  color: var(--primary-color);
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.rank-footer {
  padding: 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
}

.rank-note {
  color: var(--text-color);
  font-style: italic;
}

.ranks-note {
  margin-top: 30px;
}

/* ====== RULES SECTION ====== */
.rules-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.rules-intro {
  text-align: center;
  margin-bottom: 50px;
}

.rules-intro h2 {
  font-size: 2.5rem;
  color: var(--light-color);
  margin-bottom: 15px;
}

.rules-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.rule-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  transition: all 0.3s ease;
}

.rule-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.rule-number {
  flex: 0 0 80px;
  background: var(--primary-color);
  color: white;
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rule-content {
  flex: 1;
  padding: 20px;
}

.rule-content h3 {
  color: var(--light-color);
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.rules-consequences {
  margin-bottom: 50px;
}

.consequences-card {
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  padding: 30px;
  border-left: 4px solid var(--primary-color);
}

.consequences-card h3 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.consequence-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.consequence-item {
  display: flex;
  align-items: center;
}

.consequence-icon {
  flex: 0 0 50px;
  height: 50px;
  background: rgba(108, 92, 231, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
  font-size: 1.2rem;
}

.consequence-text h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.rules-footer {
  margin-top: 30px;
}

.footer-card {
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.footer-card h3 {
  color: var(--light-color);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.rules-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.rules-tags span {
  background: rgba(108, 92, 231, 0.2);
  color: var(--secondary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
}

.rules-date {
  color: var(--text-color);
  font-style: italic;
  margin-bottom: 20px;
}



/* ====== STATUS PAGE ====== */
.status-page-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.status-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.status-card {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.status-header {
  background: rgba(108, 92, 231, 0.2);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-header h2 {
  color: var(--light-color);
  font-size: 1.8rem;
}

.status-indicator {
  display: flex;
  align-items: center;
}

.status-indicator .status-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--success-color);
  margin-right: 10px;
  animation: pulse 2s infinite;
}

.status-details {
  padding: 20px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.status-row:last-child {
  border-bottom: none;
}

.status-label {
  color: var(--text-color);
}

.status-value {
  color: var(--light-color);
  font-weight: 600;
}

.status-motd {
  background: rgba(108, 92, 231, 0.1);
  padding: 20px;
}

.status-motd h3 {
  color: var(--light-color);
  margin-bottom: 10px;
}

.status-graph {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.status-graph h3 {
  color: var(--light-color);
  margin-bottom: 15px;
  text-align: center;
}

.graph-container {
  height: 200px;
}

.status-additional {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.additional-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.additional-card h3 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-item {
  display: flex;
  align-items: center;
}

.info-icon {
  flex: 0 0 40px;
  height: 40px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary-color);
}

.info-content h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
}

.feature-icon {
  font-size: 1.5rem;
  margin-right: 10px;
}

.feature-text h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.status-history {
  padding: var(--section-padding) 0;
  background: rgba(45, 52, 54, 0.5);
}

.status-history h2 {
  text-align: center;
  margin-bottom: 50px;
}

.history-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.history-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 15px;
  height: 100%;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 5px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
  border: 2px solid var(--darker-color);
}

.timeline-date {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.timeline-content h3 {
  color: var(--light-color);
  margin-bottom: 5px;
}

/* ====== ABOUT PAGE ====== */
.about-section {
  padding: var(--section-padding);
  background: rgba(45, 52, 54, 0.5);
}

.about-intro {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.intro-content {
  flex: 1;
  padding-right: 30px;
}

.intro-content h2 {
  color: var(--light-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.intro-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.intro-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.intro-image {
  flex: 1;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-owner {
  margin-bottom: 50px;
}

.owner-card {
  display: flex;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.owner-avatar {
  flex: 0 0 200px;
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owner-info {
  flex: 1;
  padding: 30px;
}

.owner-info h3 {
  color: var(--light-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.owner-message p {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.owner-signature {
  font-style: italic;
  color: var(--secondary-color);
  font-weight: 600;
  text-align: right;
  margin-top: 20px;
}

.about-values {
  margin-bottom: 50px;
}

.about-values h2 {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-card h3 {
  color: var(--light-color);
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-team {
  margin-bottom: 50px;
}

.about-team h2 {
  text-align: center;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.member-avatar {
  height: 250px;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.member-info p {
  color: var(--text-color);
  margin-bottom: 15px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.member-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.member-social a:hover {
  background: var(--primary-color);
  color: white;
}

.about-hosting {
  margin-bottom: 50px;
}

.about-hosting h2 {
  text-align: center;
  margin-bottom: 40px;
}

.hosting-content {
  display: flex;
  align-items: center;
  background: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hosting-info {
  flex: 1;
  padding: 30px;
}

.hosting-info p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.hosting-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.hosting-feature {
  display: flex;
  align-items: flex-start;
}

.hosting-feature i {
  flex: 0 0 30px;
  height: 30px;
  color: var(--primary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.hosting-feature h4 {
  color: var(--light-color);
  margin-bottom: 5px;
}

.hosting-cta {
  text-align: center;
}

.hosting-image {
  flex: 1;
}

.hosting-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-cta {
  margin-bottom: 30px;
}

.cta-card {
  background: linear-gradient(45deg, rgba(108, 92, 231, 0.3), rgba(253, 121, 168, 0.3));
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-card h2 {
  color: var(--light-color);
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-card p {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}







/* For Status Dot */
.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 8px;
  background-color: #6b7280;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}