* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00d4aa;
    --secondary-color: #ff6b9d;
    --dark-bg: #0a0e27;
    --light-bg: #141b3d;
    --text-primary: #ffffff;
    --text-secondary: #b8c5d6;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #00d4aa 0%, #00f2fe 100%);
    --gradient-5: linear-gradient(135deg, #ff6b9d 0%, #c471ed 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    position: relative;
}

/* Snowfall Animation */
.snowfall {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.snowflake {
    position: absolute;
    top: -10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1em;
    font-family: Arial, sans-serif;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
    animation: snowfall linear infinite;
    user-select: none;
}

@keyframes snowfall {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(var(--drift)) rotate(360deg);
        opacity: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 14, 39, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hamburger Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 1rem;
}

.nav a::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-4);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(79, 172, 254, 0.2) 0%, transparent 70%);
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-3);
    top: 10%;
    left: 10%;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-5);
    top: 60%;
    right: 15%;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 500px;
    height: 500px;
    background: var(--gradient-4);
    bottom: 10%;
    left: 20%;
    animation: float 30s ease-in-out infinite;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--gradient-2);
    top: 30%;
    right: 30%;
    animation: float 18s ease-in-out infinite reverse;
}

.shape-5 {
    width: 350px;
    height: 350px;
    background: var(--gradient-1);
    bottom: 30%;
    right: 10%;
    animation: float 22s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-50px, 50px) rotate(240deg);
    }
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1s ease;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease 0.5s both;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    animation: float-gentle 6s ease-in-out infinite;
    max-height: 600px;
    object-fit: contain;
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 170, 0.6);
    }
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-line {
    display: block;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-bottom: 0.5rem;
    animation: fadeInLeft 1s ease 0.3s both;
}

.title-main {
    display: block;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite, fadeInRight 1s ease 0.5s both;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.9s both;
}

/* Contract Address Section */
.contract-section {
    margin: 2.5rem 0 3rem;
    animation: fadeInUp 1s ease 1s both;
    position: relative;
    padding-top: 1rem;
}

.contract-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contract-address {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    background: rgba(20, 27, 61, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    max-width: 600px;
    transition: all 0.3s ease;
    position: relative;
}

.contract-address:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.contract-address code {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    word-break: break-all;
    flex: 1;
}

.copy-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.copy-message {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 10;
}

.copy-message.show {
    opacity: 1;
    top: -60px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

/* Modern Buttons */
.btn {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.btn span {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: var(--gradient-4);
    color: white;
    box-shadow: 0 10px 40px rgba(79, 172, 254, 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.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(79, 172, 254, 0.6);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-4);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    color: white;
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.gallery-section .container {
    width: 100%;
    max-width: 1400px;
    padding: 0 20px;
}

#gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.75rem !important;
    width: 100% !important;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.title-text {
    display: inline-block;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    margin: 0 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-bottom: 3rem;
}

.gallery {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.75rem;
    padding: 2rem 0;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .gallery {
        grid-template-columns: repeat(6, 1fr) !important;
    }
}

@media (min-width: 1600px) {
    .gallery {
        grid-template-columns: repeat(8, 1fr) !important;
    }
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    background: var(--dark-bg);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    display: block;
}

.gallery-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-4);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    mix-blend-mode: overlay;
}

.gallery-item:hover::before {
    opacity: 0.3;
}

.gallery-item:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 35px rgba(79, 172, 254, 0.4);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9);
    -webkit-user-select: none;
    user-select: none;
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.12);
    filter: brightness(1.1);
}

.gallery-item::after {
    content: '👁️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 2;
    pointer-events: none;
}

.gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* About Section */
.about-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: rgba(20, 27, 61, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    text-align: center;
}

.about-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.2);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.about-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-card p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Roadmap Section */
.roadmap-section {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.roadmap-timeline {
    max-width: 1000px;
    margin: 4rem auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-4);
    transform: translateX(-50%);
    border-radius: 2px;
}

