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

:root {
    --primary-color: #8B5CF6;
    --secondary-color: #3B82F6;
    --accent-color: #F59E0B;
    --success-color: #10B981;
    --warning-color: #EF4444;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --bg-primary: rgba(10, 10, 10, 0.95);
    --bg-secondary: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.coin-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.coin-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: coinSpin 4s linear infinite;
    transition: border-color 0.5s ease;
}

@keyframes coinSpin {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

.nav-logo h2 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.5s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Enhanced 3D Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float 25s infinite linear;
    filter: blur(1px);
    transition: background 0.5s ease;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}

.shape-2 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--accent-color), var(--warning-color));
    top: 55%;
    right: 12%;
    animation-delay: -3s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success-color), var(--secondary-color));
    top: 35%;
    left: 65%;
    animation-delay: -8s;
}

.shape-4 {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    bottom: 25%;
    left: 15%;
    animation-delay: -12s;
}

.shape-5 {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    bottom: 15%;
    right: 25%;
    animation-delay: -6s;
}

.shape-6 {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--warning-color), var(--secondary-color));
    top: 70%;
    left: 40%;
    animation-delay: -15s;
}

.shape-7 {
    width: 160px;
    height: 160px;
    background: linear-gradient(135deg, var(--success-color), var(--accent-color));
    top: 10%;
    right: 40%;
    animation-delay: -20s;
}

.shape-8 {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, var(--warning-color), var(--primary-color));
    bottom: 40%;
    right: 5%;
    animation-delay: -18s;
}

/* Rotating Rings */
.rotating-ring {
    position: absolute;
    border: 3px solid;
    border-radius: 50%;
    opacity: 0.2;
    transition: border-color 0.5s ease;
}

.ring-1 {
    width: 200px;
    height: 200px;
    border-color: var(--primary-color) transparent var(--primary-color) transparent;
    top: 20%;
    left: 20%;
    animation: ringRotate 15s linear infinite;
}

.ring-2 {
    width: 300px;
    height: 300px;
    border-color: var(--secondary-color) transparent var(--secondary-color) transparent;
    bottom: 20%;
    right: 20%;
    animation: ringRotate 20s linear infinite reverse;
}

.ring-3 {
    width: 150px;
    height: 150px;
    border-color: var(--accent-color) transparent var(--accent-color) transparent;
    top: 60%;
    left: 60%;
    animation: ringRotate 12s linear infinite;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Coins */
.floating-coin {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: coinFloat 20s infinite ease-in-out;
    transition: color 0.5s ease;
}

.coin-1 {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 30%;
    animation-delay: -4s;
}

.coin-3 {
    bottom: 30%;
    left: 50%;
    animation-delay: -8s;
}

.coin-4 {
    top: 40%;
    right: 15%;
    animation-delay: -12s;
}

.coin-5 {
    bottom: 50%;
    left: 20%;
    animation-delay: -16s;
}

@keyframes coinFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-50px) rotate(90deg); opacity: 0.6; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: 0.8; }
    75% { transform: translateY(-50px) rotate(270deg); opacity: 0.6; }
}

/* Enhanced Particles */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: 50%;
    opacity: 0.8;
    animation: particleMove 18s infinite linear;
}

.particle-1 { top: 10%; left: 15%; animation-delay: 0s; }
.particle-2 { top: 25%; right: 20%; animation-delay: -2s; }
.particle-3 { bottom: 35%; left: 55%; animation-delay: -4s; }
.particle-4 { bottom: 15%; right: 35%; animation-delay: -6s; }
.particle-5 { top: 65%; left: 75%; animation-delay: -8s; }
.particle-6 { top: 45%; right: 10%; animation-delay: -10s; }
.particle-7 { bottom: 60%; left: 25%; animation-delay: -12s; }
.particle-8 { top: 80%; right: 60%; animation-delay: -14s; }
.particle-9 { bottom: 80%; left: 80%; animation-delay: -16s; }
.particle-10 { top: 30%; left: 45%; animation-delay: -18s; }

