:root {
    --primary-color: #0f0f1a;
    --secondary-color: #1a1a2e;
    --accent-color: #7b2cbf;
    --accent-color-light: #9d4edd;
    --accent-color-dark: #5a189a;
    --text-color: #e0e0e0;
    --text-color-highlight: #ffffff;
    --neon-shadow: 0 0 10px rgba(123, 44, 191, 0.5), 0 0 20px rgba(123, 44, 191, 0.3), 0 0 30px rgba(123, 44, 191, 0.1);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.cursor {
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    width: 30px;
    height: 30px;
    border: 2px solid var(--accent-color-light);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}

header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(10px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: var(--text-color-highlight);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    position: relative;
}

.logo span {
    color: var(--accent-color);
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

.logo:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transition: transform var(--transition-fast);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color-light);
}

.nav-links a:hover::after, .nav-links a.active::after {
    transform: scaleX(1);
}

.header-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 16px;
}

.social-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    z-index: -1;
    transform: scale(0);
    transition: transform var(--transition-fast);
    border-radius: 50%;
}

.social-btn:hover {
    color: var(--text-color-highlight);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(123, 44, 191, 0.3);
}

.social-btn:hover::before {
    transform: scale(1);
}

.menu-btn {
    display: none;
    cursor: pointer;
    position: relative;
    width: 30px;
    height: 20px;
    margin-left: 20px;
}

.menu-btn__burger {
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--transition-fast);
}

.menu-btn__burger::before, .menu-btn__burger::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--accent-color);
    transition: all var(--transition-fast);
}

.menu-btn__burger::before {
    transform: translateY(-8px);
}

.menu-btn__burger::after {
    transform: translateY(8px);
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: var(--primary-color);
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.2) 0%, rgba(15, 15, 26, 0.8) 70%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('images/stars.png') center/cover no-repeat fixed;
    opacity: 0.3;
    animation: rotate 150s linear infinite;
    z-index: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(1.2);
    transform: scale(1.1);
    animation: slowZoom 30s infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.glitch-container {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.glitch {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    position: relative;
    color: var(--text-color-highlight);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 5px;
    animation: glitch 5s infinite;
}

.glitch::before, .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--accent-color);
    clip: rect(24px, 550px, 90px, 0);
    animation: glitch-anim 3s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent-color-light);
    clip: rect(85px, 550px, 140px, 0);
    animation: glitch-anim2 2.5s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(18px, 9999px, 56px, 0);
    }
    5% {
        clip: rect(28px, 9999px, 16px, 0);
    }
    10% {
        clip: rect(111px, 9999px, 150px, 0);
    }
    15% {
        clip: rect(71px, 9999px, 16px, 0);
    }
    20% {
        clip: rect(39px, 9999px, 22px, 0);
    }
    25% {
        clip: rect(105px, 9999px, 132px, 0);
    }
    30% {
        clip: rect(62px, 9999px, 123px, 0);
    }
    35% {
        clip: rect(12px, 9999px, 143px, 0);
    }
    40% {
        clip: rect(92px, 9999px, 93px, 0);
    }
    45% {
        clip: rect(92px, 9999px, 140px, 0);
    }
    50% {
        clip: rect(77px, 9999px, 13px, 0);
    }
    55% {
        clip: rect(75px, 9999px, 144px, 0);
    }
    60% {
        clip: rect(40px, 9999px, 34px, 0);
    }
    65% {
        clip: rect(27px, 9999px, 137px, 0);
    }
    70% {
        clip: rect(19px, 9999px, 114px, 0);
    }
    75% {
        clip: rect(17px, 9999px, 146px, 0);
    }
    80% {
        clip: rect(66px, 9999px, 72px, 0);
    }
    85% {
        clip: rect(50px, 9999px, 94px, 0);
    }
    90% {
        clip: rect(79px, 9999px, 73px, 0);
    }
    95% {
        clip: rect(33px, 9999px, 123px, 0);
    }
    100% {
        clip: rect(40px, 9999px, 138px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(125px, 9999px, 162px, 0);
    }
    5% {
        clip: rect(57px, 9999px, 7px, 0);
    }
    10% {
        clip: rect(33px, 9999px, 79px, 0);
    }
    15% {
        clip: rect(105px, 9999px, 11px, 0);
    }
    20% {
        clip: rect(70px, 9999px, 46px, 0);
    }
    25% {
        clip: rect(45px, 9999px, 144px, 0);
    }
    30% {
        clip: rect(109px, 9999px, 166px, 0);
    }
    35% {
        clip: rect(26px, 9999px, 14px, 0);
    }
    40% {
        clip: rect(51px, 9999px, 127px, 0);
    }
    45% {
        clip: rect(132px, 9999px, 6px, 0);
    }
    50% {
        clip: rect(148px, 9999px, 166px, 0);
    }
    55% {
        clip: rect(63px, 9999px, 73px, 0);
    }
    60% {
        clip: rect(113px, 9999px, 7px, 0);
    }
    65% {
        clip: rect(52px, 9999px, 3px, 0);
    }
    70% {
        clip: rect(149px, 9999px, 43px, 0);
    }
    75% {
        clip: rect(22px, 9999px, 153px, 0);
    }
    80% {
        clip: rect(123px, 9999px, 136px, 0);
    }
    85% {
        clip: rect(86px, 9999px, 83px, 0);
    }
    90% {
        clip: rect(73px, 9999px, 104px, 0);
    }
    95% {
        clip: rect(112px, 9999px, 114px, 0);
    }
    100% {
        clip: rect(70px, 9999px, 88px, 0);
    }
}

