:root {
    --primary-green: #2ecc71;
    --secondary-green: #27ae60;
    --accent-gold: #f1c40f;
    --text-light: #ecf0f1;
    --text-dim: #bdc3c7;
    --transition: all 0.3s ease;
    --bg-dark: #051a05;
    --bg-card: rgba(10, 41, 10, 0.85);
}
html{
background-color: #051a05;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #051a05;
}

h1, h2, h3, .logo {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-green);
}

a {
    text-decoration: none;
    color: inherit;
}
.wordbrk{
    word-break: break-word;
}
ul {
    list-style: none;
}
.migrate-btn{
    text-decoration: none; 
    display: inline-flex; 
    align-items: center;
    padding: 4px;
}
canvas {
  position: fixed;
  inset: 0;
  z-index: 9;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
/* Navigation */
.navbar {
    /* padding: 8px 5%; */
    background-color: rgba(5, 26, 5, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
    /* border-bottom: 1px solid var(--secondary-green); */
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.btn-3d {
    background-color: #fff;
    border: none;
    border-radius: 20px;
    color: #1dcc1d;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    transition: all .3s ease;
    white-space: nowrap;
}
.btn-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.navbar-notify {
    display: flex;
    padding: 8px 5%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    background-color: rgba(85, 86, 85, 0.95);
    /* border-bottom: 1px solid var(--secondary-green); */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.5); */
}
.navbar-notify .d-flex {
    position: relative;
}
.copied {
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    background: #f1c40f;
    color: #1f3c2b;
    border: 1px solid rgba(46, 204, 113, 0.35);
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.98);
    transition: var(--transition);
    pointer-events: none;
    z-index: 1001;
    width: 80px;
    height: 30px;
    top:30px;
}
.copied.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.copied::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 12px;
    border-width: 6px;
    border-style: solid;
    border-color: var(--bg-card) transparent transparent transparent;
}
.navbar-menu {
    display: flex;
    position: relative;
    padding: 8px 5%;
    justify-content: space-between;
    align-items: center;
    padding: 8px 5%;
    background-color: rgba(5, 26, 5, 0.95);
    /* border-bottom: 1px solid var(--secondary-green); */
    /* box-shadow: 0 2px 10px rgba(0,0,0,0.5); */
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}
.my-4{
    margin:10px 0;
}
.nav-links a {
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-green);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary-green);
}

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

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(46,204,113,0.1) 0%, rgba(5,26,5,1) 70%);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgdmlld0JveD0iMCAwIDQwIDQwIiBmaWxsLW9wYWNpdHk9IjAuMDUiIGZpbGw9IiMyZWNjNzEiPjxjaXJjbGUgY3g9IjIwIiBjeT0iMjAiIHI9IjEiLz48L3N2Zz4=');
    opacity: 0.3;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.hero-text {
    text-align: left;
}

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

.hero-uns-img {
    width: 100%;
    max-width: 480px;
    animation: heroZoom 6s ease-in-out infinite;
    will-change: transform;
}

.audit-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(5, 26, 5, 0.9);
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.audit-btn:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 204, 113, 0.4);
}

.audit-btn::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--primary-green);
    color: var(--bg-dark);
    border-radius: 50%;
    font-size: 10px;
    font-weight: bold;
}

.audit-btn:hover::before {
    background: var(--bg-dark);
    color: var(--primary-green);
}

.btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    font-weight: bold;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
}

.btn-highlight {
    position: relative;
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    animation: btnGlow 2.6s ease-in-out infinite;
}

.btn-highlight::after {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 40px;
    background: radial-gradient(rgba(241,196,15,0.25), transparent 60%);
    filter: blur(10px);
    opacity: 0;
    animation: btnAura 2.6s ease-in-out infinite;
    pointer-events: none;
}

.btn-highlight:hover {
    background: var(--accent-gold);
    color: #051a05;
    box-shadow: 0 0 22px rgba(241,196,15,0.55), 0 0 40px rgba(46,204,113,0.35);
    transform: scale(1.04);
}

