/* style.css */
:root {
    --sol-green: #14F195;
    --sol-purple: #9945FF;
    --oil-dark: #050505;
    --oil-light: #121212;
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --glass-bg: rgba(15, 15, 15, 0.65);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    background-color: var(--oil-dark);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .brand, .glow-number {
    font-family: 'Outfit', sans-serif;
}

h2 {
    text-transform: uppercase;
    letter-spacing: 1px;
}

#liquid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    pointer-events: none;
    background: radial-gradient(circle at center top, #151515 0%, #030303 100%);
}

#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Typography Utilities */
.highlight {
    background: linear-gradient(135deg, var(--sol-green), var(--sol-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.highlight-alt {
    background: linear-gradient(135deg, var(--sol-purple), #ff3b3b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.muted { color: var(--text-muted); }

/* Premium Glass Options */
.glass-panel, .premium-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.4s ease;
}
.premium-glass:hover {
    transform: translateY(-8px);
    border-color: rgba(153, 69, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.9), 0 0 20px rgba(153, 69, 255, 0.15);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--sol-green);
    color: #000;
    box-shadow: 0 0 20px rgba(20, 241, 149, 0.4);
}
.btn-primary::before {
    content: ''; position: absolute; top:0; left:-100%; width:100%; height:100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s; z-index:-1;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
    box-shadow: 0 0 30px rgba(20, 241, 149, 0.8);
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(153, 69, 255, 0.1);
    border: 1px solid var(--sol-purple);
    color: #fff;
    backdrop-filter: blur(5px);
}
.btn-secondary:hover {
    background: rgba(153, 69, 255, 0.25);
    box-shadow: 0 0 25px rgba(153, 69, 255, 0.4);
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(5,5,5,0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-img {
    height: 35px;
    filter: drop-shadow(0 0 8px rgba(153, 69, 255, 0.6));
}
.nav-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 1px;
    color: #fff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}
.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s, text-shadow 0.3s;
}
.nav-links a:hover {
    color: var(--sol-green);
    text-shadow: 0 0 10px rgba(20, 241, 149, 0.5);
}

/* Sections Global */
.section {
    padding: 8rem 2rem;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-heading-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}
section h2 {
    font-size: clamp(2rem, 6vw, 3rem);
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    display: inline-block;
    position: relative;
    text-align: center;
}
.heading-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--sol-green), var(--sol-purple));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.hero-content {
    max-width: 800px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.glow-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #ffffff, #888);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(255,255,255,0.15));
}

.subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Hero Center Logo */
.hero-center-logo {
    margin-top: 4rem;
    width: 280px;
    max-width: 100%;
    animation: float-alt 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.9)) drop-shadow(0 0 35px rgba(153,69,255,0.4));
    z-index: 5;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-backdrop {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(153,69,255,0.3) 0%, rgba(20,241,149,0.1) 50%, transparent 70%);
    filter: blur(40px);
    animation: rotateGlow 10s linear infinite;
    z-index: -1;
}

.floating-logo-large {
    width: 100%;
    max-width: 400px;
    animation: float-alt 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.8)) drop-shadow(0 0 20px rgba(153,69,255,0.4));
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}
.about-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    border-left: 4px solid var(--sol-purple);
    padding-left: 1rem;
    margin-bottom: 2rem;
    background: rgba(255,255,255,0.03);
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(0,0,0,0.3);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s;
}
.feature-list li:hover {
    transform: translateX(10px);
    border-color: rgba(20,241,149,0.3);
}
.feature-icon {
    font-size: 1.5rem;
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}
.glow-green { box-shadow: 0 0 15px rgba(20,241,149,0.3); }
.glow-purple { box-shadow: 0 0 15px rgba(153,69,255,0.3); }
.glow-mixed { box-shadow: 0 0 15px rgba(20,241,149,0.2), 0 0 15px rgba(153,69,255,0.2); }
.feature-text { font-weight: 600; font-family: 'Outfit'; letter-spacing: 0.5px; }

/* Tokenomics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}

.stat-card h3 {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.glow-number {
    font-size: clamp(2.2rem, 8vw, 3.5rem);
    font-weight: 900;
    color: var(--sol-green);
    text-shadow: 0 0 25px rgba(20, 241, 149, 0.4);
    margin-bottom: 0.25rem;
    word-break: break-word;
}
.stat-sub {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
    text-transform: uppercase;
}

.tax-distribution {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 3rem !important;
}

.dist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.dist-header h4 {
    font-size: 1.2rem;
}
.dist-header span {
    font-family: 'Outfit';
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.progress-bar {
    width: 100%;
    height: 24px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 3px 10px rgba(0,0,0,0.8);
    border: 1px solid #222;
}

.progress-fill {
    height: 100%;
    border-radius: 12px;
    position: relative;
}
.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2.5s infinite;
}

.futures-fill {
    width: 0%; /* JS animated */
    background: linear-gradient(90deg, #441188, var(--sol-purple));
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 0 0 20px rgba(153,69,255,0.5);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1);
}
.rewards-fill {
    width: 0%; /* JS animated */
    background: linear-gradient(90deg, #0a6640, var(--sol-green));
    box-shadow: inset 0 0 10px rgba(255,255,255,0.2), 0 0 20px rgba(20,241,149,0.5);
    transition: width 1.5s cubic-bezier(0.1, 0.8, 0.2, 1) 0.3s;
}

/* Price Section */
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}
.toggle-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
}
.toggle-label {
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Outfit';
    text-transform: uppercase;
}
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #222;
    transition: .4s;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px; width: 22px;
    left: 4px; bottom: 3px;
    background-color: white;
    transition: .4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
