/* 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: #374151;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    border-right: 1px solid #e5e7eb;
    overflow-y: auto;
    z-index: 1000;
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

.logo-text {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 18px;
    color: #8b5cf6;
}

.close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.close-btn:hover {
    background-color: #f3f4f6;
}

.nav-menu {
    padding: 0 0 24px 0;
}

.nav-section {
    margin-bottom: 24px;
}

.nav-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 24px 8px 24px;
    margin-top: 16px;
}

.nav-section:first-child h4 {
    margin-top: 0;
}

.nav-link {
    display: block;
    padding: 8px 24px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.nav-link:hover {
    background-color: #f9fafb;
    color: #8b5cf6;
}

.nav-link.active {
    background-color: #f3f4f6;
    color: #8b5cf6;
    font-weight: 500;
    border-left-color: #8b5cf6;
}

.sidebar-footer {
    padding: 24px;
    border-top: 1px solid #e5e7eb;
    margin-top: auto;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #f3f4f6;
    color: #6b7280;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.social-link:hover {
    background-color: #8b5cf6;
    color: white;
}

.version {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 12px;
    font-size: 18px;
    color: #374151;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Main Content */
.main-content {
    margin-left: 300px;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 48px;
}

/* Content Sections */
.content-section {
    display: none;
    animation: fadeIn 0.3s ease;
}

.content-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography */
h1 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Orbitron', monospace;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin: 32px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
}

h3 {
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    margin: 24px 0 12px 0;
}

h4 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 16px 0 8px 0;
}

p {
    margin-bottom: 16px;
    color: #374151;
    line-height: 1.7;
}

.subtitle {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    font-style: italic;
}

.large-text {
    font-size: 18px;
    line-height: 1.8;
    color: #1f2937;
}

/* Special Boxes */
.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
    border: 1px solid #c7d2fe;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h3 {
    color: #3730a3;
    margin-top: 0;
    margin-bottom: 16px;
}

.vision-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #bbf7d0;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.vision-box h2 {
    color: #166534;
    margin-top: 0;
    border-bottom: none;
    margin-bottom: 16px;
}

.mission-box {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.mission-box h2 {
    color: #92400e;
    margin-top: 0;
    border-bottom: none;
    margin-bottom: 16px;
}

.solution-box {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%);
    border: 1px solid #f9a8d4;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

/* Lists */
.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #374151;
}

.mission-list li::before {
    content: "✨";
    position: absolute;
    left: 0;
    top: 0;
}

ul {
    margin-bottom: 16px;
}

li {
    margin-bottom: 8px;
    color: #374151;
}

/* Grid Layouts */
.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.highlight-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 10px 25px -3px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
}

.highlight-card h4 {
    color: #111827;
    margin-bottom: 8px;
}

.highlight-card p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.value-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.value-card h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
}

.value-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Contract Information */
.contract-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.contract-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.contract-item:last-child {
    border-bottom: none;
}

.contract-item strong {
    color: #374151;
    min-width: 140px;
}

.contract-item code {
    background: #1f2937;
    color: #f9fafb;
    padding: 4px 8px;
    border-radius: 6px;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    word-break: break-all;
}

.contract-item span {
    color: #6b7280;
}

/* Problem Items */
.problem-item {
    margin: 24px 0;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #fee2e2;
    border-radius: 12px;
}

.problem-item h3 {
    color: #dc2626;
    margin-top: 0;
    margin-bottom: 12px;
}

/* Tech Features */
.tech-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.tech-feature {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.tech-feature h4 {
    color: #111827;
    margin-top: 0;
    margin-bottom: 12px;
}

.tech-feature p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
}

/* Architecture Items */
.architecture-item {
    margin: 24px 0;
    padding: 20px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.architecture-item h3 {
    color: #111827;
    margin-top: 0;
    margin-bottom: 16px;
}

.architecture-item ul {
    margin: 0;
}

/* Tech Stack */
.tech-stack {
    margin: 24px 0;
}

.stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 16px;
}

