:root {
  --primary-color: #5ec024; /* Bright green */
  --primary-light: #7dd347; /* Lighter green */
  --primary-dark: #4ba31e; /* Darker green */
  --secondary-color: #000000; /* Black */
  --text-color: #ffffff; /* White */
  --accent-color: #4ba31e; /* Darker green */
  --background-color: #0f0f0f; /* Very dark gray */
  --card-background: #181818; /* Dark gray */
  --transition-slow: 0.5s ease;
  --transition-medium: 0.3s ease;
  --transition-fast: 0.2s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Custom Cursor */
.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.7;
  transition: transform 0.1s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

/* Navigation Styles */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 100;
  transition: all var(--transition-medium);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.main-nav .logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
  transition: color var(--transition-medium);
}

.main-nav .logo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: translateX(-100%);
  transition: transform var(--transition-medium);
}

.main-nav .logo:hover::after {
  transform: translateX(0);
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color var(--transition-medium);
  padding: 5px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-medium);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.burger-menu .line {
  width: 100%;
  height: 2px;
  background-color: var(--text-color);
  transition: all var(--transition-medium);
}

/* Scrolled Navigation */
.main-nav.scrolled {
  background-color: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--background-color);
  z-index: 1;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(94, 192, 36, 0.2) 0%,
    rgba(15, 15, 15, 1) 70%
  );
  z-index: 1;
}

.animated-bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(94, 192, 36, 0.2) 0%,
    rgba(15, 15, 15, 0) 50%
  );
  animation: rotate 30s linear infinite;
  z-index: 0;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 100px 0 50px;
}

.hero-text {
  flex: 1;
  position: relative;
}

.title-container {
  position: relative;
  margin-bottom: 30px;
}

.hero-text h1 {
  font-size: 68px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--text-color);
  letter-spacing: 3px;
  line-height: 1.1;
  position: relative;
}

.hero-text h1 .highlight {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.hero-text h1 .highlight::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--primary-color);
  opacity: 0.3;
  z-index: -1;
}

.title-decoration {
  width: 100px;
  height: 5px;
  background-color: var(--primary-color);
  margin-bottom: 20px;
}

.hero-text .tagline {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.hero-text .description {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color);
  opacity: 0.8;
  max-width: 500px;
}

.hero-image {
  flex: 1;
  position: relative;
}

.image-container {
  position: relative;
  z-index: 2;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.image-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: var(--primary-color);
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.float-element {
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  opacity: 0.2;
}

.elem1 {
  top: 20%;
  left: 10%;
  width: 50px;
  height: 50px;
  animation: float1 10s ease-in-out infinite;
}

.elem2 {
  bottom: 30%;
  right: 5%;
  width: 80px;
  height: 80px;
  animation: float2 8s ease-in-out infinite;
}

.elem3 {
  top: 70%;
  left: 20%;
  width: 30px;
  height: 30px;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 30px);
  }
}

@keyframes float2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -40px);
  }
}

@keyframes float3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -20px);
  }
}

/* CA Box Styles */
.ca-box {
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94, 192, 36, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ca-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(94, 192, 36, 0.1),
    transparent
  );
  transform: rotate(45deg);
  animation: shine 6s linear infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20%,
  100% {
    left: 100%;
  }
}

.ca-label {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ca-container {
  display: flex;
  position: relative;
}

#contract-address {
  background-color: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 10px;
  padding: 15px;
  color: var(--text-color);
  font-family: "Poppins", sans-serif;
  width: 100%;
  font-size: 14px;
}

#copy-button {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--primary-color);
  cursor: pointer;
  font-size: 18px;
  transition: all var(--transition-medium);
}

#copy-button:hover {
  color: var(--primary-light);
  transform: translateY(-50%) scale(1.1);
}

.copy-message {
  position: absolute;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 12px;
  bottom: -30px;
  right: 0;
  opacity: 0;
  transition: opacity var(--transition-medium);
  font-weight: 600;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 22px;
  transition: all var(--transition-medium);
  border: 1px solid rgba(94, 192, 36, 0.3);
}

.social-icon:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(94, 192, 36, 0.3);
}

.x-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  opacity: 0.8;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-color);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  margin-bottom: 10px;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background-color: var(--primary-color);
  border-radius: 2px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

.scroll-indicator p {
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
}

