body {
    margin: 0;
    font-family: 'Inter', sans-serif; /* Kava.io seems to use Inter or a similar sans-serif font */
    background-color: #000;
    color: #fff;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Header and Navigation */
header {
    background-color: #000;
    padding: 20px 50px;
    border-bottom: 1px solid #333;
    position: relative; /* For z-index */
    z-index: 1000;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px; /* 控制图标和文字之间的间距 */
}

.logo {
    font-size: 28px;
    font-weight: bold;
	margin: 0;
    color: #FFFFFF; /* Placeholder color, will be an image */
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin-right: 40px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4d00; /* Kava's accent color */
}

.launch-app {
    background-color: #ff4d00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.launch-app:hover {
    background-color: #e64400;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 5px 40px;
    background: linear-gradient(to bottom, #1a0000, #000000); /* Dark red to black gradient */
    position: relative;
    overflow: hidden; /* Hide overflowing 3D elements */
}

.hero-section h1 {
    font-size: 80px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-section h1 .highlight {
    color: #ff4d00; /* Kava's accent color for 'To Web3' */
}

.hero-section p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #ccc;
    line-height: 1.6;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 80px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

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

.stat-item h6 {
    margin: 0;
    color: #aaa;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
}

.stat-item h3 {
    margin: 5px 0 0 0;
    font-size: 48px;
    color: #fff;
    font-weight: bold;
}

/* Content Section (placeholder) */
.content-section {
    padding: 5px;
    min-height: 500px; /* Just for visual separation */
}

/* Footer (placeholder) */
footer {
    background-color: #111;
    padding: 50px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 20px;
    }

    nav {
        flex-direction: column;
    }

    .nav-links {
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .hero-section h1 {
        font-size: 50px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-item h3 {
        font-size: 36px;
    }
}



/* 3D Visual Elements */
.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

/* Animated background particles */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 77, 0, 0.1), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 77, 0, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: float 20s infinite linear;
    z-index: -1;
}

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

/* Enhanced button styles */
.launch-app {
    background: linear-gradient(45deg, #ff4d00, #ff6600);
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
    transition: all 0.3s ease;
}

.launch-app:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
}

/* Stats container enhancements */
.stats-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 77, 0, 0.1);
}

/* Typography improvements */
.hero-section h1 {
    background: linear-gradient(45deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.hero-section h1 .highlight {
    background: linear-gradient(45deg, #ff4d00, #ff8800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #ff4d00; /* Fallback for browsers that don't support background-clip */
}

/* Navigation enhancements */
nav {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.8);
}

.nav-links a {
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #ff4d00, #ff8800);
    transition: width 0.3s ease;
}

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

/* Glowing effects */
.glow {
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.5);
}

/* Additional sections styling */
.content-section {
    background: linear-gradient(to bottom, #000, #111);
    position: relative;
}

/* Footer enhancements */
footer {
    background: linear-gradient(to top, #000, #111);
    border-top: 1px solid #333;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for stats */
.stat-item h3 {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-section::before {
        width: 400px;
        height: 300px;
    }
    
    .stats-container {
        padding: 20px;
        margin-top: 40px;
    }
    
    .stat-item {
        padding: 10px;
    }
}


/* Ecosystem Section */
.ecosystem-section {
    text-align: center;
    padding: 5px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.ecosystem-section h3 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ff4d00;
    font-weight: bold;
}

.ecosystem-section p {
    font-size: 18px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Styles */
footer {
    background: linear-gradient(to top, #000, #111);
    border-top: 1px solid #333;
    padding: 60px 50px 20px 50px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 50px;
}

.footer-section h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ff4d00;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: #666;
    font-size: 12px;
    margin: 0;
}
/* 团队成员区域样式 */
.team-section {
    padding: 40px 50px;
    text-align: center;
}

.team-section h2 {
    font-size: 48px;
    margin-bottom: 50px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.team-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #ff4d00, #ff8800);
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.team-member {
    width: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
    transform: translateY(-10px);
    background: rgba(255, 77, 0, 0.1);
    box-shadow: 0 10px 20px rgba(255, 77, 0, 0.1);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 77, 0, 0.3);
}

.team-member h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 22px;
}

.team-member p {
    color: #aaa;
    font-size: 16px;
    margin: 0;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .team-section {
        padding: 50px 20px;
    }
    
    .team-members {
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        width: 80%;
        margin-bottom: 30px;
    }
}
/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .ecosystem-section {
        padding: 50px 20px;
    }
    
    .ecosystem-section h2 {
        font-size: 36px;
    }
    
    .ecosystem-section h3 {
        font-size: 28px;
    }
}

/* Tools Section Buttons */
.tools-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 50px;
}

.tool-button {
    background: linear-gradient(45deg, #ff4d00, #ff6600);
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.3);
    border: none;
    cursor: pointer;
    text-align: center;
    display: inline-block;
}

.tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.4);
    background: linear-gradient(45deg, #ff6600, #ff4d00);
}

/* Responsive design for buttons */
@media (max-width: 768px) {
    .tools-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .tool-button {
        width: 100%;
        padding: 12px 25px;
    }
}