* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b35;
    --secondary-color: #f7931e;
    --dark-bg: #0a0a0a;
    --dark-section: #141414;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #ffd700;
    --gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.section > .container {
    position: relative;
    z-index: 10;
}

.section:first-child {
    border-top: none;
}

.section:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%),
                url('1 Main Page/pixel-art-steaming-hot-pot-cozy-kitchen-illustration-depicting-counter-inviting-359324365.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.token-name {
    display: block;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gradient);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.hero-image {
    margin-top: 3rem;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 20;
}

.scroll-indicator span {
    font-size: 2rem;
    color: var(--text-secondary);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* About Company Section */
.about-company-section {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.85) 0%, rgba(26, 26, 26, 0.85) 100%),
                url('2 About Us Page/StockCake-pixel_cooking_Images_and_Photos_1763754058.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 20;
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 20;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-images img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-sections {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.about-section-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 20;
    backdrop-filter: blur(5px);
}

.about-section-card h3 {
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-section-card p {
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
    line-height: 1.4;
    font-size: 0.85rem;
}

.about-section-card p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    color: var(--text-secondary);
    margin: 0.4rem 0;
    padding-left: 0;
    font-size: 0.8rem;
}

.about-list li {
    padding: 0.2rem 0;
    padding-left: 1.1rem;
    position: relative;
    line-height: 1.35;
}

.about-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* About Token Section */
.about-token-section {
    background: var(--dark-bg);
}

.token-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.token-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.token-card {
    background: var(--dark-section);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
}

.token-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.token-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
    color: var(--text-secondary);
}

.benefits-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tokenomics {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tokenomics-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
}

.tokenomics-label {
    color: var(--text-secondary);
}

.tokenomics-value {
    color: var(--primary-color);
    font-weight: 600;
}

.token-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.token-badge {
    background: var(--dark-section);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.token-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
}

.badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.token-badge h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.token-badge p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Metanet Section */
.metanet-section {
    background: var(--dark-section);
}

.metanet-content-wrapper {
    max-width: 1000px;
    margin: 3rem auto 0;
}

.metanet-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.metanet-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.metanet-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.metanet-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.metanet-intro h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.metanet-intro p {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.collab-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.collab-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.metanet-visual {
    max-width: 600px;
    margin: 2rem auto 0;
    text-align: center;
}

.metanet-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Founders Section */
.founders-section {
    background: var(--dark-bg);
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.founder-card {
    background: var(--dark-section);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.founder-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
}

.founder-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    background: var(--dark-bg);
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.founder-role {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.founder-bio {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.founder-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.founder-link:hover {
    color: var(--accent-color);
}

/* Contacts Section */
.contacts-section {
    background: var(--dark-section);
}

.contacts-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    background: var(--dark-bg);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    background: var(--dark-section);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

/* Contract Section */
.contract-section {
    background: var(--dark-bg);
}

.contract-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contract-card {
    background: var(--dark-section);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.3);
    text-align: center;
}

.contract-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.contract-card h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.contract-address-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--dark-bg);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contract-address {
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: var(--text-primary);
    word-break: break-all;
    flex: 1;
}

.btn-copy {
    background: var(--gradient);
    border: none;
    padding: 0.5rem;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    min-width: 40px;
    height: 40px;
}

.btn-copy:hover {
    transform: scale(1.1);
}

.contract-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contract-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.contract-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s;
}

.contract-link:hover {
    background: var(--primary-color);
    color: white;
}

.contract-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem;
    background: var(--dark-section);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-label {
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--primary-color);
    font-weight: 600;
}

/* Tokenomics Section */
.tokenomics-section {
    background: var(--dark-section);
}

.tokenomics-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.pie-chart-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.pie-chart {
    width: 100%;
    height: auto;
    transform: rotate(-90deg);
}

.pie-segment {
    transition: all 0.3s;
}

