@charset "UTF-8";
@import "../../fonts/stylesheet.css";

/* ===== CSS VARIABLES ===== */
:root {
  color-scheme: only dark;
  
  /* Colors */
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #2a2a2a;
  --brand-primary: #0088cc;
  --brand-secondary: #00aaff;
  --brand-accent: #006699;
  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
  --border-color: rgba(0, 136, 204, 0.3);
  
  /* Typography */
  --font-primary: "geomgraphic_light", sans-serif;
  --font-bold: "geomgraphic_bold", sans-serif;
  --font-italic: "geomgraphic_light_italic", sans-serif;
  --font-bold-italic: "geomgraphic_bold_italic", sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--brand-primary);
  border-radius: var(--radius-sm);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-secondary);
}

/* ===== UTILITY CLASSES ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.section {
  padding: var(--spacing-2xl) 0;
}

.section-title {
  font-family: var(--font-bold);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-primary);
  border-radius: 2px;
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-flex;
          align-items: center;
          justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-bold);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all var(--transition-normal);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== HEADER ===== */
.header-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-sm) 0;
}

.header-mobile__socials {
  display: flex;
          align-items: center;
          justify-content: center;
  gap: var(--spacing-md);
}

.header-mobile__social {
    display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  transition: all var(--transition-normal);
}

.header-mobile__social:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
}

.header-mobile__social img {
  width: 20px;
  height: 20px;
}