input:checked + .slider { background-color: rgba(153,69,255,0.3); border-color: var(--sol-purple); }
input:checked + .slider:before { transform: translateX(28px); background-color: var(--sol-purple); box-shadow: 0 0 10px var(--sol-purple); }

.price-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem !important;
}
.price-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.price-symbol {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
#current-price {
    font-size: clamp(3rem, 10vw, 4.5rem);
}
.change-positive {
    color: var(--sol-green);
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(20,241,149,0.3);
}
.change-negative {
    color: #ff3b3b;
    font-weight: 700;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255,59,59,0.3);
}

.chart-container {
    width: 350px;
    height: 150px;
}
.mini-chart {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5));
}
#chart-path {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 3s ease forwards;
}
#chart-area {
    animation: fadeInArea 3s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

/* News Section */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.news-card {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 180px;
    position: relative;
    overflow: hidden;
}
.news-card::before {
    content: '';
    position: absolute; top:0; left:0; width: 4px; height: 100%;
    background: var(--sol-purple);
    transition: width 0.3s ease;
}
.news-card:hover {
    background: rgba(25, 25, 25, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8), 0 0 20px rgba(153,69,255,0.1);
}
.news-card:hover::before { width: 8px; }
.news-card h3 {
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    text-transform: none;
    font-weight: 500;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}
.news-source {
    color: var(--sol-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Professional Footer */
.professional-footer {
    position: relative;
    background: #030303;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 5rem;
    overflow: hidden;
}
.footer-top-wave {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--sol-green), var(--sol-purple));
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding: 6rem 2rem 4rem;
}

.brand-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer-brand-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-logo-main {
    width: 50px;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.2));
}
.footer-brand-name {
    font-family: 'Outfit';
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}
.footer-desc {
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-icon {
    width: 45px; height: 45px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.social-icon svg { width: 20px; height: 20px; }
.hover-glow-purple:hover {
    background: rgba(153,69,255,0.2);
    border-color: var(--sol-purple);
    color: var(--sol-purple);
    box-shadow: 0 0 15px rgba(153,69,255,0.4);
    transform: translateY(-3px);
}
.hover-glow-green:hover {
    background: rgba(20,241,149,0.2);
    border-color: var(--sol-green);
    color: var(--sol-green);
    box-shadow: 0 0 15px rgba(20,241,149,0.4);
    transform: translateY(-3px);
}

.links-col h3, .subscribe-col h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}
.links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.links-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}
.links-col a:hover {
    color: var(--sol-green);
    padding-left: 5px;
}

.subscribe-col p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}
.newsletter-form {
    display: flex;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
}
.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: #fff;
    outline: none;
}
.newsletter-form button {
    background: var(--sol-purple);
    border: none;
    color: #fff;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}
.newsletter-form button:hover {
    background: #7d2ce8;
}

.footer-bottom {
    background: #000;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.02);
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-left: 1.5rem;
    transition: color 0.3s;
}
.footer-legal a:hover { color: #fff; }

/* Animations */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
@keyframes float-alt {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes pulse-glow {
    from { opacity: 0.5; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1.1); }
}
@keyframes rotateGlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@keyframes shimmer {
    100% { left: 100%; }
}
@keyframes drawPath {
    to { stroke-dashoffset: 0; }
}
@keyframes fadeInArea {
    to { opacity: 0.3; } /* Assuming standard opacity is 0.3 */
}

/* Reveal Effects */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.165, 0.84, 0.44, 1), transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .about-content h2, .feature-list li { text-align: left; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .glow-title { font-size: clamp(2.5rem, 10vw, 3.5rem); }
    .price-header { flex-direction: column; gap: 1.5rem; text-align: center; }
    .toggle-container { width: 100%; justify-content: center; padding: 1rem !important; }
    .price-card { flex-direction: column; gap: 2.5rem; text-align: center; padding: 2.5rem 1.5rem !important; }
    .nav-links { display: none; }
    .footer-grid { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
    .footer-legal a { margin: 0 0.75rem; }
    .tax-distribution { padding: 2rem 1.5rem !important; }
    .dist-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .dist-header h4 { font-size: 1rem; line-height: 1.4; }
    .glass-panel, .premium-glass { padding: 1.5rem; }
    .chart-container { width: 100%; max-width: 300px; height: auto; }
}