.roadmap-item {
    position: relative;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.roadmap-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-item:nth-child(odd) {
    padding-right: 50%;
}

.roadmap-item:nth-child(even) {
    padding-left: 50%;
}

.roadmap-phase {
    background: rgba(20, 27, 61, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.roadmap-item:hover .roadmap-phase {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.3);
    transform: translateX(10px);
}

.roadmap-item:nth-child(even):hover .roadmap-phase {
    transform: translateX(-10px);
}

.phase-number {
    display: inline-block;
    background: var(--gradient-4);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.phase-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.phase-date {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.roadmap-content ul {
    list-style: none;
    padding: 0;
}

.roadmap-content li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-content li:last-child {
    border-bottom: none;
}

.roadmap-content li::before {
    content: '→';
    margin-right: 1rem;
    color: var(--primary-color);
}

/* Charts Section */
.charts-section {
    padding: 8rem 0;
    background: var(--dark-bg);
    position: relative;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.chart-container {
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.chart-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.chart-container:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.2);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header h3 i {
    -webkit-text-fill-color: var(--primary-color);
}

.chart-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.chart-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.chart-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
}

.chart-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Links Section */
.links-section {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.link-card {
    background: rgba(20, 27, 61, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.link-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-4);
    opacity: 0.1;
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.4);
}

.link-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--text-primary);
}

.link-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.link-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-block;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.link-card:hover .link-arrow {
    transform: translateX(10px);
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--light-bg);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-4);
    opacity: 0.5;
}

.footer p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.9rem !important;
    opacity: 0.7;
    font-style: italic;
}

/* Modal for image viewing */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes scaleIn {
    from {
        transform: scale(0.7) rotate(-5deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.close:hover {
    color: var(--primary-color);
    transform: rotate(90deg) scale(1.1);
    background: rgba(0, 212, 170, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .contract-address {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contract-label {
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .hero-img {
        max-height: 350px;
        border-radius: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .title-line {
        font-size: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem;
        padding: 1.5rem 0;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .gallery-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .charts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .chart-container {
        padding: 1.5rem;
    }

    .chart-wrapper {
        height: 350px;
    }

    .links-grid {
        gap: 1.5rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav.active {
        right: 0;
    }

    /* Overlay when menu is open */
    .nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        backdrop-filter: blur(5px);
    }

    .nav a {
        font-size: 1.2rem;
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav a::before {
        display: none;
    }

    .logo h1 {
        font-size: 1.5rem;
    }

    .btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-card {
        padding: 2rem 1.5rem;
    }

    .contract-address {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }

    .contract-address code {
        font-size: 0.75rem;
        text-align: center;
    }

    .roadmap-timeline::before {
        left: 30px;
    }

    .roadmap-item {
        padding-left: 80px !important;
        padding-right: 0 !important;
    }

    .roadmap-item:hover .roadmap-phase {
        transform: translateX(0);
    }

    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content {
        gap: 1.5rem;
    }

    .hero-img {
        max-height: 250px;
        border-radius: 15px;
    }

    .hero-content {
        gap: 1rem;
    }

    .hero-text {
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .title-line {
        font-size: 1rem;
    }

    .gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem;
    }

    .gallery-item {
        border-radius: 8px;
    }

    .chart-wrapper {
        height: 350px;
    }

    .chart-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-card,
    .link-card {
        padding: 2rem 1.5rem;
    }

    .card-icon,
    .link-icon {
        font-size: 3rem;
    }

    /* Improve touch targets */
    .btn {
        min-height: 44px;
        min-width: 44px;
    }

    .nav a {
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    /* Better spacing on mobile */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .gallery-section,
    .about-section,
    .roadmap-section,
    .charts-section,
    .links-section {
        padding: 4rem 0;
    }

    .container {
        padding: 0 15px;
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-4);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-5);
}
