/* Global Styles */
:root {
    --primary-color: #42c6eb; /* Bright teal blue */
    --secondary-color: #9c4dff; /* Bright purple */
    --gradient-primary: linear-gradient(135deg, #2b4dbb 0%, #42c6eb 100%); /* Deep blue to teal */
    --gradient-secondary: linear-gradient(135deg, #9c4dff 0%, #42c6eb 100%); /* Purple to teal */
    --accent-glow: rgba(66, 198, 235, 0.6);
    --accent-purple-glow: rgba(156, 77, 255, 0.6);
    --dark-bg: #0c1a2a; /* Deeper navy */
    --darker-bg: #07121e; /* Darkest navy */
    --light-text: #ffffff;
    --gray-text: #a4d1e6; /* Lighter blue-ish gray */
    --border-radius: 10px;
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 0%, rgba(66, 198, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(156, 77, 255, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--light-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

.highlight {
    color: #42c6eb;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    margin-right: 15px;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(66, 198, 235, 0.5);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--light-text);
}

.btn::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: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
    transition: 0.8s;
}

.btn.primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(66, 198, 235, 0.7);
}

.btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(66, 198, 235, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #ffffff, var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 60px;
    height: 3px;
    background: var(--gradient-secondary);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--accent-purple-glow);
}

.section-header p {
    color: var(--gray-text);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 100px 0;
}

/* Navigation */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(7, 18, 30, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(66, 198, 235, 0.1);
}

#navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    background: rgba(7, 18, 30, 0.95);
}

#navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

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

.logo:hover h1::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-links {
    display: flex;
}

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

.nav-links a {
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s ease;
}

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

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: 0 0 5px var(--accent-glow);
}

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

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

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

/* Hero Section */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('bg/bg.jpeg') no-repeat center center/cover;
    position: relative;
    z-index: 1;
}

#hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 18, 30, 0.8) 0%, rgba(7, 18, 30, 0.6) 100%);
    z-index: -1;
}

#hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

/* Blue Fire Text Effect */
.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    position: relative;
    color: transparent;
    text-shadow: 0 0 5px rgba(66, 198, 235, 0.6), 0 0 10px rgba(66, 198, 235, 0.4), 0 0 20px rgba(66, 198, 235, 0.2);
    background-image: linear-gradient(
        0deg,
        #42c6eb 20%,
        #4b77ff 40%,
        #2b4dbb 60%,
        #9c4dff 80%
    );
    background-size: 100% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    animation: blue-fire 4s ease-in-out infinite alternate, 
               flicker 0.5s ease-in-out infinite alternate;
}

.hero-content h1 .highlight {
    color: transparent;
    font-weight: 900;
    background-image: linear-gradient(
        0deg,
        #9c4dff 20%,
        #6825ff 40%,
        #8742ff 60%,
        #e742ff 80%
    );
    background-size: 100% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    text-shadow: 0 0 5px rgba(156, 77, 255, 0.6), 0 0 10px rgba(156, 77, 255, 0.4), 0 0 20px rgba(156, 77, 255, 0.2);
}

.hero-content h1::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -5%;
    width: 110%;
    height: 140%;
    background: 
        radial-gradient(circle at 50% 120%, rgba(66, 198, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(156, 77, 255, 0.1) 0%, transparent 40%);
    filter: blur(10px);
    z-index: -1;
    opacity: 0.8;
    animation: glow-pulse 3s ease-in-out infinite alternate;
}

@keyframes blue-fire {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 0% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow: 
            0 0 5px rgba(66, 198, 235, 0.8),
            0 0 10px rgba(66, 198, 235, 0.6),
            0 0 15px rgba(45, 166, 235, 0.4),
            0 0 20px rgba(30, 144, 255, 0.3),
            0 0 30px rgba(15, 82, 186, 0.2);
    }
    20%, 24%, 55% {
        text-shadow: 
            0 0 5px rgba(66, 198, 235, 0.5),
            0 0 10px rgba(45, 166, 235, 0.3),
            0 0 15px rgba(30, 144, 255, 0.2);
    }
}

@keyframes glow-pulse {
    0% {
        opacity: 0.4;
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        filter: blur(15px);
    }
    100% {
        opacity: 0.4;
        filter: blur(10px);
    }
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray-text);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

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

/* About Section */
#about {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0a1d2e 100%);
}

.content-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 1.8rem;
    margin: 20px 0 15px;
    color: var(--secondary-color);
}

.content-text p {
    margin-bottom: 20px;
    color: var(--gray-text);
}

.about-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 198, 235, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

.card:hover:before {
    opacity: 0.08;
}

.card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.card p {
    color: var(--gray-text);
}

/* Token Section */
#token {
    background: linear-gradient(135deg, #0c1a2a 0%, #07121e 100%);
    position: relative;
    z-index: 1;
}

#token:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 18, 30, 0.7);
    z-index: -1;
}

.token-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.token-info h3, .token-distribution h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.token-info ul {
    margin-bottom: 30px;
}

.token-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.token-info ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.token-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    flex: 1;
    border: 1px solid rgba(66, 198, 235, 0.1);
    backdrop-filter: blur(5px);
}

.stat-item h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--gray-text);
}

.stat-item p {
    font-size: 1.4rem;
    font-weight: 700;
}

.chart-container {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
}

.distribution-legend {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
}

.color-box {
    width: 15px;
    height: 15px;
    border-radius: 3px;
    margin-right: 10px;
}

.legend-item p {
    font-size: 0.9rem;
    color: var(--gray-text);
}

/* Governance Section */
#governance {
    background: linear-gradient(135deg, var(--darker-bg) 0%, #0a1d2e 100%);
}