@keyframes particleMove {
    0% { transform: translateY(0px) scale(1); opacity: 0.8; }
    50% { transform: translateY(-300px) scale(1.5); opacity: 1; }
    100% { transform: translateY(-600px) scale(0.5); opacity: 0; }
}

/* Glowing Orbs */
.glowing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: orbGlow 8s ease-in-out infinite alternate;
    transition: background 0.5s ease;
}

.orb-1 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--primary-color), transparent);
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--secondary-color), transparent);
    bottom: 40%;
    right: 15%;
    animation-delay: -2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--accent-color), transparent);
    top: 70%;
    left: 70%;
    animation-delay: -4s;
}

.orb-4 {
    width: 90px;
    height: 90px;
    background: radial-gradient(circle, var(--warning-color), transparent);
    top: 50%;
    right: 50%;
    animation-delay: -6s;
}

@keyframes orbGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.2); }
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    animation: waveMove 15s ease-in-out infinite;
    transition: background 0.5s ease;
}

.wave-1 {
    animation-delay: 0s;
    opacity: 0.3;
}

.wave-2 {
    animation-delay: -5s;
    opacity: 0.2;
    height: 80px;
}

.wave-3 {
    animation-delay: -10s;
    opacity: 0.1;
    height: 60px;
}

@keyframes waveMove {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0%); }
}

/* Geometric Shapes */
.geometric-shape {
    position: absolute;
    opacity: 0.1;
    animation: geometricFloat 30s infinite linear;
    transition: border-color 0.5s ease;
}

.triangle-1 {
    width: 0;
    height: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 50px solid var(--primary-color);
    top: 20%;
    right: 30%;
    animation-delay: 0s;
}

.triangle-2 {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 60px solid var(--secondary-color);
    bottom: 30%;
    left: 40%;
    animation-delay: -10s;
}

.hexagon-1 {
    width: 60px;
    height: 34.64px;
    background: var(--accent-color);
    position: relative;
    top: 40%;
    left: 80%;
    animation-delay: -5s;
    transition: background 0.5s ease;
}

.hexagon-1:before,
.hexagon-1:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    transition: border-bottom-color 0.5s ease, border-top-color 0.5s ease;
}

.hexagon-1:before {
    bottom: 100%;
    border-bottom: 17.32px solid var(--accent-color);
}

.hexagon-1:after {
    top: 100%;
    border-top: 17.32px solid var(--accent-color);
}

.hexagon-2 {
    width: 50px;
    height: 28.87px;
    background: var(--warning-color);
    position: relative;
    bottom: 60%;
    right: 20%;
    animation-delay: -15s;
    transition: background 0.5s ease;
}

.hexagon-2:before,
.hexagon-2:after {
    content: "";
    position: absolute;
    width: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transition: border-bottom-color 0.5s ease, border-top-color 0.5s ease;
}

.hexagon-2:before {
    bottom: 100%;
    border-bottom: 14.43px solid var(--warning-color);
}

.hexagon-2:after {
    top: 100%;
    border-top: 14.43px solid var(--warning-color);
}

@keyframes geometricFloat {
    0% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-100px) rotate(90deg); }
    50% { transform: translateY(-200px) rotate(180deg); }
    75% { transform: translateY(-100px) rotate(270deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-120px) rotate(120deg); }
    66% { transform: translateY(-80px) rotate(240deg); }
    100% { transform: translateY(0px) rotate(360deg); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero-coin-display {
    margin-bottom: 2rem;
}

.hero-coin-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
    animation: heroCoinspin 6s linear infinite;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

@keyframes heroCoinspin {
    0% { transform: rotateY(0deg) scale(1); }
    50% { transform: rotateY(180deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    transition: background 0.5s ease;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color 0.5s ease;
}

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

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.social-btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.social-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.social-btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}

.social-btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.social-quick-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-social-link {
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.quick-social-link:hover {
    background: rgba(139, 92, 246, 0.3);
    transform: translateY(-2px);
}

/* Section Styles */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: background 0.5s ease;
}

/* About Section */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    transition: color 0.5s ease;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.tokenomics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.pie-chart {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0% 40%,
        var(--secondary-color) 40% 65%,
        var(--accent-color) 65% 85%,
        var(--warning-color) 85% 95%,
        var(--success-color) 95% 100%
    );
    animation: rotate 10s linear infinite;
    transition: background 0.5s ease;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(10, 10, 10, 0.9);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
}

.chart-center h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: color 0.5s ease;
}

