body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #1E2A44, #2A4066);
  color: #fff;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 1000px!important;
}

.logo-icon {
    height: 100px;
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    scale: 2;
    padding-top: 4px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(30, 42, 68, 0.9);
  box-shadow: 0 2px 15px rgba(0, 212, 255, 0.3);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
}

.navbar .social-links a,
.navbar .cta-buttons a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.navbar .social-links a:hover,
.navbar .cta-buttons a:hover {
  color: #00D4FF;
}

.header {
  text-align: center;
  padding: 20px 20px 20px;
  background: linear-gradient(45deg, #1E2A44, #00D4FF);
  clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.header .header-content {
  position: relative;
  z-index: 1;
}

.header .logo {
  position: absolute;
  left: 20px;
  top: 20px;
}

.header .logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.header .logo img:hover {
  transform: rotate(10deg);
}

.header .thumbnail {
  position: absolute;
  left: 80px;
  top: 20px;
}

.header .thumbnail img {
  height: 50px;
  width: auto;
  border-radius: 5px;
  transition: opacity 0.3s ease;
}

.header .thumbnail img:hover {
  opacity: 0.7;
}

.header::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  background: radial-gradient(circle, rgba(161, 0, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  opacity: 0.8;
  will-change: transform;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 3em;
  margin: 0 0 10px;
  text-shadow: 0 0 10px #00D4FF;
}

.header-info {
  font-size: 1.1em;
  color: #ccc;
  margin-bottom: 20px;
}

.header-info span {
  color: #A100FF;
}

.cta-buttons a {
  display: inline-block;
  padding: 12px 25px;
  margin: 0 10px;
  text-decoration: none;
  border-radius: 5px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
}

.cta-buttons .buy {
  background: #A100FF;
  color: #fff;
}

.cta-buttons .buy:hover {
  background: #00D4FF;
  transform: translateY(-2px);
}

.cta-buttons .about {
  border: 2px solid #00D4FF;
  color: #00D4FF;
}

.cta-buttons .about:hover {
  color: #A100FF;
  border-color: #A100FF;
  transform: translateY(-2px);
}

.cta-buttons {
  padding-right: 32px;
}

.grid-container {
  width: 1000px;
  height: 1000px;
  background: #1E2A44;
  position: relative;
  margin: 20px auto;
  border: 1px solid #ddd; /* Optional border for visibility */

  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 10px 10px;
}

.purchased-area {
  position: absolute;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 10;
}

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

.progress {
  text-align: center;
  font-size: 1.2em;
  color: #A100FF;
  margin-bottom: 20px;
}

.progress-bar {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}

.progress-bar::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 4px, #00D4FF 4px, #00D4FF 8px);
  animation: moveLine 2s linear infinite;
}

@keyframes moveLine {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50px); }
}

.progress-bar-fill {
  height: 100%;
  background: #00D4FF;
  width: 0%;
  transition: width 0.3s ease;
}

.about-section {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  text-align: center;
  clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
}

.about-section h2 {
  color: #00D4FF;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5em;
}

.about-section p {
  color: #ccc;
}

.about-section img {
  width: 100%;
  margin-top: 20px;
  border-radius: 5px;
}

/* Footer styles */
.footer-columns {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.footer-column {
  flex: 1;
  margin: 0 20px;
  color: #ccc;
}

.footer-column h3 {
  color: #00D4FF;
  font-family: 'Orbitron', sans-serif;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00D4FF;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 5px 0;
  color: #ccc;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 20px 0;
}

.footer-text {
  text-align: center;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
}