.governance-process {
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-step {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-step:not(:last-child):after {
    content: '';
    position: absolute;
    top: 50px;
    left: 25px;
    width: 2px;
    height: calc(100% + 30px);
    background: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--gray-text);
}

.governance-topics h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.topic-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 198, 235, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.topic-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.topic-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

.topic-card:hover:before {
    opacity: 0.08;
}

.topic-card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.topic-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.topic-card p {
    color: var(--gray-text);
}

/* Treasury Section - Hidden for now */
#treasury {
    display: none;
    background: var(--darker-bg);
    position: relative;
    z-index: 1;
}

#treasury:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 21, 35, 0.7);
    z-index: -1;
}

.treasury-highlight {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-bottom: 60px;
}

.treasury-total {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(66, 198, 235, 0.1);
    backdrop-filter: blur(5px);
}

.treasury-total h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.treasury-value {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.treasury-date {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.treasury-allocation h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.allocation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.allocation-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(66, 198, 235, 0.1);
    backdrop-filter: blur(5px);
}

.allocation-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.allocation-item p {
    color: var(--gray-text);
    margin-bottom: 5px;
}

.allocation-value {
    font-weight: 700;
    color: var(--light-text) !important;
}

.treasury-usage h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.usage-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(66, 198, 235, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.usage-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.usage-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

.usage-card:hover:before {
    opacity: 0.08;
}

.usage-card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.usage-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.usage-card p {
    color: var(--gray-text);
}

/* Proposals Section - Hidden for now */
#proposals {
    display: none;
    background: var(--darker-bg);
}

.proposals-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.proposal-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: var(--border-radius);
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(66, 198, 235, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.proposal-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.proposal-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

.proposal-card:hover:before {
    opacity: 0.08;
}

.proposal-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.proposal-status.active {
    background: rgba(0, 255, 0, 0.2);
    color: #4caf50;
}

.proposal-status.completed {
    background: rgba(0, 0, 255, 0.2);
    color: #2196f3;
}

.proposal-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    padding-right: 80px;
}

.proposal-card p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.proposal-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.proposal-meta span {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.proposal-meta span i {
    margin-right: 10px;
    color: var(--primary-color);
}

.proposals-cta {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(66, 198, 235, 0.1);
    backdrop-filter: blur(5px);
}

.proposals-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.proposals-cta p {
    color: var(--gray-text);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Resources Section */
#resources {
    background: linear-gradient(135deg, #0c1a2a 0%, #07121e 100%);
    position: relative;
    z-index: 1;
}

#resources:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 21, 35, 0.7);
    z-index: -1;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(66, 198, 235, 0.15);
    backdrop-filter: blur(5px);
    z-index: 1;
}

.resource-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.resource-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: var(--primary-color);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

.resource-card:hover:before {
    opacity: 0.08;
}

.resource-card i {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-fill-color: transparent;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.resource-card:hover h3 {
    transform: scale(1.05);
    color: var(--primary-color);
}

.resource-card p {
    color: var(--gray-text);
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%
    );
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-logo p {
    color: var(--gray-text);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(66, 198, 235, 0.2);
}

.social-links a:hover {
    background: var(--gradient-primary);
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px var(--accent-glow);
}

.social-links a i {
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover i {
    color: white;
    transform: scale(1.2);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.link-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.link-column a {
    display: block;
    margin-bottom: 12px;
    color: var(--gray-text);
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.link-column a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.link-column a:hover {
    color: var(--light-text);
    transform: translateX(5px);
    padding-left: 15px;
}

.link-column a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--gray-text);
    margin-bottom: 10px;
}

/* Media Queries */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .token-grid {
        grid-template-columns: 1fr;
    }

    .treasury-highlight {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 2.5rem 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    #hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .content-flex {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .token-stats {
        flex-direction: column;
    }

    .proposals-list {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.pulse {
    animation: pulse 3s infinite;
}

/* Add more interactive elements */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-on-scroll.active {
    opacity: 1;
    transform: translateY(0);
}

/* Glowing effect for certain elements */
.glow {
    box-shadow: 0 0 15px var(--primary-color);
}

/* Shining effect */
.shine {
    position: relative;
    overflow: hidden;
}

.shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(66, 198, 235, 0.3) 50%, transparent 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Add some magical sparkle effects inspired by the image */
@keyframes sparkle {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.card:hover:before,
.topic-card:hover:before,
.resource-card:hover:before,
.usage-card:hover:before {
    opacity: 0.08;
}

.topic-card:hover, .resource-card:hover, .usage-card:hover {
    background: rgba(66, 198, 235, 0.1);
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 15px var(--accent-glow);
}

/* Add magical particles to hero section */
@keyframes float-particle {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    50% { opacity: 0.8; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

#hero:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(66, 198, 235, 0.3) 0.1%, transparent 0.5%),
        radial-gradient(circle at 40% 70%, rgba(66, 198, 235, 0.3) 0.1%, transparent 0.5%),
        radial-gradient(circle at 60% 90%, rgba(156, 77, 255, 0.3) 0.1%, transparent 0.5%),
        radial-gradient(circle at 80% 60%, rgba(156, 77, 255, 0.3) 0.1%, transparent 0.5%);
    background-size: 120px 120px;
    background-repeat: repeat;
    animation: float-particle 15s linear infinite;
    z-index: -1;
    opacity: 0.5;
}

/* Add this to make sure the JS functionality works */
.card, .topic-card, .token-info, .token-distribution, 
.governance-process, .topics-grid,
.resources-grid, .content-flex, .token-grid {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
} 
} 