.tagline {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--text-color);
    z-index: 2;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: var(--neon-shadow);
}

.hero-description {
    max-width: 600px;
    text-align: center;
    z-index: 2;
    margin-bottom: 40px;
}

.hero-description p {
    font-size: 18px;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-color);
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 20px);
        opacity: 0;
    }
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20px;
    height: 40px;
    position: relative;
}

.scroll-arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: rotate(45deg);
    margin: 0 auto 5px;
    animation: scrollDown 2s infinite;
}

.scroll-arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(5px, 5px);
    }
}

.section-title {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 900;
    color: var(--text-color-highlight);
    position: relative;
    font-family: 'Orbitron', sans-serif;
}

.section-title span {
    color: var(--accent-color);
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color-dark), var(--accent-color-light));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.about {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 24, 154, 0.1) 0%, rgba(15, 15, 26, 0.1) 100%);
    z-index: 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
    z-index: 2;
}

.about-card {
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    border-left: 3px solid var(--accent-color);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: calc(var(--delay) * 0.2s);
}

.about-card:nth-child(1) {
    --delay: 1;
}

.about-card:nth-child(2) {
    --delay: 2;
}

.about-card:nth-child(3) {
    --delay: 3;
}

.about-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--accent-color-light);
}

.about-image {
    flex: 1;
    z-index: 2;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateY(50px);
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.6s;
}

.glowing-border {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: 1;
    border-radius: 22px;
    background: linear-gradient(45deg, var(--accent-color) 0%, transparent 50%, var(--accent-color) 100%);
    animation: borderRotate 4s linear infinite;
}

@keyframes borderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform var(--transition-medium);
}

.image-container:hover img {
    transform: scale(1.05);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gallery {
    padding: 120px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1920x1080/?abstract,dark') center/cover no-repeat fixed;
    opacity: 0.1;
    z-index: 0;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    transition: transform var(--transition-medium);
    opacity: 0;
    animation: fadeIn 1s forwards;
    animation-delay: calc(var(--i) * 0.2s);
}

.gallery-item:nth-child(1) {
    --i: 1;
}

.gallery-item:nth-child(2) {
    --i: 2;
}

.gallery-item:nth-child(3) {
    --i: 3;
}

.gallery-item:nth-child(4) {
    --i: 4;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    height: 250px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-text {
    padding: 20px;
    background-color: rgba(15, 15, 26, 0.9);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.gallery-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--accent-color-light);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.tokenomics {
    padding: 120px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(123, 44, 191, 0.1) 0%, rgba(15, 15, 26, 0.1) 70%);
    z-index: 0;
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.token-card {
    background-color: rgba(26, 26, 46, 0.5);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.token-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--accent-color-dark), var(--accent-color-light));
    z-index: 1;
}