.stack-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    font-size: 14px;
}

.stack-item strong {
    color: #8b5cf6;
}

/* Scrollbar Styling */
.sidebar::-webkit-scrollbar {
    width: 6px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .close-btn {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .content-wrapper {
        padding: 80px 24px 40px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .highlight-grid,
    .values-grid,
    .tech-comparison {
        grid-template-columns: 1fr;
    }
    
    .contract-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .contract-item strong {
        min-width: auto;
    }
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.security-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.security-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
}

.security-item ul {
    margin: 12px 0 0 0;
}

/* Audit Table */
.audit-table {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.audit-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.audit-row:last-child {
    border-bottom: none;
}

.audit-row.header {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.status-passed {
    color: #059669;
    font-weight: 500;
}

.status-pending {
    color: #d97706;
    font-weight: 500;
}

/* Token Summary */
.token-summary {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    text-align: center;
}

.token-visual {
    margin-bottom: 32px;
}

.token-icon {
    margin: 0 auto 16px;
    width: 80px;
    height: 80px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    padding: 8px;
}

.token-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.token-summary h2 {
    margin: 0 0 8px 0;
    border: none;
    color: #111827;
}

.token-description {
    color: #6b7280;
    font-size: 16px;
    margin: 0;
}

.token-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.detail-item .label {
    color: #6b7280;
    font-weight: 500;
}

.detail-item .value {
    color: #111827;
    font-weight: 600;
}

/* Utility Grid */
.utility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.utility-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.utility-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.utility-icon {
    font-size: 32px;
    margin-bottom: 16px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.utility-card h4 {
    margin: 0 0 12px 0;
    color: #111827;
}

.utility-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Distribution Overview */
.distribution-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 32px 0;
    align-items: center;
}

.distribution-chart {
    display: flex;
    justify-content: center;
}

.pie-chart {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #8b5cf6 0deg 144deg,
        #06d6a0 144deg 234deg,
        #f72585 234deg 288deg,
        #ffd166 288deg 324deg,
        #ff6b35 324deg 349.2deg,
        #4cc9f0 349.2deg 360deg
    );
}

.distribution-legend {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.legend-label {
    flex: 1;
    color: #374151;
    font-weight: 500;
}

.legend-value {
    color: #6b7280;
    font-weight: 600;
    font-size: 14px;
}

/* Vesting Table */
.vesting-table {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
}

.vesting-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
}

.vesting-row:last-child {
    border-bottom: none;
}

.vesting-row.header {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .security-grid,
    .utility-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-row,
    .vesting-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .audit-row.header,
    .vesting-row.header {
        display: none;
    }
    
    .audit-row > div,
    .vesting-row > div {
        padding: 4px 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .audit-row > div:before,
    .vesting-row > div:before {
        content: attr(data-label);
        font-weight: 600;
        color: #6b7280;
        display: block;
        margin-bottom: 4px;
    }
    
    .distribution-overview {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pie-chart {
        width: 150px;
        height: 150px;
    }
    
    .token-details-grid {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.benefit-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.benefit-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
}

/* Features Overview */
.features-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.feature-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
}

.feature-section h3 {
    margin-top: 0;
    margin-bottom: 16px;
    color: #1e293b;
}

.feature-section ul {
    margin: 0;
}

.feature-section li {
    margin-bottom: 8px;
}

.feature-section li strong {
    color: #8b5cf6;
}

/* NFT Features */
.nft-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.nft-collection {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.nft-collection:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.nft-collection h4 {
    margin: 0 0 12px 0;
    color: #111827;
}

.nft-collection p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Governance Overview */
.governance-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.governance-tier {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.governance-tier:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.governance-tier h3 {
    margin-top: 0;
    margin-bottom: 8px;
    color: #1e293b;
}

.governance-tier p {
    color: #64748b;
    font-weight: 500;
    margin-bottom: 16px;
}

.governance-tier ul {
    margin: 0;
}

/* Voting Process */
.voting-process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.process-step {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    position: relative;
}

.process-step h4 {
    margin: 0 0 12px 0;
    color: #8b5cf6;
}

.process-step p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Staking Pools */
.staking-pools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.pool-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pool-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.pool-card.legendary {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 5%, #ffffff 10%);
    border-color: #fbbf24;
}

.pool-card.legendary:hover {
    border-color: #f59e0b;
    box-shadow: 0 8px 25px -5px rgba(251, 191, 36, 0.3);
}

.pool-card h3 {
    margin: 0 0 16px 0;
    color: #111827;
    text-align: center;
}

.pool-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.pool-stats .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f3f4f6;
}

.pool-stats .stat:last-child {
    border-bottom: none;
}

.pool-stats .label {
    color: #6b7280;
    font-weight: 500;
}

.pool-stats .value {
    color: #111827;
    font-weight: 600;
}

.pool-card p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    text-align: center;
}

/* Reward Mechanism */
.reward-mechanism {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.reward-source {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.reward-source h4 {
    margin: 0 0 12px 0;
    color: #1e293b;
}

.reward-source p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Phase Overview */
.phase-overview {
    margin: 24px 0;
}

.phase-status {
    text-align: center;
    margin-bottom: 32px;
}

.phase-status.completed h2 {
    color: #059669;
    border: none;
    margin: 0;
}

.phase-status.current h2 {
    color: #8b5cf6;
    border: none;
    margin: 0;
}

/* Milestone Grid */
.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.milestone {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.milestone.completed {
    border-color: #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.milestone.current {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
}

.milestone.upcoming {
    border-color: #d1d5db;
    background: #f9fafb;
}

.milestone h4 {
    margin: 0 0 12px 0;
    color: #111827;
}

.milestone p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
}

/* Future Phases */
.future-phases {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 24px 0;
}

.future-phase {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.future-phase:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.future-phase.legendary {
    background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 5%, #ffffff 10%);
    border-color: #fbbf24;
}

.future-phase h2 {
    margin: 0 0 16px 0;
    border: none;
    color: #111827;
}

.future-phase ul {
    margin: 0;
    columns: 2;
    column-gap: 24px;
}

.future-phase li {
    break-inside: avoid;
    margin-bottom: 8px;
}

/* Team Members */
.team-intro {
    margin-bottom: 32px;
    text-align: center;
}

.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.team-member {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    border-color: #8b5cf6;
    box-shadow: 0 8px 25px -5px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6, #06d6a0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: white;
}

.team-member h3 {
    margin: 0 0 8px 0;
    color: #111827;
}

.role {
    color: #8b5cf6;
    font-weight: 600;
    margin-bottom: 16px;
}

.bio {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill {
    background: #f3f4f6;
    color: #374151;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Partner Categories */
.partnerships-overview {
    margin-bottom: 32px;
}

.partner-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.partner-category h3 {
    margin: 0 0 16px 0;
    color: #111827;
}

.partner-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 16px;
}

.partner-item {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    border-color: #8b5cf6;
    box-shadow: 0 4px 12px -2px rgba(139, 92, 246, 0.1);
}

.partner-item h4 {
    margin: 0 0 8px 0;
    color: #1e293b;
}

.partner-item p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

/* Legal Sections */
.compliance-overview {
    margin-bottom: 32px;
}

.legal-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.legal-section {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
}

.legal-section h3 {
    margin: 0 0 12px 0;
    color: #1e293b;
}

.legal-section p {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

.disclaimer-box {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid #fca5a5;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.disclaimer-box p {
    margin: 0;
    color: #7f1d1d;
    font-size: 14px;
    line-height: 1.7;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .benefits-list,
    .features-overview,
    .governance-overview,
    .staking-pools,
    .team-members {
        grid-template-columns: 1fr;
    }
    
    .voting-process {
        grid-template-columns: 1fr;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
    }
    
    .future-phase ul {
        columns: 1;
    }
    
    .partner-list,
    .legal-sections {
        grid-template-columns: 1fr;
    }
} 