:root {
  --primary: #4a6bff;
  --primary-dark: #3a5bef;
  --secondary: #00d4ff;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --accent: #ff6b6b;
  --text: #333;
  --text-light: #777;
  --bg: #fff;
  --bg-secondary: #f5f7fa;
}

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

body {
  font-family: 'Space Grotesk', 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text);
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

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

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

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 80px 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-nav {
  display: flex;
  list-style: none;
}

.navbar-nav li {
  margin-left: 30px;
}

.navbar-nav a {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  position: relative;
  color: var(--dark);
  font-weight: 800;
}

.navbar-nav a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-nav a:hover:after {
  width: 100%;
}

/* Hero Section */
#landing {
  height: 100vh;
  display: flex;
  align-items: center;
  background: url(background1.jpg) center /cover;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.landing-text h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
}

.landing-highlight {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.landing-highlight:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 5px;
  bottom: 5px;
  left: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.landing-text:hover .landing-highlight:after {
  transform: scaleX(1);
  transform-origin: left;
}

/* About Section */
.about {
  background: var(--bg-secondary);
  align-items: center;
  align-content: center;
  text-align: center;
  height: 100vh;
}

.about p{
  font-size: medium;
}

.about .container {
  display: flex;
  align-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.about .left, .about .right {
  flex: 1;
  min-width: 300px;
}

.about img {
  max-width: 80%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Team Section */
.team {
  background: var(--bg-secondary);
  align-items: center;
  align-content: center;
  text-align: center;
  padding: auto;
  height: 100vh;
}

.team-images {
  display: flex;
  align-content: center;
  gap: 100px;
  margin-top: 50px;
  padding: auto;
}

.team-member {
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;

}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.team-member:hover img {
  border-color: var(--primary);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.team-member p {
  margin-top: 15px;
  font-weight: 500;
}

/* Solution Section */
.solution
{
  background: url(background1.jpg) center /cover;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: auto;
  height: 100vh;
}

.solution .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin-top: 100px;
  text-align: center;
}

.solution .left, .solution .right {
  flex: 1;
  min-width: 300px;
}

.solution img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* events */
.event{
  background: url(background1.jpg) center /cover;
  align-items: center;
  align-content: center;
  text-align: center;
  padding: auto;
  justify-content: center;
  color: #dddae6;
  
}

.event .container-event{
  margin-bottom: 10px;
}

.nft{
  display: flex;
  align-items: center;
  max-width: 300px;
  margin: auto;
  border: 1px solid #ffffff22;
  background-color: #282c34;
  background: linear-gradient(0deg, rgba(40,44,52,1) 0%, rgba(17,0,32,.5) 100%);
  box-shadow: 0 7px 20px 5px #00000088;
  border-radius: .7rem;
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  overflow: hidden;
  transition: .5s all;
  


hr{
  width: 100%;
  border: none;
  border-bottom: 1px solid #88888855;
  margin-top: 0;
  align-items: center;
}
ins{
  text-decoration: none;
}
.main{
  margin-left: 15px;
  display: flex;
  -ms-flex-align: center;
  flex-direction: column;
  align-items: center;
  width: 90%;
  padding: 1rem;
  .tokenImage {
    align-content: center;
    border-radius: .5rem;
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    margin: auto;
  }
  .description{
    margin: .5rem 0;
    color: #dddae6;
  }
  .tokenInfo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    .price {
      display: flex;
      align-items: center;
      color: #ee83e5;
      font-weight: 700;
      ins{
        margin-left: -.3rem;
        margin-right: .5rem;
      }
    }
    .duration{
      display: flex;
      align-items: center;
      color: #a89ec9;
      margin-right: .2rem;
      ins{
        margin: .5rem;
        margin-bottom: .4rem;
      }
    }
  }
  .creator{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: .2rem;
    margin-bottom: -.3rem;
    ins{
      color: #a89ec9;
      text-decoration: none;
    }
    .wrapper{
      display: flex;
      align-items: center;
      border: 1px solid #ffffff22;
      padding: .3rem;
      margin: 0;
      margin-right: .5rem;
      border-radius: 100%;
      box-shadow: inset 0 0 0 4px #000000aa;
      img{
        border-radius: 100%;
        border: 1px solid #ffffff22;
        width: 2rem;
        height: 2rem;
        object-fit: cover;
        margin: 0;
      }
    }
  }
}
::before{
  position: fixed;
  content: "";
  box-shadow: 0 0 100px 40px #ffffff08;
  top: -10%;
  left: -100%;
  transform: rotate(-45deg);
  height: 60rem;
  transition: .7s all;
}
&:hover{
  border: 1px solid #ffffff44;
  box-shadow: 0 7px 50px 10px #000000aa;
  transform: scale(1.015);
  filter: brightness(1.3);
  ::before{
    filter: brightness(.5);
    top: -100%;
    left: 200%;
  }
}
}

/* Footer */
.footer {
  background: var(--dark);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.footerlogo {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 20px;
}

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

section {
  animation: fadeIn 0.6s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }
  
  .navbar-nav li {
    margin: 10px 0;
  }
  
  .about .container, .solution .container {
    flex-direction: column;
    background-size: auto;
    padding: 20px 0;
    height: fit-content;
  }
  
  .team-images {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  section {
    padding: 20px 0;
  }

  
}