.token-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(123, 44, 191, 0.2);
}

.token-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.token-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-color-highlight);
}

.token-card p {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
}

.tokenomics-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.tokenomics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
    filter: brightness(0.7) saturate(1.3) hue-rotate(10deg);
}

.tokenomics-image:hover img {
    transform: scale(1.05);
}

.tokenomics-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, var(--primary-color));
}

.cta-section {
    padding: 100px 0;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://source.unsplash.com/random/1920x1080/?space,stars') center/cover no-repeat fixed;
    opacity: 0.2;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-color-highlight);
    font-family: 'Orbitron', sans-serif;
}

.cta-content h2 span {
    color: var(--accent-color);
}

.cta-content p {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    font-family: 'Orbitron', sans-serif;
    z-index: 1;
}

.btn-primary {
    color: var(--text-color-highlight);
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

.btn span {
    position: absolute;
    display: block;
}

.btn span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color));
    animation: btn-anim1 1s linear infinite;
}

@keyframes btn-anim1 {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--accent-color));
    animation: btn-anim2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes btn-anim2 {
    0% {
        top: -100%;
    }
    50%, 100% {
        top: 100%;
    }
}

.btn span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--accent-color));
    animation: btn-anim3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes btn-anim3 {
    0% {
        right: -100%;
    }
    50%, 100% {
        right: 100%;
    }
}

.btn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--accent-color));
    animation: btn-anim4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes btn-anim4 {
    0% {
        bottom: -100%;
    }
    50%, 100% {
        bottom: 100%;
    }
}

.btn:hover {
    background-color: var(--accent-color-dark);
    box-shadow: 0 0 15px var(--accent-color);
    transition: background 0.3s, box-shadow 0.3s;
}

/* CTA部分新增图片样式 */
.cta-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    aspect-ratio: 16/9;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform var(--transition-slow);
    filter: brightness(0.8) contrast(1.2);
}

.cta-image:hover img {
    transform: scale(1.05);
}

.cta-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color-dark) 0%, transparent 70%);
    opacity: 0.7;
    z-index: 1;
}

footer {
    padding: 80px 0 40px;
    background-color: var(--primary-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--accent-color-dark), var(--accent-color), var(--accent-color-dark));
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 900;
    color: var(--text-color-highlight);
    font-family: 'Orbitron', sans-serif;
}

.footer-logo span {
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    text-decoration: none;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--accent-color);
    z-index: -1;
    transform: scale(0);
    transition: transform var(--transition-fast);
    border-radius: 50%;
}

.social-links a:hover {
    color: var(--text-color-highlight);
    transform: translateY(-5px);
}

.social-links a:hover::before {
    transform: scale(1);
}

.copyright {
    text-align: center;
    opacity: 0.7;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 40px;
    }
    
    .image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-medium);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .menu-btn {
        display: block;
        z-index: 1000;
    }
    
    .menu-btn.open .menu-btn__burger {
        background: transparent;
    }
    
    .menu-btn.open .menu-btn__burger::before {
        transform: rotate(45deg);
    }
    
    .menu-btn.open .menu-btn__burger::after {
        transform: rotate(-45deg);
    }
    
    .glitch {
        font-size: 60px;
    }
    
    .tagline {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .header-social {
        margin-right: 50px;
    }
}

@media (max-width: 576px) {
    .glitch {
        font-size: 40px;
    }
    
    .tagline {
        font-size: 18px;
    }
    
    .hero-description p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .about-card {
        padding: 20px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .header-right {
        gap: 15px;
    }
    
    .social-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    .header-social {
        margin-right: 45px;
    }
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background-color: #fff;
    border-radius: 50%;
    opacity: 0.5;
    animation: twinkle var(--duration) infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
    }
} 