@keyframes btnGlow {
    0% { box-shadow: 0 0 0 rgba(46,204,113,0), 0 0 0 rgba(241,196,15,0); transform: scale(1); }
    50% { box-shadow: 0 0 18px rgba(46,204,113,0.45), 0 0 32px rgba(241,196,15,0.25); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 rgba(46,204,113,0), 0 0 0 rgba(241,196,15,0); transform: scale(1); }
}

@keyframes btnAura {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* General Section Styles */
.section {
    padding: 60px 5%;
    /* min-height: 100vh; Ensure sections take full height or significant space */
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 99;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    /* left: 50%; */
    transform: translateX(-50%);
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-title .section-title-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
    filter: drop-shadow(0 0 6px rgba(46,204,113,0.25));
}

.subtitle {
    text-align: center;
    color: var(--text-dim);
    margin-bottom: 50px;
    font-size: 1.2rem;
}

/* Section 1: About Cards */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 40px;
    align-items: start;
    margin-top: 30px;
}

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

.about-visual .uns-animate {
    width: 100%;
    max-width: 420px;
    border-radius: 16px;
    border: 1px solid rgba(46, 204, 113, 0.25);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
    animation: floatY 6s ease-in-out infinite, pulseGlow 4s ease-in-out infinite;
}

@keyframes floatY {
    0% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-12px) rotate(1deg); }
    100% { transform: translateY(0) rotate(-1deg); }
}

@keyframes pulseGlow {
    0%, 100% { filter: drop-shadow(0 0 0 rgba(46,204,113,0.0)); }
    50% { filter: drop-shadow(0 0 12px rgba(46,204,113,0.35)); }
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-green);
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.card h3 .title-icon {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

/* Section 2: Tokenomics Chart */
.tokenomics-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.chart-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.donut-chart {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: transform 0.5s ease;
}

.donut-chart:hover {
    transform: scale(1.05);
}

.donut-svg {
    position: absolute;
    inset: 0;
}

.donut-chart::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 60%;
    background: var(--bg-dark);
    border-radius: 50%;
}

.center-text {
    position: absolute;
    z-index: 1;
    font-weight: bold;
    font-size: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    color: var(--text-light);
}