/* About Section */
.about-section {
  padding: 150px 0 100px;
  background-color: var(--background-color);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.text-accent {
  color: var(--primary-color);
}

.section-decoration {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: 0 auto;
}

.about-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.about-cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.about-card {
  background-color: var(--card-background);
  border-radius: 15px;
  padding: 30px;
  transition: all var(--transition-medium);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(94, 192, 36, 0.2);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: rgba(94, 192, 36, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 26px;
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-color);
  font-weight: 600;
}

.about-card p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 15px;
}

.about-media {
  flex: 1;
  position: relative;
}

.media-container {
  position: relative;
}

.about-media img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.quote-block {
  position: absolute;
  bottom: -30px;
  left: 40px;
  background-color: var(--primary-color);
  padding: 30px;
  border-radius: 15px;
  max-width: 80%;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.quote-block blockquote {
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--secondary-color);
  margin-bottom: 10px;
}

.quote-block cite {
  font-size: 14px;
  font-weight: 500;
  color: var(--secondary-color);
  opacity: 0.8;
}

.parallax-divider {
  height: 300px;
  background-image: url("constantine-banner.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  position: relative;
  margin-top: 150px;
}

.parallax-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 15, 15, 1) 0%,
    rgba(15, 15, 15, 0.5) 50%,
    rgba(15, 15, 15, 1) 100%
  );
}

/* Gallery Section */
.gallery-section {
  padding: 150px 0;
  background-color: var(--background-color);
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  transition: all var(--transition-medium);
}

.gallery-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  z-index: 1;
}

.item1 {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
  background-image: url("constantine.png");
}

.item2 {
  grid-column: 4 / 7;
  grid-row: 1 / 2;
  background-image: url("constantine-banner.png");
}

.item3 {
  grid-column: 4 / 7;
  grid-row: 2 / 3;
  background-image: url("constantine.png");
}

.gallery-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  transition: all var(--transition-medium);
  transform: translateY(20px);
  opacity: 0;
}

.gallery-item:hover .gallery-content {
  transform: translateY(0);
  opacity: 1;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.gallery-content h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 5px;
}

.gallery-content p {
  font-size: 14px;
  color: var(--primary-color);
}

/* Footer */
footer {
  position: relative;
  padding: 150px 0 30px;
  background-color: var(--background-color);
}

.footer-waves {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: translateY(-99%);
}

.waves {
  width: 100%;
  height: 100px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  margin-bottom: 20px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-nav h3,
.footer-social h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.footer-nav h3::after,
.footer-social h3::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  opacity: 0.8;
  transition: all var(--transition-fast);
}

.footer-nav ul li a:hover {
  color: var(--primary-color);
  opacity: 1;
  padding-left: 5px;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero Buttons */
.hero-buttons {
  margin-bottom: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-medium);
  border: none;
  cursor: pointer;
  font-size: 16px;
  gap: 10px;
}

.btn-chart {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  box-shadow: 0 10px 20px rgba(94, 192, 36, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
}

.btn-chart:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(94, 192, 36, 0.4);
}

.btn-chart:hover::before {
  left: 100%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 56px;
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 200px);
  }
}

@media (max-width: 992px) {
  body {
    cursor: auto;
  }

  .cursor-follower {
    display: none;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .title-decoration {
    margin: 0 auto 20px;
  }

  .hero-text .description {
    margin: 0 auto 30px;
  }

  .social-links {
    justify-content: center;
  }

  .ca-box {
    max-width: 500px;
    margin: 0 auto 40px;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
  }

  .about-content {
    flex-direction: column;
  }

  .quote-block {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: -50px;
    max-width: 100%;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 250px);
  }

  .item1,
  .item2,
  .item3 {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-nav h3::after,
  .footer-social h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    padding: 15px 0;
    background-color: rgba(15, 15, 15, 0.9);
    backdrop-filter: blur(10px);
  }

  .nav-container {
    padding: 0 20px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 98;
  }

  .nav-links.active {
    transform: translateY(0);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }

  .burger-menu {
    display: flex;
    z-index: 99;
  }

  .burger-menu.active .line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .burger-menu.active .line:nth-child(2) {
    opacity: 0;
  }

  .burger-menu.active .line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero-text h1 {
    font-size: 42px;
  }

  .hero-text .tagline {
    font-size: 20px;
  }

  .hero-text .description {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .parallax-divider {
    height: 200px;
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text .tagline {
    font-size: 18px;
  }

  .ca-box {
    padding: 15px;
  }

  .about-card {
    padding: 20px;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .quote-block {
    padding: 20px;
  }

  .quote-block blockquote {
    font-size: 16px;
  }

  .gallery-grid {
    grid-template-rows: repeat(3, 200px);
  }
}