/* ===== HERO SECTION ===== */
.home {
  min-height: 100vh;
  display: flex;
            align-items: center;
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.home__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.home__hasbu-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

  .home__hasbu {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.home__hasbu:hover {
  transform: scale(1.05);
}

.home__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.home__content-header {
  display: flex;
          align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.home__content-header-btns {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  align-items: center;
}

.home__content-header-btn {
  padding: 8px 16px;
  font-size: 12px;
  white-space: nowrap;
  min-width: fit-content;
}

.home__content-header-links {
  display: flex;
  gap: var(--spacing-sm);
  flex-shrink: 0;
  align-items: center;
}

.home__content-header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-tertiary);
  transition: all var(--transition-normal);
  flex-shrink: 0;
  min-width: 40px;
}

.home__content-header-link:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.home__content-header-link img {
  width: 20px;
  height: 20px;
}

.home__title {
  font-family: var(--font-bold);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.home__title span {
  display: block;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home__description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
}

.home__description span {
  display: block;
  margin-top: var(--spacing-md);
  font-family: var(--font-bold);
  color: var(--brand-primary);
  font-size: 1.2rem;
}

.home__btn {
   align-self: flex-start;
   padding: 16px 32px;
   font-size: 16px;
 }

 .contract-address {
   margin-top: var(--spacing-lg);
   padding: var(--spacing-md);
   background: var(--bg-tertiary);
   border: 1px solid var(--border-color);
   border-radius: var(--radius-lg);
   transition: all var(--transition-normal);
 }

 .contract-address:hover {
   border-color: var(--brand-primary);
   box-shadow: var(--shadow-md);
 }

 .contract-address__label {
   font-size: 0.875rem;
   color: var(--text-muted);
   margin-bottom: var(--spacing-sm);
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .contract-address__container {
   display: flex;
   align-items: center;
   gap: var(--spacing-sm);
   background: var(--bg-primary);
   border-radius: var(--radius-sm);
   padding: var(--spacing-sm);
 }

 .contract-address__code {
   font-family: 'Courier New', monospace;
   font-size: 0.875rem;
   color: var(--brand-primary);
   word-break: break-all;
   flex: 1;
 }

 .contract-address__copy {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 32px;
   height: 32px;
   background: var(--brand-primary);
   border: none;
   border-radius: var(--radius-sm);
   color: white;
   cursor: pointer;
   transition: all var(--transition-normal);
 }

 .contract-address__copy:hover {
   background: var(--brand-secondary);
   transform: scale(1.05);
 }

 .contract-address__copy:active {
   transform: scale(0.95);
 }

/* ===== ABOUT SECTION ===== */
.about {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-xl);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.about__col {
  display: flex;
          flex-direction: column;
  gap: var(--spacing-lg);
}

.about__border-block {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.about__border-block-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.about__border-block-icon img {
  filter: drop-shadow(0 4px 8px rgba(0, 136, 204, 0.2));
  transition: transform var(--transition-normal);
}

.about__border-block:hover .about__border-block-icon img {
  transform: scale(1.05);
}

.about__border-block:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__border-block-title {
  font-family: var(--font-bold);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

.about__border-block-description {
  color: var(--text-secondary);
  line-height: 1.7;
}

.about__fill-block {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  text-align: center;
  transition: all var(--transition-normal);
}

.about__fill-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__fill-block-title {
  font-family: var(--font-bold);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
  opacity: 0.9;
}

.about__fill-block-num {
  font-family: var(--font-bold);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about__slider {
  display: flex;
          align-items: center;
  justify-content: center;
}

.about__slider-wrapper {
  width: 300px;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__slider-image {
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.about__row-mobile {
  display: none;
  gap: var(--spacing-md);
  padding: 0 var(--spacing-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

.about__row-mobile-card {
  flex: 0 0 auto;
  min-height: auto;
  height: auto;
  scroll-snap-align: start;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.about__row-mobile-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about__row-mobile-title {
  font-family: var(--font-bold);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

.about__row-mobile-text {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  padding-bottom: var(--spacing-sm);
}

.about__row-mobile-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
}

.about__row-mobile-num {
  font-family: var(--font-bold);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.about__row-mobile-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  padding: var(--spacing-2xl) 0;
}

.partners__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.partners__cards {
  display: flex;
  gap: var(--spacing-lg);
  overflow-x: auto;
  padding: var(--spacing-md) 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}

.partners__cards::-webkit-scrollbar {
  display: none; /* Safari and Chrome */
}

.partners__card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-normal);
}

.partners__card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.partners__card img {
  max-width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: filter var(--transition-normal);
}

.partners__card:hover img {
  filter: grayscale(0%);
}

/* ===== TOKENOMICS SECTION ===== */
  .tokenomiks {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
  }

.tokenomiks__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
            align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  }

.tokenomiks__illustration {
  width: 100%;
  max-width: 500px;
    height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  }

.tokenomiks__content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.tokenomiks__content-title {
  font-family: var(--font-bold);
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  text-align: center;
}

.tokenomiks__content-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-lg);
}

.tokenomiks__content-items {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.tokenomiks__content-item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  transition: all var(--transition-normal);
}

.tokenomiks__content-item:hover {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tokenomiks__content-header {
  display: flex;
          align-items: center;
          justify-content: space-between;
  margin-bottom: var(--spacing-md);
}

.tokenomiks__content-item-title {
  font-family: var(--font-bold);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.tokenomiks__content-item-title img {
  width: 16px;
  height: 16px;
}

.tokenomiks__content-item-num {
  font-family: var(--font-bold);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-primary);
}

.tokenomiks__content-indicators {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.tokenomiks__content-indicator {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== MEMEBLOCK SECTION ===== */
.memeblock {
  padding: var(--spacing-2xl) 0;
}

.memeblock__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.memeblock__slider {
  position: relative;
  display: flex;
          align-items: center;
  justify-content: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.memeblock__slide {
  flex: 0 0 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
}

.memeblock__slide:hover {
  transform: scale(1.05);
}

.memeblock__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.memeblock__btn {
  display: flex;
          align-items: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.memeblock__btn:hover {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.memeblock__btn img {
  width: 20px;
  height: 20px;
}

/* ===== MEMFOLIO SECTION ===== */
.memfolio {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-secondary);
}

.memfolio__title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.memfolio__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.memfolio__bg {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.memfolio__bg::before {
  content: '';
    position: absolute;
  top: 0;
    left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  animation: scroll-grid 20s linear infinite;
}

@keyframes scroll-grid {
  0% { transform: translate(0, 0); }
  100% { transform: translate(10px, 10px); }
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--spacing-2xl) 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.footer__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer__text {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-align: left;
}

.footer__socials {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-normal);
  flex-shrink: 0;
}

.footer__social:hover {
  background: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer__social img {
  width: 20px;
  height: 20px;
}

.footer__btn {
  justify-self: end;
  white-space: nowrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .home__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .home__content-header {
    justify-content: center;
  }
  
  .home__btn {
    align-self: center;
  }
  
  .about__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .about__slider {
    order: -1;
  }
  
  .tokenomiks__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    text-align: center;
  }
  
  .footer__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
  }
  
  .footer__text {
    text-align: center;
    order: 3;
  }
  
  .footer__socials {
    order: 1;
    margin-bottom: var(--spacing-sm);
  }
  
  .footer__btn {
    justify-self: center;
    order: 2;
  }
}

@media (max-width: 768px) {
  .header-mobile {
    display: block;
  }
  
  .home {
    padding-top: 100px;
  }
  
  .container {
    padding: 0 var(--spacing-sm);
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .about {
    padding: var(--spacing-xl) 0;
  }
  
  .home__content-header {
    display: none;
  }
  
  .home__content-header-btns {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .about__row-mobile {
  display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    overflow: visible;
    padding: 0 var(--spacing-md);
  }
  
  .about__row-mobile-card {
    margin: 0;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    min-height: auto;
    height: auto;
    flex: none;
  }
  
  .about__row-mobile-icon {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
  }
  
  .about__row-mobile-icon img {
    filter: drop-shadow(0 4px 8px rgba(0, 136, 204, 0.2));
    transition: transform var(--transition-normal);
  }
  
  .about__row-mobile-card:hover .about__row-mobile-icon img {
    transform: scale(1.05);
  }
  
  .about__wrapper {
    display: none;
  }
  
  .memeblock__slider {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .memeblock__slide {
    flex: 0 0 auto;
    width: 100%;
    max-width: 300px;
  }
  
  .memeblock__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .memeblock__btn-prev {
    left: var(--spacing-sm);
  }
  
  .memeblock__btn-next {
    right: var(--spacing-sm);
  }
  
  .footer__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  
  .footer__socials {
    justify-content: center;
    gap: var(--spacing-md);
  }
  
  .footer__social {
    width: 44px;
    height: 44px;
  }
  
  .footer__social img {
    width: 22px;
    height: 22px;
  }
  
.footer__btn {
    width: 100%;
    max-width: 300px;
    justify-self: center;
  }
}

@media (max-width: 480px) {
  .home__title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 12px;
  }
  
  .home__btn {
    width: 100%;
  }
  
  .about__row-mobile-card {
    flex: 0 0 auto;
    min-height: auto;
    height: auto;
    padding: var(--spacing-lg) var(--spacing-md);
  }
  
  .about__row-mobile-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
  }
  
  .about__row-mobile-title {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
  }
  
  .tokenomiks__content-title {
    font-size: 2rem;
  }
  
  .about__fill-block-num {
    font-size: 2rem;
  }
  
  .footer__wrapper {
    gap: var(--spacing-md);
  }
  
  .footer__socials {
    gap: var(--spacing-sm);
  }
  
  .footer__social {
    width: 40px;
    height: 40px;
  }
  
  .footer__social img {
    width: 20px;
    height: 20px;
  }
  
  .footer__btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .contract-address__container {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .contract-address__code {
    font-size: 0.75rem;
    text-align: center;
  }
  
  .contract-address__copy {
    width: 100%;
    height: 36px;
  }
}

@media (max-width: 480px) {
  .home__content-header {
    gap: var(--spacing-sm);
  }
  .home__content-header-btns {
    gap: var(--spacing-xs);
  }
  .home__content-header-btn {
    padding: 8px 16px;
    font-size: 10px;
  }
  .home__content-header-links {
    gap: var(--spacing-xs);
  }
  .home__content-header-link {
    width: 36px;
    height: 36px;
  }
  .home__content-header-link img {
    width: 18px;
    height: 18px;
  }
}

/* Custom CSS Illustrations */
.about__custom-illustration {
  width: 100%;
  height: 300px;
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 136, 204, 0.1) 0%, transparent 70%),
    linear-gradient(45deg, #0088cc 25%, transparent 25%), 
    linear-gradient(-45deg, #00aaff 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #0088cc 75%), 
    linear-gradient(-45deg, transparent 75%, #00aaff 75%);
  background-size: 100% 100%, 40px 40px, 40px 40px, 40px 40px, 40px 40px;
  background-position: 0 0, 0 0, 20px 0, 20px -20px, 0px 20px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about__custom-illustration::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: 
    radial-gradient(circle at 30% 30%, #0088cc 0%, #00aaff 100%);
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0, 136, 204, 0.3);
}

.about__custom-illustration::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: 
    radial-gradient(circle at 40% 40%, #00aaff 0%, #0088cc 100%);
  border-radius: 50%;
  box-shadow: inset 0 4px 16px rgba(255, 255, 255, 0.3);
}

.tokenomiks__custom-illustration {
  width: 100%;
  height: 300px;
  background: 
    linear-gradient(135deg, rgba(0, 136, 204, 0.1) 0%, rgba(0, 170, 255, 0.1) 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.tokenomiks__custom-illustration::before {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 80px;
  background: linear-gradient(135deg, #0088cc 0%, #00aaff 100%);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 136, 204, 0.3);
}

.tokenomiks__custom-illustration::after {
  content: '';
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tokenomiks__custom-illustration::after {
  content: '25%    25%    50%';
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: #0088cc;
  font-family: var(--font-bold);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2rem;
  text-shadow: 0 2px 4px rgba(0, 136, 204, 0.3);
}

/* ===== CARD EFFECTS ===== */
/* Enhanced hover effects for all cards */
.about__border-block,
.about__fill-block,
.about__row-mobile-card,
.partners__card,
.tokenomiks__content-item,
.contract-address {
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

/* Glow effect on hover */
.about__border-block::before,
.about__fill-block::before,
.about__row-mobile-card::before,
.partners__card::before,
.tokenomiks__content-item::before,
.contract-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 136, 204, 0.1), transparent);
  transition: left var(--transition-slow);
  z-index: 1;
}

.about__border-block:hover::before,
.about__fill-block:hover::before,
.about__row-mobile-card:hover::before,
.partners__card:hover::before,
.tokenomiks__content-item:hover::before,
.contract-address:hover::before {
  left: 100%;
}

/* Enhanced hover transforms */
.about__border-block:hover,
.about__row-mobile-card:hover,
.partners__card:hover,
.tokenomiks__content-item:hover,
.contract-address:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0, 136, 204, 0.2),
    0 0 0 1px rgba(0, 136, 204, 0.3);
}

.about__fill-block:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 
    0 20px 40px rgba(0, 136, 204, 0.3),
    0 0 0 1px rgba(0, 136, 204, 0.5);
}

/* Pulse animation for important elements */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(0, 136, 204, 0.7);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(0, 136, 204, 0);
  }
}

.home__btn {
  animation: pulse-glow 2s infinite;
}

.home__btn:hover {
  animation: none;
  box-shadow: 
    0 8px 32px rgba(0, 136, 204, 0.4),
    0 0 0 2px rgba(0, 136, 204, 0.6);
}

/* Floating animation for cards */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.about__border-block,
.about__fill-block,
.about__row-mobile-card,
.partners__card,
.tokenomiks__content-item {
  animation: float 6s ease-in-out infinite;
}

.about__border-block:nth-child(odd),
.about__fill-block:nth-child(odd),
.partners__card:nth-child(odd),
.tokenomiks__content-item:nth-child(odd) {
  animation-delay: 0.5s;
}

.about__border-block:nth-child(even),
.about__fill-block:nth-child(even),
.partners__card:nth-child(even),
.tokenomiks__content-item:nth-child(even) {
  animation-delay: 1s;
}

/* Hover state stops floating animation */
.about__border-block:hover,
.about__fill-block:hover,
.about__row-mobile-card:hover,
.partners__card:hover,
.tokenomiks__content-item:hover {
  animation: none;
}

/* Card content z-index to stay above glow effect */
.about__border-block > *,
.about__fill-block > *,
.about__row-mobile-card > *,
.partners__card > *,
.tokenomiks__content-item > *,
.contract-address > * {
  position: relative;
  z-index: 2;
}

/* Enhanced button effects */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

/* Social media button effects */
.header-mobile__social,
.home__content-header-link,
.footer__social {
  position: relative;
  overflow: hidden;
}

.header-mobile__social::before,
.home__content-header-link::before,
.footer__social::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: left var(--transition-normal);
}

.header-mobile__social:hover::before,
.home__content-header-link:hover::before,
.footer__social:hover::before {
  left: 100%;
}

/* Enhanced logo hover effect */
.home__hasbu {
  position: relative;
  overflow: hidden;
}

.home__hasbu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(0, 136, 204, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.home__hasbu:hover::before {
  opacity: 1;
}

/* Card border gradient effect */
.about__border-block,
.about__row-mobile-card,
.partners__card,
.tokenomiks__content-item,
.contract-address {
  background: linear-gradient(145deg, var(--bg-tertiary), var(--bg-secondary));
  border: 1px solid transparent;
  background-clip: padding-box;
}

.about__border-block::after,
.about__row-mobile-card::after,
.partners__card::after,
.tokenomiks__content-item::after,
.contract-address::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.about__border-block:hover::after,
.about__row-mobile-card:hover::after,
.partners__card:hover::after,
.tokenomiks__content-item:hover::after,
.contract-address:hover::after {
  opacity: 0.1;
}

/* Enhanced fill block gradient */
.about__fill-block {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  position: relative;
  overflow: hidden;
}

.about__fill-block::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transform: rotate(45deg);
  transition: transform var(--transition-slow);
}

.about__fill-block:hover::before {
  transform: rotate(45deg) scale(1.2);
}

/* Text glow effect for important text */
.about__border-block-title,
.tokenomiks__content-item-title,
.home__title span {
  text-shadow: 0 0 10px rgba(0, 136, 204, 0.5);
  transition: text-shadow var(--transition-normal);
}

.about__border-block:hover .about__border-block-title,
.tokenomiks__content-item:hover .tokenomiks__content-item-title {
  text-shadow: 0 0 20px rgba(0, 136, 204, 0.8);
}

/* Icon rotation effect */
.about__border-block-icon img,
.about__row-mobile-icon img {
  transition: transform var(--transition-slow);
}

.about__border-block:hover .about__border-block-icon img,
.about__row-mobile-card:hover .about__row-mobile-icon img {
  transform: scale(1.1) rotate(5deg);
}

/* Number counter animation */
.about__fill-block-num,
.tokenomiks__content-item-num {
  transition: transform var(--transition-normal);
}

.about__fill-block:hover .about__fill-block-num,
.tokenomiks__content-item:hover .tokenomiks__content-item-num {
  transform: scale(1.1);
}

/* Copy button enhanced effect */
.contract-address__copy {
  position: relative;
  overflow: hidden;
}

.contract-address__copy::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left var(--transition-normal);
}

.contract-address__copy:hover::before {
  left: 100%;
}

/* Responsive adjustments for card effects */
@media (max-width: 768px) {
  .about__border-block,
  .about__fill-block,
  .about__row-mobile-card,
  .partners__card,
  .tokenomiks__content-item,
  .contract-address {
    animation: none;
  }
  
  .about__border-block:hover,
  .about__fill-block:hover,
  .about__row-mobile-card:hover,
  .partners__card:hover,
  .tokenomiks__content-item:hover,
  .contract-address:hover {
    transform: translateY(-4px) scale(1.01);
  }
}

/* Ripple effect for buttons */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Enhanced focus states for accessibility */
.btn:focus,
.header-mobile__social:focus,
.home__content-header-link:focus,
.footer__social:focus,
.contract-address__copy:focus {
  outline: 2px solid var(--brand-primary);
  outline-offset: 2px;
}

/* Card entrance animation */
@keyframes card-entrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.about__border-block,
.about__fill-block,
.about__row-mobile-card,
.partners__card,
.tokenomiks__content-item,
.contract-address {
  animation: card-entrance 0.6s ease-out;
}

/* Hover state for better visual feedback */
.about__border-block:active,
.about__fill-block:active,
.about__row-mobile-card:active,
.partners__card:active,
.tokenomiks__content-item:active,
.contract-address:active {
  transform: translateY(-2px) scale(0.98);
  transition: transform 0.1s ease;
}

/* Enhanced gradient backgrounds for cards */
.about__border-block,
.about__row-mobile-card,
.partners__card,
.tokenomiks__content-item,
.contract-address {
  background: linear-gradient(145deg, 
    rgba(42, 42, 42, 0.8) 0%, 
    rgba(26, 26, 26, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 136, 204, 0.2);
}

/* Glow effect for active states */
.btn:active,
.header-mobile__social:active,
.home__content-header-link:active,
.footer__social:active,
.contract-address__copy:active {
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.6);
  transform: scale(0.95);
}

/* Smooth transitions for all interactive elements */
* {
  transition: all var(--transition-normal);
}

/* Enhanced mobile touch feedback */
@media (hover: none) and (pointer: coarse) {
  .about__border-block:active,
  .about__fill-block:active,
  .about__row-mobile-card:active,
  .partners__card:active,
  .tokenomiks__content-item:active,
  .contract-address:active {
    transform: scale(0.98);
    background: rgba(0, 136, 204, 0.1);
  }
  
  .btn:active {
    transform: scale(0.95);
  }
}

/* ===== ANIMATED BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 136, 204, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(0, 136, 204, 0.08) 0%, transparent 50%);
  animation: background-float 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes background-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(-10px, -10px) scale(1.02);
  }
  50% {
    transform: translate(10px, -5px) scale(0.98);
  }
  75% {
    transform: translate(-5px, 10px) scale(1.01);
  }
}

/* Floating particles */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 200px 60px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 240px 20px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 280px 70px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 320px 40px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 360px 80px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 400px 30px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 440px 60px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 480px 20px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 520px 70px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 560px 40px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 600px 80px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 640px 30px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 680px 60px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 720px 20px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 760px 70px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 800px 40px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 840px 80px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 880px 30px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 920px 60px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 960px 20px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 1000px 70px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 1040px 40px, rgba(0, 136, 204, 0.4), transparent),
    radial-gradient(1px 1px at 1080px 80px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(2px 2px at 1120px 30px, rgba(0, 136, 204, 0.3), transparent),
    radial-gradient(2px 2px at 1160px 60px, rgba(0, 170, 255, 0.3), transparent),
    radial-gradient(1px 1px at 1200px 20px, rgba(0, 136, 204, 0.4), transparent);
  background-repeat: repeat;
  background-size: 1200px 100px;
  animation: particle-float 30s linear infinite;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes particle-float {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-100px);
  }
}

/* Enhanced section backgrounds with subtle animations */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(0, 136, 204, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(0, 170, 255, 0.03) 0%, transparent 70%);
  animation: section-glow 15s ease-in-out infinite;
  pointer-events: none;
}

.tokenomiks::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 70%, rgba(0, 136, 204, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(0, 170, 255, 0.05) 0%, transparent 60%);
  animation: section-glow 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes section-glow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

/* Grid pattern overlay */
.home::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(0, 136, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 136, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 25s linear infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes grid-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Enhanced card backgrounds with animated gradients */
.about__border-block::before,
.about__row-mobile-card::before,
.partners__card::before,
.tokenomiks__content-item::before,
.contract-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    rgba(0, 136, 204, 0.02) 0%, 
    rgba(0, 170, 255, 0.02) 50%, 
    rgba(0, 136, 204, 0.02) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease-in-out infinite;
  border-radius: inherit;
  z-index: -1;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Mobile optimizations for background animations */
@media (max-width: 768px) {
  body::after {
    background-size: 600px 50px;
    animation-duration: 20s;
  }
  
  .home::after {
    background-size: 30px 30px;
    animation-duration: 15s;
  }
  
  .about::before,
  .tokenomiks::before {
    animation-duration: 10s;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .home::after,
  .about::before,
  .tokenomiks::before,
  .about__border-block::before,
  .about__row-mobile-card::before,
  .partners__card::before,
  .tokenomiks__content-item::before,
  .contract-address::before {
    animation: none;
  }
}

/* ===== VOTING SECTION ===== */
.voting {
  padding: var(--spacing-2xl) 0;
  position: relative;
  overflow: hidden;
}

.voting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(0, 136, 204, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(0, 170, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: section-glow 8s ease-in-out infinite alternate;
}

.voting__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.voting__content {
  max-width: 600px;
}

.voting__coming-soon {
  background: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: var(--spacing-xl);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.voting__coming-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 136, 204, 0.1) 0%, 
    rgba(0, 170, 255, 0.05) 50%, 
    rgba(0, 136, 204, 0.1) 100%);
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.voting__coming-soon:hover::before {
  opacity: 1;
}

.voting__coming-soon-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-lg);
  color: var(--brand-primary);
  animation: float 3s ease-in-out infinite;
}

.voting__coming-soon-title {
  font-family: var(--font-bold);
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  text-align: center;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.voting__coming-soon-description {
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: var(--spacing-xl);
  line-height: 1.7;
}

.voting__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}

.voting__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(42, 42, 42, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 136, 204, 0.2);
  transition: all var(--transition-normal);
}

.voting__feature:hover {
  background: rgba(42, 42, 42, 0.8);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.voting__feature-icon {
  color: var(--brand-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.voting__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.voting__feature-text strong {
  color: var(--text-primary);
  font-family: var(--font-bold);
}

.voting__feature-text span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.voting__notification {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(0, 136, 204, 0.1);
  border: 1px solid rgba(0, 136, 204, 0.3);
  border-radius: var(--radius-md);
  margin-bottom: var(--spacing-xl);
}

.voting__notification-icon {
  color: var(--brand-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.voting__notification-text {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.voting__notification-text strong {
  color: var(--text-primary);
  font-family: var(--font-bold);
}

.voting__actions {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
}

.voting__btn {
  min-width: 140px;
}

.voting__illustration {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

.voting__illustration-content {
  position: relative;
  width: 300px;
  height: 300px;
}

.voting__illustration-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--brand-primary);
  opacity: 0.3;
  animation: pulse-glow 4s ease-in-out infinite;
}

.voting__illustration-circle--1 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation-delay: 0s;
}

.voting__illustration-circle--2 {
  width: 150px;
  height: 150px;
  top: 75px;
  left: 75px;
  border-color: var(--brand-secondary);
  animation-delay: 1s;
}

.voting__illustration-circle--3 {
  width: 100px;
  height: 100px;
  top: 100px;
  left: 100px;
  border-color: var(--brand-accent);
  animation-delay: 2s;
}

.voting__illustration-pulse {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--brand-primary);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* ===== RESPONSIVE DESIGN FOR VOTING ===== */
@media (max-width: 1024px) {
  .voting__wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .voting__illustration {
    height: 300px;
  }
  
  .voting__illustration-content {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .voting {
    padding: var(--spacing-xl) 0;
  }
  
  .voting__coming-soon {
    padding: var(--spacing-lg);
  }
  
  .voting__coming-soon-title {
    font-size: 1.5rem;
  }
  
  .voting__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .voting__btn {
    width: 100%;
    max-width: 200px;
  }
  
  .voting__illustration {
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .voting__illustration-content {
    width: 200px;
    height: 200px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .voting__illustration-circle--1 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .voting__illustration-circle--2 {
    width: 110px;
    height: 110px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .voting__illustration-circle--3 {
    width: 70px;
    height: 70px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 480px) {
  .voting__coming-soon {
    padding: var(--spacing-md);
  }
  
  .voting__coming-soon-title {
    font-size: 1.25rem;
  }
  
  .voting__feature {
    padding: var(--spacing-sm);
  }
  
  .voting__notification {
    padding: var(--spacing-sm);
  }
  
  .voting__illustration {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .voting__illustration-content {
    width: 150px;
    height: 150px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .voting__illustration-circle--1 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .voting__illustration-circle--2 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .voting__illustration-circle--3 {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}