.donut-slice {
    transition: filter 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.donut-slice.hovered {
    filter: drop-shadow(0 0 6px rgba(241,196,15,0.6));
}

.token-tooltip {
    position: absolute;
    background: rgba(10, 41, 10, 0.95);
    color: var(--text-light);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 8px 10px;
    font-size: 0.9rem;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease;
    z-index: 2;
    box-shadow: 0 6px 14px rgba(0,0,0,0.35);
    white-space: nowrap;
}
.token-tooltip.visible {
    opacity: 1;
    transform: translateY(0);
}

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

.legend li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.color-box {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    border-radius: 4px;
    display: inline-block;
}

/* 3D Bar Chart */
.bar3d-container {
    flex: 1 1 100%;
    padding: 24px;
    border: 2px solid var(--primary-green);
    border-radius: 22px;
    box-shadow: 0 0 24px rgba(46,204,113,0.15) inset, 0 8px 24px rgba(0,0,0,0.35);
    background: rgba(5,26,5,0.6);
}
.bar3d-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 22px 18px;
    min-height: 280px;
}
.bar3d-item {
    position: relative;
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.bar-percent {
    position: absolute;
    top: -28px;
    font-weight: 700;
    color: var(--text-light);
    text-shadow: 0 0 8px rgba(0,0,0,0.6);
}
.bar-label {
    margin-top: 8px;
    font-size: 0.95rem;
    text-align: center;
    color: var(--text-dim);
}
.bar-cube {
    width: 68px;
    height: 0;
    background: var(--bar-color, #4caf50);
    border-radius: 6px;
    position: relative;
    box-shadow: 0 14px 22px rgba(0,0,0,0.35);
    transition: height 1.2s ease, transform 0.2s ease;
}
.bar-cube::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    width: 100%;
    height: 12px;
    background: var(--bar-top, #66d66b);
    border-radius: 6px 6px 0 0;
    transform: skewX(-35deg);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.bar-cube::after {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 12px;
    height: 100%;
    background: var(--bar-side, #2d6e33);
    border-radius: 0 6px 6px 0;
    transform: skewY(-35deg);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}
.bar3d-caption {
    text-align: center;
    margin-top: 10px;
    color: var(--text-light);
    font-weight: 700;
}
/* Carousel Styles */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 50px auto;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track-container {
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: none;
    will-change: transform;
    gap: 20px;
}

.carousel-slide {
    min-width: 520px;
    height: 460px;
    background: var(--bg-card);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: var(--text-light);
    font-size: 1rem;
    text-align: left;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    will-change: transform;
}

.carousel-slide:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
    border-color: var(--accent-gold);
}

.carousel-footer {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 4px 10px 10px;
}

.carousel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

.carousel-icon img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: contain;
}

.carousel-img {
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    padding: 2px 6px;
}
.carousel-slide p {
    padding: 2px 6px;
}

.carousel-slide h4 {
    color: var(--primary-green);
    margin-top: 10px;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: var(--primary-green);
    font-size: 2rem;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: var(--transition);
    display: none;
}

.carousel-container:hover .prev-btn,
.carousel-container:hover .next-btn {
    display: none;
}

.prev-btn:hover, .next-btn:hover {
    background: var(--primary-green);
    color: var(--bg-dark);
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* Auto Slider (Token Utility) */
.slider-container {
    overflow: hidden;
    width: 100%;
    margin-top: 50px;
    position: relative;
}

.slider-container::before, .slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.slider-track {
    display: flex;
    width: calc(270px * 32); /* 16 items doubled, 250px width + 20px margin */
    animation: scroll 40s linear infinite;
}
.slider-title {
    text-align: center;
}
.slider-title img{
    width: 120px;
    text-align: center;
}
.slider-item {
    width: 250px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(46, 204, 113, 0.2);
    margin: 0 10px;
    background: var(--bg-card);
    border-radius: 8px;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-green);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-270px * 16)); }
}

/* Roadmap */
.timeline {
    position: relative;
    max-width: 1000px;
    margin: 50px auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-green);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -14px;
    background-color: var(--bg-dark);
    border: 4px solid var(--accent-gold);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
}

.right {
    left: 50%;
}

.left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid var(--bg-card);
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--bg-card);
}

.right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid var(--bg-card);
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--bg-card) transparent transparent;
}

.right::after {
    left: -14px;
}

.timeline-item .content {
    padding: 20px 30px;
    background-color: var(--bg-card);
    position: relative;
    border-radius: 6px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    transition: var(--transition);
}

.timeline-item .content:hover {
    transform: scale(1.02);
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.2);
}

.timeline-item h3 {
    color: var(--accent-gold);
    margin-bottom: 10px;
}

/* FAQ */
.faq-container {
    /* max-width: 800px; */
    margin: 50px auto;
}

.faq-item {
    /* margin-bottom: 15px; */
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.faq-question {
    padding: 20px;
    background: var(--bg-card);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: normal;
    transition: var(--transition);
    border-radius: 5px;
}

.faq-question:hover {
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: rgba(10, 41, 10, 0.5);
}

.faq-answer p {
    padding: 20px 0;
    color: var(--text-dim);
}
 
.faq-question.active {
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    border: 1px solid rgba(241,196,15,0.25);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 30px;
}
.partner-card {
    background: var(--bg-card);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}
.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    border-color: var(--accent-gold);
}
.partner-logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    background: #2ecc7180;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.partner-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.media-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}
.media-card {
    width: 280px;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    background: var(--bg-card);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 10px;
    padding: 16px;
    transition: var(--transition);
}
.media-thumb {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    border: 1px solid rgba(46,204,113,0.25);
}
.media-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--accent-gold);
}
.media-badge {
    /* width: 60px; */
    /* height: 60px; */
    /* border-radius: 50%; */
    text-align: center;
    border: 2px solid var(--primary-green);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}
