:root {
  --primary-color: #1a1a2e;
  --secondary-color: #16213e;
  --text-color: #e2e2e2;
  --accent-color: #4d7cff;
  --accent-color-hover: #6b8fff;
  --background-overlay: rgba(26, 26, 46, 0.85);
  --header-height: 65px;
  --transition-speed: 0.3s;
  --border-radius: 8px;
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  --card-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
  background: var(--primary-color);
  background-image: linear-gradient(var(--background-overlay), var(--background-overlay)), 
                    url("http://i.imgur.com/AdI7T.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin: 0;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: border-box;
}

/* Reset styles */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

img {
  max-width: 100%;
}

a {
  color: var(--text-color);
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

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

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* New Header and Navigation Styles */
#site-header {
  background: rgba(26, 26, 46, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 70px;
}

.logo-area {
  padding: 0 15px;
}

.logo-area h1 {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
  background: linear-gradient(to right, #4d7cff, #6b8fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 100;
  margin-right: 15px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--accent-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.main-nav {
  flex: 1;
}

.main-nav.open {
  right: 0;
  width: 250px;
}

.main-nav ul {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav ul li {
  position: relative;
  margin: 0;
}

.main-nav ul li a {
  display: block;
  padding: 0 20px;
  height: 70px;
  line-height: 70px;
  color: var(--text-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav ul li a:hover {
  color: var(--accent-color);
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 60%;
}

/* Main content */
.banner_container {
  background: rgba(22, 33, 62, 0.8);
  border-radius: var(--border-radius);
  margin: 30px 0;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.main_banner {
  float: left;
  width: 65%;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.main_banner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.main_banner:hover img {
  transform: scale(1.03);
}

.main_banner_right {
  float: left;
  width: 35%;
  background: #141c2e;
}

.main_banner_right > div {
  background: #1c2940;
  margin: 15px;
  border-radius: var(--border-radius);
  color: var(--text-color);
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.banner_sec_content h2 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 18px;
}

.banner_sec_content p {
  font-size: 14px;
  line-height: 1.5;
}

.points {
  display: flex;
  height: 40px;
  width: 160px;
  border-radius: var(--border-radius);
  margin: 0 auto 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #2c3e50, #4d7cff);
  position: relative;
}

.points:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.points span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.points span.currency {
  width: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: gold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.points span.amount {
  flex: 1;
  background: linear-gradient(135deg, #2c3e50, #4d7cff);
}

input.points_link {
  width: 100%;
  height: 40px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(77, 124, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-color);
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

input.points_link:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(77, 124, 255, 0.2);
  outline: none;
}

.share-box {
  position: relative;
  margin: 15px auto;
  width: 100%;
}

.share-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.share-text {
  width: 100%;
  height: 100px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(77, 124, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-color);
  padding: 12px;
  box-sizing: border-box;
  resize: none;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s ease;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.share-text::-webkit-scrollbar {
  display: none; /* Chrome, Safari and Opera */
}

.share-text:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(77, 124, 255, 0.2);
  outline: none;
}

.copy-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 12px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--accent-color-hover);
  transform: translateY(-2px);
}

/* Box container */
.box_section_container_top {
  height: 10px;
  background: linear-gradient(to right, #1a2a47, #324b7a);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.box_section_container {
  background: rgba(22, 33, 62, 0.8);
  padding: 30px 15px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: none;
}

.category-container {
  margin-bottom: 30px;
}

.category-title {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  padding: 10px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--border-radius);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid rgba(77, 124, 255, 0.3);
}

.box_container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 25px;
  width: 100%;
}

.box {
  background: linear-gradient(145deg, #1c2940, #16213e);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  background: linear-gradient(145deg, #233559, #1a2846);
}

.box_image_container {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

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

.box:hover .box_image_container img {
  transform: scale(1.08);
}

.box_points {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: gold;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 2;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.box_content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 12px;
  color: white;
  font-size: 14px;
  backdrop-filter: blur(5px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.box_bottom {
  display: flex;
  height: 40px;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background: #141c2e;
}

.lock svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.7);
}

.unlock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  background: #213253;
}

.unlock svg {
  width: 22px;
  height: 22px;
  fill: #4dffb8;
}

.box_bottom_text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1c2940;
  transition: all 0.3s ease;
}

.box_bottom_text a {
  color: #ff6b81;
  font-weight: 600;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.box_bottom_text a.unlocked {
  color: #4dffb8;
  background: linear-gradient(145deg, #1c2940, #233559);
}

.box_bottom_text a.unlocked:hover {
  background: linear-gradient(145deg, #233559, #2c4070);
}

/* New User Stats Section */
#user-stats {
  margin: 30px 0;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background: rgba(22, 33, 62, 0.8);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
  flex: 1;
  display: flex;
  align-items: center;
  background: linear-gradient(145deg, #1c2940, #233559);
  border-radius: var(--border-radius);
  padding: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  margin-right: 15px;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--accent-color);
}

.stat-content {
  flex: 1;
}

.stat-value {
  font-size: 20px;
  font-weight: 700;
  color: white;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.online-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: #2ecc71;
  border-radius: 50%;
  margin-right: 8px;
  animation: pulse 2s infinite;
  box-shadow: 0 0 5px rgba(46, 204, 113, 0.5);
}

/* Slider Styles */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 3;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  opacity: 0.5;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.slider-arrow:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.6);
}

.slider-arrow.prev {
  left: 10px;
}

.slider-arrow.next {
  right: 10px;
}

/* Footer */
footer {
  background: linear-gradient(to right, #1a2a47, #16213e);
  padding: 30px 0;
  margin-top: 40px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

.footer_section_container {
  text-align: center;
}

.copyright_text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.copyright_text a {
  color: var(--accent-color);
}

.copyright_text a:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  margin: 30px 0;
}

.faq-container {
  background: rgba(22, 33, 62, 0.8);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title {
  color: var(--accent-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(77, 124, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.accordion-item {
  background: linear-gradient(145deg, #1c2940, #233559);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.accordion-header {
  padding: 15px 20px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-color);
  transition: all 0.3s ease;
}

.accordion-header::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--accent-color);
}

.accordion-item.active .accordion-header::after {
  content: '−';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(0, 0, 0, 0.2);
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-content p {
  padding: 15px 20px;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 14px;
}

/* Support Section */
#support {
  margin: 30px 0;
}

.support-container {
  background: rgba(22, 33, 62, 0.8);
  border-radius: var(--border-radius);
  padding: 25px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.support-description {
  text-align: center;
  margin-bottom: 25px;
  color: var(--text-color);
  font-size: 16px;
}

.support-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.form-group:nth-child(3),
.form-group:nth-child(4) {
  grid-column: span 2;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(77, 124, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-group select {
  background: rgba(0, 0, 0, 0.4);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23dadada%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 15px top 50%;
  background-size: 12px auto;
  padding-right: 30px;
}

.form-group select option {
  background: #1c2940;
  color: var(--text-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(77, 124, 255, 0.2);
  outline: none;
}

.support-submit {
  grid-column: span 2;
  padding: 12px 20px;
  background: var(--accent-color);
  color: white;
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  width: 50%;
  margin: 20px auto 0;
}

.support-submit:hover {
  background: var(--accent-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(77, 124, 255, 0.4);
}

.message-status {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
  padding: 15px;
  border-radius: var(--border-radius);
  opacity: 0;
  transition: all 0.5s ease;
}

.message-status.success {
  background: rgba(46, 204, 113, 0.2);
  border: 1px solid #2ecc71;
  color: #2ecc71;
  opacity: 1;
}

.message-status.error {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid #e74c3c;
  color: #e74c3c;
  opacity: 1;
}

/* Points popup styles */
.points-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(5px);
}

.points-popup.show {
  opacity: 1;
  visibility: visible;
}

.points-popup.fade-out {
  opacity: 0;
  visibility: hidden;
}

.popup-content {
  background: linear-gradient(145deg, #1c2940, #233559);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 400px;
  width: 90%;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  border: 1px solid rgba(77, 124, 255, 0.3);
}

.points-popup.show .popup-content {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--accent-color);
}

.popup-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.popup-icon svg {
  width: 40px;
  height: 40px;
  fill: #ff6b81;
}

.popup-content h3 {
  color: var(--accent-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.popup-content p {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--text-color);
}

.popup-content .highlight {
  color: #ff6b81;
  font-weight: 700;
  font-size: 18px;
}

.more-points-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(77, 124, 255, 0.3);
}

.more-points-btn:hover {
  background: var(--accent-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(77, 124, 255, 0.4);
}

/* Pulse animation for points badge */
@keyframes pulsePoints {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(77, 124, 255, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

.points.pulse-animation {
  animation: pulsePoints 0.5s ease 3;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 0.5s ease forwards;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(46, 204, 113, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    transform: scale(1);
  }
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: block;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(145deg, #1c2940, #233559);
  margin: 80px auto;
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  border: 1px solid rgba(77, 124, 255, 0.3);
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h2 {
  color: var(--accent-color);
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.modal-close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s ease;
}

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

.modal-body {
  padding: 25px;
}

.modal-body p {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}

.modal-btn {
  background: var(--accent-color);
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 15px;
  box-shadow: 0 4px 12px rgba(77, 124, 255, 0.3);
}

.modal-btn:hover {
  background: var(--accent-color-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(77, 124, 255, 0.4);
}

#reward-email {
  width: 100%;
  padding: 15px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(77, 124, 255, 0.3);
  border-radius: var(--border-radius);
  color: var(--text-color);
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

#reward-email:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(77, 124, 255, 0.2);
  outline: none;
}

.verification-info {
  background: rgba(0, 0, 0, 0.2);
  padding: 15px 15px 15px 40px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
}

.verification-info ol {
  list-style-type: decimal;
}

.verification-info li {
  margin-bottom: 10px;
  line-height: 1.5;
}

.verification-status {
  margin-top: 20px;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  display: none;
}

.verification-status.show {
  display: block;
}

.spinner {
  margin: 0 auto 15px;
  width: 70px;
  text-align: center;
}

.spinner > div {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
  border-radius: 100%;
  display: inline-block;
  animation: bounce 1.4s infinite ease-in-out both;
  margin: 0 3px;
}

.spinner .bounce1 {
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  animation-delay: -0.16s;
}

@keyframes bounce {
  0%, 80%, 100% {
    transform: scale(0);
  } 
  40% {
    transform: scale(1.0);
  }
}

/* Responsive styles */
@media (max-width: 979px) {
  .main_banner {
    width: 100%;
    float: none;
  }
  
  .main_banner_right {
    width: 100%;
    float: none;
  }
  
  .main_banner_right > div {
    margin: 10px;
  }
  
  .box_container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
  
  .slider-wrapper {
    height: 220px;
  }
  
  .container {
    max-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}

@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 99;
    padding-top: 80px;
    overflow-y: auto;
    overflow-x: hidden;
  }
  
  body.nav-open {
    overflow: hidden;
  }
  
  .main-nav ul {
    flex-direction: column;
  }
  
  .main-nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .main-nav ul li a {
    padding: 0 25px;
    height: 60px;
    line-height: 60px;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat-box {
    width: 100%;
  }
  
  .box_container {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 15px;
  }
  
  .slider-wrapper {
    height: 200px;
  }
  
  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  
  .modal-content {
    margin: 50px auto;
    width: 95%;
    max-width: 90%;
  }
  
  .points-popup .popup-content {
    width: 90%;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .support-form {
    grid-template-columns: 1fr;
  }
  
  .form-group {
    width: 100%;
    margin-bottom: 15px;
  }
  
  .form-group:nth-child(3),
  .form-group:nth-child(4) {
    grid-column: span 1;
  }
  
  .support-submit {
    grid-column: span 1;
    width: 100%;
  }
}

@media (max-width: 479px) {
  .box_container {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .main_banner.left {
    display: block;
  }
  
  .box_image_container {
    height: 180px;
  }
  
  .box {
  }
  
  .box_points {
    font-size: 14px;
    padding: 3px 8px;
  }
  
  .box_content p {
    font-size: 12px;
  }
  
  .slider-wrapper {
    height: 180px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    margin: 0 3px;
  }
  
  .share-box {
    width: 100%;
    max-width: 100%;
  }
  
  .share-text {
    width: 100%;
    max-width: 100%;
  }
}

/* Fix for mobile view */
@media (max-width: 479px) {
  html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  .box_container {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Fix for popups */
  .points-popup {
    width: 100vw;
    max-width: 100vw;
    left: 0;
  }
  
  .points-popup .popup-content {
    width: 85%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .modal-content {
    width: 90%;
    max-width: 320px;
  }
}