.pie-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pie-total {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.pie-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.tokenomics-chart-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.tokenomics-image {
    width: 100%;
}

.tokenomics-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tokenomics-description {
    background: rgba(255, 107, 53, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 2rem;
}

.tokenomics-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.tokenomics-legend {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--dark-bg);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.legend-item:hover {
    transform: translateX(10px);
}

.legend-color {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    flex-shrink: 0;
}

.legend-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.legend-label {
    color: var(--text-primary);
    font-weight: 500;
}

.legend-value {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.tokenomics-summary {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.tokenomics-summary h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.total-supply {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.summary-text {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Roadmap Section */
.roadmap-section {
    background: var(--dark-bg);
}

.roadmap-content {
    max-width: 900px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
    padding-left: 3rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -2.25rem;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark-bg);
    border: 3px solid var(--text-secondary);
    z-index: 1;
    transition: all 0.3s;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.timeline-item.active .timeline-marker {
    background: var(--accent-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.timeline-content {
    background: var(--dark-section);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.timeline-date {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.timeline-content ul {
    list-style: none;
    color: var(--text-secondary);
}

.timeline-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.timeline-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Partners Section */
.partners-section {
    background: var(--dark-section);
}

.partners-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-card {
    background: var(--dark-bg);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.partner-card:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.partner-logo {
    width: 150px;
    height: 150px;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-section);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    flex-shrink: 0;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.partner-placeholder {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-align: center;
    padding: 1rem;
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.partner-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex: 1;
}

.partner-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    align-self: flex-start;
    margin-top: auto;
}

.partner-link:hover {
    color: var(--accent-color);
}

/* Floating Bubbles Animation */
.hero-section .bubbles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 53, 0.3);
    border: 2px solid rgba(255, 107, 53, 0.6);
    border-radius: 50%;
    animation: float-up 20s infinite ease-in;
    opacity: 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5), 0 0 20px rgba(255, 107, 53, 0.3);
}

.bubble:nth-child(1) {
    left: 10%;
    width: 20px;
    height: 20px;
    animation-duration: 18s;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    left: 20%;
    width: 30px;
    height: 30px;
    animation-duration: 22s;
    animation-delay: 1.5s;
}

.bubble:nth-child(3) {
    left: 30%;
    width: 25px;
    height: 25px;
    animation-duration: 20s;
    animation-delay: 3s;
}

.bubble:nth-child(4) {
    left: 40%;
    width: 35px;
    height: 35px;
    animation-duration: 19s;
    animation-delay: 4.5s;
}

.bubble:nth-child(5) {
    left: 50%;
    width: 20px;
    height: 20px;
    animation-duration: 21s;
    animation-delay: 6s;
}

.bubble:nth-child(6) {
    left: 60%;
    width: 30px;
    height: 30px;
    animation-duration: 23s;
    animation-delay: 7.5s;
}

.bubble:nth-child(7) {
    left: 70%;
    width: 25px;
    height: 25px;
    animation-duration: 17s;
    animation-delay: 9s;
}

.bubble:nth-child(8) {
    left: 80%;
    width: 35px;
    height: 35px;
    animation-duration: 24s;
    animation-delay: 10.5s;
}

.bubble:nth-child(9) {
    left: 15%;
    width: 22px;
    height: 22px;
    animation-duration: 18s;
    animation-delay: 12s;
}

.bubble:nth-child(10) {
    left: 25%;
    width: 28px;
    height: 28px;
    animation-duration: 20s;
    animation-delay: 13.5s;
}

.bubble:nth-child(11) {
    left: 35%;
    width: 32px;
    height: 32px;
    animation-duration: 22s;
    animation-delay: 15s;
}

.bubble:nth-child(12) {
    left: 45%;
    width: 18px;
    height: 18px;
    animation-duration: 16s;
    animation-delay: 16.5s;
}

.bubble:nth-child(13) {
    left: 55%;
    width: 26px;
    height: 26px;
    animation-duration: 19s;
    animation-delay: 18s;
}

.bubble:nth-child(14) {
    left: 65%;
    width: 24px;
    height: 24px;
    animation-duration: 21s;
    animation-delay: 19.5s;
}

.bubble:nth-child(15) {
    left: 75%;
    width: 30px;
    height: 30px;
    animation-duration: 23s;
    animation-delay: 21s;
}

.bubble:nth-child(16) {
    left: 5%;
    width: 22px;
    height: 22px;
    animation-duration: 17s;
    animation-delay: 22.5s;
}

.bubble:nth-child(17) {
    left: 12%;
    width: 28px;
    height: 28px;
    animation-duration: 20s;
    animation-delay: 24s;
}

.bubble:nth-child(18) {
    left: 22%;
    width: 19px;
    height: 19px;
    animation-duration: 18s;
    animation-delay: 25.5s;
}

.bubble:nth-child(19) {
    left: 32%;
    width: 27px;
    height: 27px;
    animation-duration: 22s;
    animation-delay: 27s;
}

.bubble:nth-child(20) {
    left: 42%;
    width: 23px;
    height: 23px;
    animation-duration: 19s;
    animation-delay: 28.5s;
}

.bubble:nth-child(21) {
    left: 52%;
    width: 31px;
    height: 31px;
    animation-duration: 21s;
    animation-delay: 30s;
}

.bubble:nth-child(22) {
    left: 62%;
    width: 21px;
    height: 21px;
    animation-duration: 17s;
    animation-delay: 31.5s;
}

.bubble:nth-child(23) {
    left: 72%;
    width: 29px;
    height: 29px;
    animation-duration: 23s;
    animation-delay: 33s;
}

.bubble:nth-child(24) {
    left: 82%;
    width: 24px;
    height: 24px;
    animation-duration: 18s;
    animation-delay: 34.5s;
}

.bubble:nth-child(25) {
    left: 8%;
    width: 26px;
    height: 26px;
    animation-duration: 20s;
    animation-delay: 36s;
}

.bubble:nth-child(26) {
    left: 18%;
    width: 20px;
    height: 20px;
    animation-duration: 22s;
    animation-delay: 37.5s;
}

.bubble:nth-child(27) {
    left: 28%;
    width: 33px;
    height: 33px;
    animation-duration: 19s;
    animation-delay: 39s;
}

.bubble:nth-child(28) {
    left: 38%;
    width: 25px;
    height: 25px;
    animation-duration: 21s;
    animation-delay: 40.5s;
}

.bubble:nth-child(29) {
    left: 48%;
    width: 22px;
    height: 22px;
    animation-duration: 17s;
    animation-delay: 42s;
}

.bubble:nth-child(30) {
    left: 58%;
    width: 28px;
    height: 28px;
    animation-duration: 24s;
    animation-delay: 43.5s;
}

.bubble:nth-child(31) {
    left: 3%;
    width: 24px;
    height: 24px;
    animation-duration: 19s;
    animation-delay: 45s;
}

.bubble:nth-child(32) {
    left: 7%;
    width: 27px;
    height: 27px;
    animation-duration: 21s;
    animation-delay: 46.5s;
}

.bubble:nth-child(33) {
    left: 13%;
    width: 21px;
    height: 21px;
    animation-duration: 17s;
    animation-delay: 48s;
}

.bubble:nth-child(34) {
    left: 17%;
    width: 29px;
    height: 29px;
    animation-duration: 23s;
    animation-delay: 49.5s;
}

.bubble:nth-child(35) {
    left: 23%;
    width: 25px;
    height: 25px;
    animation-duration: 18s;
    animation-delay: 51s;
}

.bubble:nth-child(36) {
    left: 27%;
    width: 31px;
    height: 31px;
    animation-duration: 22s;
    animation-delay: 52.5s;
}

.bubble:nth-child(37) {
    left: 33%;
    width: 23px;
    height: 23px;
    animation-duration: 20s;
    animation-delay: 54s;
}

.bubble:nth-child(38) {
    left: 37%;
    width: 26px;
    height: 26px;
    animation-duration: 19s;
    animation-delay: 55.5s;
}

.bubble:nth-child(39) {
    left: 43%;
    width: 22px;
    height: 22px;
    animation-duration: 21s;
    animation-delay: 57s;
}

.bubble:nth-child(40) {
    left: 47%;
    width: 28px;
    height: 28px;
    animation-duration: 17s;
    animation-delay: 58.5s;
}

.bubble:nth-child(41) {
    left: 53%;
    width: 24px;
    height: 24px;
    animation-duration: 23s;
    animation-delay: 60s;
}

.bubble:nth-child(42) {
    left: 57%;
    width: 30px;
    height: 30px;
    animation-duration: 18s;
    animation-delay: 61.5s;
}

.bubble:nth-child(43) {
    left: 63%;
    width: 25px;
    height: 25px;
    animation-duration: 22s;
    animation-delay: 63s;
}

.bubble:nth-child(44) {
    left: 67%;
    width: 27px;
    height: 27px;
    animation-duration: 20s;
    animation-delay: 64.5s;
}

.bubble:nth-child(45) {
    left: 73%;
    width: 23px;
    height: 23px;
    animation-duration: 19s;
    animation-delay: 66s;
}

.bubble:nth-child(46) {
    left: 77%;
    width: 29px;
    height: 29px;
    animation-duration: 21s;
    animation-delay: 67.5s;
}

.bubble:nth-child(47) {
    left: 83%;
    width: 26px;
    height: 26px;
    animation-duration: 17s;
    animation-delay: 69s;
}

.bubble:nth-child(48) {
    left: 87%;
    width: 24px;
    height: 24px;
    animation-duration: 23s;
    animation-delay: 70.5s;
}

.bubble:nth-child(49) {
    left: 93%;
    width: 28px;
    height: 28px;
    animation-duration: 18s;
    animation-delay: 72s;
}

.bubble:nth-child(50) {
    left: 97%;
    width: 22px;
    height: 22px;
    animation-duration: 22s;
    animation-delay: 73.5s;
}

@keyframes float-up {
    0% {
        bottom: -100px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    5% {
        opacity: 0.9;
    }
    50% {
        transform: translateX(30px) scale(1);
        opacity: 1;
    }
    95% {
        opacity: 0.7;
    }
    100% {
        bottom: 100vh;
        opacity: 0;
        transform: translateX(-20px) scale(0.3);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content,
    .token-content,
    .metanet-content,
    .contacts-content {
        grid-template-columns: 1fr;
    }

    .about-sections {
        grid-template-columns: 1fr;
    }

    .token-visual {
        position: static;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }

    .collab-features {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
    }

    .contract-content,
    .tokenomics-content {
        grid-template-columns: 1fr;
    }

    .partner-card {
        flex-direction: column;
        text-align: center;
    }

    .partner-logo {
        margin: 0 auto;
    }

    .partner-info {
        text-align: center;
    }

    .partner-link {
        align-self: center;
    }

    .roadmap-timeline {
        padding-left: 2rem;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .timeline-marker {
        left: -1.75rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