.media-badge img {
    width: 50%;
    /* height: 70%; */
    object-fit: contain;
}
.media-content h4 {
    color: var(--primary-green);
    margin-bottom: 4px;
}
.media-content p {
    color: var(--text-dim);
}
.faq-question.active .toggle {
    transform: translateZ(6px) rotate(180deg);
}

.toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(46,204,113,0.25), rgba(241,196,15,0.25));
    box-shadow: 6px 6px 14px rgba(0,0,0,0.35), inset -3px -3px 8px rgba(0,0,0,0.25), inset 3px 3px 8px rgba(255,255,255,0.06);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-style: preserve-3d;
    display: inline-block;
}
.toggle::before {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 3px solid var(--accent-gold);
    border-bottom: 3px solid var(--accent-gold);
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    left: 10px;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.4));
}
.toggle::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(rgba(255,255,255,0.08), transparent 60%);
    transform: translateZ(4px);
}

/* Newsletter */
.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.newsletter-input {
    width: 320px;
    padding: 12px 14px;
    border-radius: 30px;
    border: 2px solid var(--primary-green);
    background: var(--bg-card);
    color: var(--text-light);
    outline: none;
}
.newsletter-input::placeholder {
    color: var(--text-dim);
}
.newsletter-message {
    text-align: center;
    margin-top: 12px;
    color: var(--primary-green);
    font-weight: 700;
}
.burger.toggle::before{
    border-right:none;
    border-bottom:none;
}
.acgold{
    color: var(--accent-gold);
}
/* Footer */
footer {
    background: rgb(35, 65, 3);
    padding: 10px;
    text-align: center;
    color: var(--text-dim);
    border-top: 1px solid var(--secondary-green);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animations */
.slide-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 1s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease-out;
}

.slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease-out;
}

.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}
.slidebg{
    box-shadow: 2px -3px 0px 3px #1f3c2b;
    border-radius: 300px;
    padding: 20px;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

@keyframes heroZoom {
    0% { transform: scale(1); }
    50% { transform: scale(1.06); }
    100% { transform: scale(1); }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .navbar-menu {
        position: relative;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        height: auto;
        max-height: calc(100vh - 100px);
        background-color: var(--bg-card);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 75%;
        max-width: 360px;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding: 16px 24px 24px;
        margin-top: 8px;
        gap: 12px;
        z-index: 1002;
        box-shadow: -6px 0 18px rgba(0,0,0,0.35);
        backdrop-filter: blur(6px);
        overflow-y: auto;
        border-radius: 0 0 0 12px;
    }
    .nav-links li {
        width: 100%;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 12px 16px;
        border: 1px solid rgba(46, 204, 113, 0.2);
        border-radius: 8px;
    }

    .nav-links.nav-active {
        transform: translateX(0%);
    }
.navbar-notify{
    display: block;
}
    .burger {
        display: block;
        background:none;
        position: relative;
        z-index: 1003;
    }

    .hero-content h1 {
        font-size: 2rem !important;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .left::before, .right::before {
        left: 60px;
        border: medium solid white;
        border-width: 10px 10px 10px 0;
        border-color: transparent var(--bg-card) transparent transparent;
    }

    .left, .right {
        left: 0;
    }
    .bar3d-chart {
        gap: 18px;
        padding: 24px 12px 14px;
    }
    .bar3d-item {
        width: 80px;
    }
    .bar-cube {
        width: 42px;
    }
    .hero {
        height: auto;
        padding: 60px 5%;
    }
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .hero-text {
        text-align: center;
    }
    .hero-uns-img {
        max-width: 72%;
    }
    .slidebg{
        padding: 4px;
        width: 400px;
        height: 400px;
        margin: 20px auto;
    }
    .media-box {
        /* width: 120px; */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .media-card {
        width: 120px;
        display: flex;
    }
    .media-badge img {
        width: 100%;
    }
}
