/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #0a0a0f;
    overflow-x: hidden;
    position: relative;
}

/* Starfield Background */
.star {
    position: fixed;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    animation: twinkle 4s infinite ease-in-out;
    transition: opacity 2.5s ease-in-out, left 18s ease-in-out, top 18s ease-in-out;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.logo-img {
    width: 55px;
    height: 50px;
    border-radius: 50%;
    border: none;
	margin-right: -15px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 4rem;
    align-items: center;
	margin-left: 4rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(58, 72, 202, 0.2);
    color: #6366f1;
}

.wallet-container {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    padding-right: 5rem;
	
}

#connect-btn {
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
	margin-left: 4rem;
}

#connect-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 72, 202, 0.4);
}

#connect-btn.connected {
    background: linear-gradient(135deg, #10b981, #059669);
}

/* Hero Section */
.hero {
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
	margin-top: 100px;
	margin-bottom: -100px;
}

.slogan-container {
    max-width: 800px;
    padding: 0 2rem;
}

.slogan {
    font-size: clamp(3rem, 11vw, 4rem);
    font-weight: 1200;
    background: linear-gradient(135deg, #ffffff, #6366f1, #3a48ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.sub-slogan {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    color: white;
}

.cta-button.secondary {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(58, 72, 202, 0.4);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Page Content */
.page-content {
    margin-top: 100px;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Quick Presale Section */
.quick-presale {
    padding: 1.5rem 0;
    margin: 2rem 0;
	margin-bottom: -2rem;
    border-radius: 20px;
}

/* Presale Box */
.presale-box {
    max-width: 600px;
	margin: 0 auto;
	background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(20px);
}

.presale-box h2 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
}

.stage-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.stage-current,
.stage-price {
    font-weight: 600;
    color: #6366f1;
}

.input-group {
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #ffffff;
}

.input-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.estimated-tokens {
    margin-top: 0.5rem;
    text-align: center;
    font-weight: 600;
    color: #6366f1;
}

.price-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.price-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

#presale-action-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

#presale-action-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(58, 72, 202, 0.4);
}

#presale-action-btn:disabled {
    background: rgba(255, 255, 255, 0.1);
    cursor: not-allowed;
}

.presale-progress {
    text-align: center;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    border-radius: 6px;
    transition: width 0.3s ease;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(58, 72, 202, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Features Detailed */
.features-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(20px);
}

.feature-icon-large {
    font-size: 4rem;
    text-align: center;
    padding: 1rem;
}

.feature-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.feature-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6366f1;
    font-weight: bold;
}

/* Tech Stack */
.tech-stack {
    margin-bottom: 4rem;
	text-align: center;
   
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.2rem;
}

.tech-item {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 80px;
    padding: 1rem;
    backdrop-filter: blur(20px);
}

.tech-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
	text-align: center;
}

.tech-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
	text-align: center;
}

/* Tokenomics */
.tokenomics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.token-stat {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.token-stat h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.token-stat p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.token-stat span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Token Overview */
.token-overview {
    margin-bottom: 4rem;
}

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

.overview-item {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.overview-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.overview-item span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Token Distribution */
.token-distribution {
    margin-bottom: 4rem;
}

.distribution-chart {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-container {
    display: flex;
    justify-content: center;
}

.pie-chart {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        #3a48ca 0% 29.4%,
        #6366f1 29.4% 47%,
        #8b5cf6 47% 58.8%,
        #a855f7 58.8% 70.6%,
        #c084fc 70.6% 82.4%,
        #e879f9 82.4% 100%
    );
    position: relative;
}

.distribution-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.presale { background: #3a48ca; }
.legend-color.liquidity { background: #6366f1; }
.legend-color.team { background: #8b5cf6; }
.legend-color.marketing { background: #a855f7; }
.legend-color.research { background: #c084fc; }
.legend-color.treasury { background: #e879f9; }

/* Presale Stages */
.presale-stages {
    margin-bottom: 4rem;
}

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

.stage-card {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.stage-card.active {
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.stage-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.stage-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stage-supply {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.stage-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.stage-status.active {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.stage-status.upcoming {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.stage-progress {
    margin-top: 1rem;
}

.stage-progress span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Vesting Schedule */
.vesting-schedule {
    margin-bottom: 4rem;
}

.vesting-table {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 1rem;
    padding: 1.5rem;
    align-items: center;
}

.table-header {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 700;
    color: #ffffff;
}

.table-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* Utility Benefits */
.utility-benefits {
    margin-bottom: 4rem;
}

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

.utility-item {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.utility-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(58, 72, 202, 0.2);
}

.utility-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.utility-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.utility-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Roadmap */
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.roadmap-phase {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.phase-date {
    background: linear-gradient(135deg, #3a48ca, #6366f1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.phase-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    flex: 1;
    text-align: center;
}

.phase-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.phase-status.completed {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.phase-status.in-progress {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.phase-status.upcoming {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.phase-status.future {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
}

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

.phase-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #6366f1;
}

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

.phase-section li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

/* Future Vision */
.future-vision {
    margin-bottom: 4rem;
}

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

.vision-item {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
}

.vision-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.vision-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.vision-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.vision-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Presale Details */
.presale-details {
    margin-bottom: 4rem;
}

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

.detail-card {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.detail-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.detail-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.status-active {
    color: #10b981;
    font-weight: 600;
}

.status-upcoming {
    color: #f59e0b;
    font-weight: 600;
}

/* Why Participate */
.why-participate {
    margin-bottom: 4rem;
}

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

.benefit-item {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(58, 72, 202, 0.2);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Important Notes */
.important-notes {
    margin-bottom: 4rem;
}

.notes-content {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(20px);
}

.notes-content ul {
    list-style: none;
    padding: 0;
}

.notes-content li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.notes-content li::before {
    content: "ℹ️";
    position: absolute;
    left: 0;
    top: 0;
}

/* Footer */
.footer {
    background: rgba(10, 10, 15, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Wallet Popup */
.wallet-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(10px);
}

.wallet-popup.hidden {
    display: none;
}

.wallet-popup-content {
    background: linear-gradient(135deg, rgba(58, 72, 202, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    backdrop-filter: blur(20px);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #ffffff;
}

.wallet-popup-content h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
}

.wallet-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.wallet-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #6366f1;
    transform: translateY(-2px);
}

.wallet-btn img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        height: 80vh;
        padding-top: 120px;
    }
    
    .slogan {
        font-size: 2.5rem;
    }
    
    .sub-slogan {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .feature-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .distribution-chart {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pie-chart {
        width: 250px;
        height: 250px;
    }
    
    .phase-header {
        flex-direction: column;
        text-align: center;
    }
    
    .phase-header h2 {
        order: 1;
    }
    
    .phase-date {
        order: 0;
    }
    
    .phase-status {
        order: 2;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .wallet-popup-content {
        margin: 1rem;
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .presale-box {
        padding: 1.5rem;
    }
    
    .stage-info {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .price-info {
        grid-template-columns: 1fr;
    }
    
    .price-detail {
        flex-direction: column;
        text-align: center;
        gap: 0.25rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.token-stat,
.benefit-item,
.utility-item {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Selection styles */
::selection {
    background: rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

/* Focus styles */
button:focus,
input:focus {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Success states */
.success {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

/* Error states */
.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}