.chart-center p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tokenomics-breakdown {
    space-y: 1rem;
}

.breakdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.color-indicator {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    transition: background 0.5s ease;
}

.color-1 { background: var(--primary-color); }
.color-2 { background: var(--secondary-color); }
.color-3 { background: var(--accent-color); }
.color-4 { background: var(--warning-color); }
.color-5 { background: var(--success-color); }

.breakdown-info h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.breakdown-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.token-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    transition: color 0.5s ease;
}

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

/* Roadmap Section */
.roadmap {
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
    transition: background 0.5s ease;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    top: 0;
    border: 4px solid rgba(10, 10, 10, 1);
    transition: background 0.5s ease;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -10px;
}

.timeline-item.completed .timeline-marker {
    background: var(--success-color);
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.timeline-content {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    transition: color 0.5s ease;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    transition: color 0.5s ease;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.3);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    transition: border-color 0.5s ease;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.team-bio {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-icon {
    font-size: 2rem;
    line-height: 1;
}

.contact-details h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-details p {
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.contact-form {
    background: var(--bg-secondary);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-coin-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-coin-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    z-index: 3;
    position: relative;
    animation: footerCoinSpin 8s linear infinite;
    transition: border-color 0.5s ease;
}

@keyframes footerCoinSpin {
    0% { transform: rotateY(0deg) scale(1); }
    25% { transform: rotateY(90deg) scale(1.1); }
    50% { transform: rotateY(180deg) scale(1.2); }
    75% { transform: rotateY(270deg) scale(1.1); }
    100% { transform: rotateY(360deg) scale(1); }
}

.footer-coin-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent);
    border-radius: 50%;
    animation: footerGlow 4s ease-in-out infinite alternate;
    z-index: 1;
    transition: background 0.5s ease;
}

@keyframes footerGlow {
    0% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.8); }
    100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.footer-coin-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border: 2px solid;
    border-color: var(--secondary-color) transparent var(--accent-color) transparent;
    border-radius: 50%;
    animation: footerRingRotate 6s linear infinite;
    z-index: 2;
    transition: border-color 0.5s ease;
}

@keyframes footerRingRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.footer-brand-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    transition: color 0.5s ease;
}

.footer-brand-text p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: color 0.5s ease;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-primary);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-coin-image {
        width: 120px;
        height: 120px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .social-quick-links {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .tokenomics-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        width: 250px;
        height: 250px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 3rem !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 10px !important;
        right: auto !important;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Hide some background elements on mobile for performance */
    .floating-shape,
    .rotating-ring,
    .glowing-orb,
    .geometric-shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-coin-image {
        width: 100px;
        height: 100px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .about-card,
    .team-card,
    .contact-form {
        padding: 1.5rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .token-features {
        grid-template-columns: 1fr;
    }
    
    .coin-logo {
        gap: 0.5rem;
    }
    
    .coin-image {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
    }
    
    .footer-coin-image {
        width: 50px;
        height: 50px;
    }
    
    .footer-coin-logo {
        width: 70px;
        height: 70px;
    }
    
    .footer-brand-text h3 {
        font-size: 1.5rem;
    }
}

/* Performance optimizations */
* {
    will-change: auto;
}

.floating-shape,
.rotating-ring,
.glowing-orb,
.particle,
.floating-coin {
    will-change: transform;
}

.coin-image,
.hero-coin-image,
.footer-coin-image {
    will-change: transform, border-color;
}

/* Smooth transitions for color changes */
* {
    transition-property: color, background-color, border-color, box-shadow;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}