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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0a0e1a;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: #8892b0;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-outline {
    background: transparent;
    color: #64ffda;
    border: 2px solid #64ffda;
}

.btn-outline:hover {
    background: #64ffda;
    color: #0a0e1a;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    z-index: 1000;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

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

.nav-logo h2 {
    color: #64ffda;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

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

.nav-link {
    color: #8892b0;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #64ffda;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64ffda;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

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

.bar {
    width: 25px;
    height: 3px;
    background: #64ffda;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/blockchain_fintech_background1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.8) 0%, rgba(26, 31, 58, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 100px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Sections */
.core-values,
.token-overview,
.tech-innovation {
    padding: 100px 0;
    background: #0a0e1a;
}

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

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #8892b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Value Cards */
.values-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.5s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.card-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.card-description {
    color: #8892b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Technology Innovation */
.tech-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    transform: translateX(10px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.tech-feature .feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.tech-feature .feature-content h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.tech-feature .feature-content p {
    color: #8892b0;
    line-height: 1.6;
    margin: 0;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.diagram-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.center-node {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #64ffda 0%, #667eea 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.3);
    animation: pulse 2s infinite;
}

.center-node i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

.diagram-nodes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    animation: orbit 10s linear infinite;
}

.node:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.node i {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.node:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    animation-delay: -2.5s;
}

.node:nth-child(3) {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -5s;
}

.node:nth-child(4) {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    animation-delay: -7.5s;
}

@keyframes orbit {
    0% { transform: rotate(0deg) translateX(100px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
}

/* Token Cards */
.tokens-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.token-card {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.token-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.1);
}

.token-icon {
    margin-bottom: 1.5rem;
}

.token-symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.token-name {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.token-description {
    color: #8892b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.token-link {
    color: #64ffda;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.token-link:hover {
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Footer */
.footer {
    background: #0a0e1a;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-title {
    font-size: 1.5rem;
    color: #64ffda;
}

.footer-description {
    color: #8892b0;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(100, 255, 218, 0.1);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64ffda;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #64ffda;
    color: #0a0e1a;
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

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

.footer-link {
    color: #8892b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #64ffda;
}

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

.footer-legal,
.footer-disclaimer {
    color: #8892b0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    /* Ensure mobile menu appears when toggled */
    .nav-menu.active {
        display: flex !important;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-grid,
    .tokens-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tech-diagram {
        width: 250px;
        height: 250px;
    }
    
    .center-node {
        width: 80px;
        height: 80px;
    }
    
    .node {
        width: 60px;
        height: 60px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .value-card,
    .token-card {
        padding: 1.5rem;
    }
}



/* Page Header Styles */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    max-width: 600px;
    margin: 0 auto;
}

/* Token Detail Cards */
.core-tokens {
    padding: 100px 0;
    background: #0a0e1a;
}

.token-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

.token-detail-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.03) 0%, rgba(102, 126, 234, 0.03) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.token-detail-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.token-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.token-icon-large {
    flex-shrink: 0;
}

.token-symbol-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.token-info {
    flex: 1;
}

.token-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.token-tagline {
    font-size: 1.1rem;
    color: #64ffda;
    margin: 0;
}

.token-content {
    margin-top: 1.5rem;
}

.token-description {
    font-size: 1.1rem;
    color: #8892b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.token-features-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.2);
}

.feature-item i {
    font-size: 2rem;
    color: #64ffda;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: #8892b0;
    margin: 0;
}

/* Use Cases */
.use-cases {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.use-cases-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.use-case-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(100, 255, 218, 0.1), transparent);
    transition: left 0.5s ease;
}

.use-case-card:hover::before {
    left: 100%;
}

.use-case-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.use-case-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.use-case-description {
    color: #8892b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.use-case-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.benefit-tag {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Platform Features */
.platform-features {
    padding: 100px 0;
    background: #0a0e1a;
}

.features-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.feature-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.feature-list li {
    color: #8892b0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li:before {
    content: '✓';
    color: #64ffda;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* AI Technology */
.ai-technology {
    padding: 100px 0;
    background: #0a0e1a;
}

.tech-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tech-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.tech-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.tech-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-features {
    list-style: none;
    padding: 0;
}

.tech-features li {
    color: #8892b0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.tech-features li:before {
    content: '✓';
    color: #64ffda;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.tech-features li:last-child {
    border-bottom: none;
}

/* Blockchain Architecture */
.blockchain-architecture {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.architecture-showcase {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: 1fr 1fr;
    -moz-grid-template-columns: 1fr 1fr;
    -ms-grid-template-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.architecture-features {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
}

.arch-feature {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.arch-feature:hover {
    -webkit-transform: translateX(10px);
    -moz-transform: translateX(10px);
    -ms-transform: translateX(10px);
    -o-transform: translateX(10px);
    transform: translateX(10px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 10px 30px rgba(100, 255, 218, 0.1);
}

.arch-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.arch-content h3 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.arch-content p {
    color: #8892b0;
    line-height: 1.6;
    margin: 0;
}

.architecture-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blockchain-diagram {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.layer {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    padding: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.layer:hover {
    border-color: rgba(100, 255, 218, 0.2);
    transform: scale(1.02);
}

.layer-title {
    font-size: 1rem;
    color: #64ffda;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.layer-components {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.component {
    background: rgba(100, 255, 218, 0.1);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Technical Specifications */
.tech-specs {
    padding: 100px 0;
    background: #0a0e1a;
}

.specs-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.spec-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.spec-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.spec-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.spec-title {
    font-size: 1.3rem;
    color: white;
    margin: 0;
}

.spec-header i {
    font-size: 1.5rem;
    color: #64ffda;
}

.spec-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #8892b0;
    font-weight: 500;
}

.spec-value {
    color: #64ffda;
    font-weight: 600;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: #0a0e1a;
}

.integration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.integration-text h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
}

.integration-text p {
    font-size: 1.1rem;
    color: #8892b0;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.integration-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
}

.integration-item i {
    color: #64ffda;
    font-size: 1.2rem;
}

.integration-item span {
    color: white;
    font-weight: 500;
}

.integration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.integration-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.integration-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.integration-node:hover {
    transform: scale(1.1);
}

.integration-node.central {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #64ffda 0%, #667eea 100%);
    z-index: 2;
}

.integration-node:nth-child(2) {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.integration-node:nth-child(3) {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.integration-node:nth-child(4) {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.integration-node:nth-child(5) {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.integration-node i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .token-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .token-features-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integration-features {
        grid-template-columns: 1fr;
    }
    
    .integration-diagram {
        width: 250px;
        height: 250px;
    }
    
    /* Roadmap responsive styles */
    .timeline {
        max-width: 100%;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        padding-left: 70px;
    }
    
    .timeline-marker {
        width: 60px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .milestone-grid {
        grid-template-columns: 1fr;
    }
    
    /* Team responsive styles */
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
    }
    
    .company-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    /* KPI responsive styles */
    .kpi-risk-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .token-detail-card {
        padding: 1.5rem;
    }
    
    .token-symbol-large {
        width: 80px;
        height: 80px;
        font-size: 1.2rem;
    }
    
    .token-title {
        font-size: 1.5rem;
    }
}


/* ICO Page Styles */
.ico-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    text-align: center;
}

.ico-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.ico-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.ico-subtitle {
    font-size: 1.2rem;
    color: #8892b0;
    margin-bottom: 3rem;
}

.ico-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.1) 0%, rgba(102, 126, 234, 0.1) 100%);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    min-width: 120px;
    text-align: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ICO Details */
.ico-details {
    padding: 100px 0;
    background: #0a0e1a;
}

.ico-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ico-info-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.ico-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.allocation-item,
.vesting-item,
.fund-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.allocation-item:last-child,
.vesting-item:last-child,
.fund-item:last-child {
    border-bottom: none;
}

.allocation-label,
.vesting-category,
.fund-category {
    color: #8892b0;
    font-weight: 500;
}

.allocation-value,
.vesting-schedule,
.fund-percentage {
    color: #64ffda;
    font-weight: 600;
}

.timeline-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-date {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 80px;
    text-align: center;
}

.timeline-event {
    color: white;
    font-weight: 500;
}

/* Investment Logic */
.investment-logic {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

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

.logic-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.logic-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.logic-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
}

.logic-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.logic-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.logic-points {
    list-style: none;
    padding: 0;
}

.logic-points li {
    color: #8892b0;
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.logic-points li:before {
    content: '→';
    color: #64ffda;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Participation Steps */
.participation {
    padding: 100px 0;
    background: #0a0e1a;
}

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

.step-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 1rem;
}

.step-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-requirements {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.requirement {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* ICO CTA */
.ico-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    text-align: center;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

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

.cta-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.cta-stat .stat-label {
    font-size: 0.9rem;
    color: #8892b0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Risk Disclaimer */
.risk-disclaimer {
    padding: 60px 0;
    background: rgba(255, 193, 7, 0.05);
    border-top: 1px solid rgba(255, 193, 7, 0.2);
    border-bottom: 1px solid rgba(255, 193, 7, 0.2);
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    color: #ffc107;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.disclaimer-text {
    color: #8892b0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Design for ICO Pages */
@media (max-width: 768px) {
    .ico-title {
        font-size: 2.5rem;
    }
    
    .ico-countdown {
        gap: 1rem;
    }
    
    .countdown-item {
        min-width: 100px;
        padding: 1rem;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .ico-info-grid {
        grid-template-columns: 1fr;
    }
    
    .logic-grid {
        grid-template-columns: 1fr;
    }
    
    .participation-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .ico-hero {
        padding: 100px 0 60px;
    }
    
    .ico-title {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .ico-info-card,
    .logic-card,
    .step-card {
        padding: 1.5rem;
    }
}


/* Tokenomics Page Styles */
.token-overview-detailed {
    padding: 100px 0;
    background: #0a0e1a;
}

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

.overview-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.overview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.overview-title {
    font-size: 1.1rem;
    color: #8892b0;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.overview-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.5rem;
}

.overview-label {
    font-size: 1rem;
    color: white;
    margin-bottom: 1rem;
}

.overview-description {
    font-size: 0.9rem;
    color: #8892b0;
    margin: 0;
}

/* Token Distribution */
.token-distribution {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.distribution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.distribution-chart {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chart-container {
    position: relative;
}

.distribution-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distribution-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 12px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.distribution-item:hover {
    border-color: rgba(100, 255, 218, 0.2);
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.08) 0%, rgba(102, 126, 234, 0.08) 100%);
}

.distribution-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.distribution-info {
    flex: 1;
}

.distribution-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0.5rem;
}

.distribution-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #64ffda;
    margin-bottom: 0.3rem;
}

.distribution-amount {
    font-size: 0.9rem;
    color: #8892b0;
    margin-bottom: 0.5rem;
}

.distribution-description {
    font-size: 0.8rem;
    color: #8892b0;
    margin: 0;
}

/* Token Utility */
.token-utility {
    padding: 100px 0;
    background: #0a0e1a;
}

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

.utility-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.utility-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.utility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.utility-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.utility-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.utility-features {
    list-style: none;
    padding: 0;
}

.utility-features li {
    color: #8892b0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
    position: relative;
    padding-left: 1.5rem;
}

.utility-features li:before {
    content: '✓';
    color: #64ffda;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.utility-features li:last-child {
    border-bottom: none;
}

/* Vesting Schedule */
.vesting-schedule {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.vesting-timeline {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
}

.timeline-header {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.timeline-period {
    color: #64ffda;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vesting-bars {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vesting-category {
    display: grid;
    grid-template-columns: 150px 1fr 150px;
    gap: 1rem;
    align-items: center;
}

.category-label {
    color: white;
    font-weight: 500;
    text-align: right;
}

.vesting-bar {
    height: 30px;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 15px;
    display: flex;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.vesting-progress {
    height: 100%;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.category-note {
    color: #8892b0;
    font-size: 0.8rem;
    text-align: left;
}

/* Governance Mechanism */
.governance-mechanism {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.governance-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.governance-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.governance-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.governance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.governance-icon i {
    font-size: 1.5rem;
    color: white;
}

.governance-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.governance-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.governance-features {
    list-style: none;
    padding: 0;
}

.governance-features li {
    color: #64ffda;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.governance-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #64ffda;
    font-weight: bold;
}

.governance-features li:last-child {
    border-bottom: none;
}

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

.model-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.model-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.model-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.model-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.revenue-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.revenue-item:last-child {
    border-bottom: none;
}

.revenue-source {
    color: #8892b0;
    font-weight: 500;
}

.revenue-rate {
    color: #64ffda;
    font-weight: 600;
}

.accrual-mechanism,
.deflation-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.accrual-mechanism:last-child,
.deflation-item:last-child {
    border-bottom: none;
}

.accrual-mechanism i,
.deflation-item i {
    color: #64ffda;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.accrual-mechanism h4,
.deflation-item h4 {
    color: white;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.accrual-mechanism p,
.deflation-item p {
    color: #8892b0;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive Design for Tokenomics */
@media (max-width: 768px) {
    .distribution-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .vesting-category {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }
    
    .category-label {
        text-align: center;
    }
    
    .category-note {
        text-align: center;
    }
    
    .timeline-header {
        grid-template-columns: repeat(3, 1fr);
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .utility-grid {
        grid-template-columns: 1fr;
    }
    
    .model-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-value {
        font-size: 2rem;
    }
    
    .timeline-header {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Advanced Animations and Interactions */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #64ffda 0%, #667eea 100%);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Loading Animation - Simplified */
body {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Enhanced Card Animations */
.value-card,
.token-card,
.feature-card,
.step-card,
.logic-card,
.ico-info-card,
.utility-card,
.overview-card,
.distribution-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered Animation */
.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }
.value-card:nth-child(4) { transition-delay: 0.4s; }

.token-card:nth-child(1) { transition-delay: 0.1s; }
.token-card:nth-child(2) { transition-delay: 0.2s; }
.token-card:nth-child(3) { transition-delay: 0.3s; }
.token-card:nth-child(4) { transition-delay: 0.4s; }

/* Hover Effects Enhancement */
.value-card:hover,
.token-card:hover,
.feature-card:hover,
.step-card:hover,
.logic-card:hover,
.ico-info-card:hover,
.utility-card:hover,
.overview-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(100, 255, 218, 0.15);
}

/* Button Animations */
.btn {
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    -webkit-transform: translateY(-2px);
    -moz-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    -o-transform: translateY(-2px);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(100, 255, 218, 0.3);
}

.btn:active {
    transform: translateY(0);
}

/* Pulse Animation for CTA Buttons */
.btn-primary {
    animation: pulse 2s infinite;
}

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

/* Tooltip Styles */
.tooltip {
    position: absolute;
    background: rgba(10, 14, 26, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    z-index: 1000;
    pointer-events: none;
    border: 1px solid rgba(100, 255, 218, 0.3);
    display: none;
}

/* Copy Success Message */
.copy-success {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 1000;
    animation: slideIn 0.3s ease, slideOut 0.3s ease 1.7s;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Parallax Effect */
.hero,
.page-header {
    position: relative;
    overflow: hidden;
}

.hero::before,
.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(100,255,218,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

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

/* Glowing Text Effect */
.gradient-text {
    background: linear-gradient(45deg, #64ffda, #667eea, #764ba2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Navbar Enhancement */
.navbar {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img:not(.lazy) {
    opacity: 1;
}

/* Form Enhancements */
.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #64ffda;
    box-shadow: 0 0 0 3px rgba(100, 255, 218, 0.1);
}

.form-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: #8892b0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    top: -0.5rem;
    left: 0.5rem;
    font-size: 0.8rem;
    color: #64ffda;
    background: #0a0e1a;
    padding: 0 0.5rem;
}

/* Micro-interactions */
.nav-link {
    position: relative;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #64ffda;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Social Links Animation */
.social-link {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) rotate(5deg);
    color: #64ffda;
}

/* Counter Animation Enhancement */
.stat-number,
.overview-value,
.countdown-number {
    font-variant-numeric: tabular-nums;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .hero::before,
    .page-header::before {
        display: none;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .tooltip {
        display: none !important;
    }
}

/* Dark/Light Theme Support */
.light-theme {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --accent: #667eea;
}

.light-theme .navbar {
    background: rgba(255, 255, 255, 0.95);
}

.light-theme .hero,
.light-theme .page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .scroll-progress {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .hero,
    .page-header {
        background: none !important;
    }
}

/* Technology page fallback styles for older browsers */
@media (max-width: 768px) {
    .tech-grid {
        display: block;
    }
    
    .tech-card {
        margin-bottom: 2rem;
    }
    
    .architecture-showcase {
        display: block;
    }
    
    .specs-grid {
        display: block;
    }
    
    .spec-card {
        margin-bottom: 2rem;
    }
}

/* Fallback for browsers that don't support CSS Grid */
@supports not (display: grid) {
    .tech-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .tech-card {
        flex: 1 1 350px;
        margin: 1rem;
    }
    
    .architecture-showcase {
        display: flex;
        flex-direction: column;
    }
    
    .specs-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .spec-card {
        flex: 1 1 300px;
        margin: 1rem;
    }
}



/* Roadmap Timeline Styles */
.roadmap-timeline {
    padding: 100px 0;
    background: #0a0e1a;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #64ffda 0%, #667eea 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 100px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    border: 4px solid #0a0e1a;
    z-index: 2;
    position: relative;
}

.timeline-item.active .timeline-dot {
    background: linear-gradient(135deg, #64ffda 0%, #667eea 100%);
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.5);
}

.timeline-line {
    width: 2px;
    height: calc(100% + 4rem);
    background: linear-gradient(180deg, #667eea 0%, rgba(102, 126, 234, 0.3) 100%);
    margin-top: 10px;
}

.timeline-item:last-child .timeline-line {
    display: none;
}

.timeline-content {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

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

.timeline-title {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.timeline-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-status.current {
    background: rgba(100, 255, 218, 0.2);
    color: #64ffda;
    border: 1px solid rgba(100, 255, 218, 0.3);
}

.timeline-status.upcoming {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.timeline-status.future {
    background: rgba(108, 117, 125, 0.2);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.3);
}

.milestone-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(100, 255, 218, 0.05);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 8px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.milestone-item:hover {
    background: rgba(100, 255, 218, 0.08);
    border-color: rgba(100, 255, 218, 0.2);
}

.milestone-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.milestone-item.completed i {
    color: #10b981;
}

.milestone-item.in-progress i {
    color: #f59e0b;
}

.milestone-item:not(.completed):not(.in-progress) i {
    color: #6b7280;
}

.milestone-item span {
    color: #8892b0;
    font-size: 0.9rem;
}

.milestone-item.completed span {
    color: #d1d5db;
    text-decoration: line-through;
}

/* KPI and Risk Management Section */
.kpi-risk-section {
    padding: 100px 0;
    background: #0a0e1a;
}

.kpi-risk-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.kpi-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.kpi-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.kpi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.kpi-icon i {
    font-size: 1.5rem;
    color: white;
}

.kpi-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.kpi-metrics {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.metric-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.metric-item:last-child {
    border-bottom: none;
}

.metric-label {
    color: #8892b0;
    font-size: 0.9rem;
}

.metric-value {
    color: #64ffda;
    font-weight: 600;
    font-size: 1rem;
}

.risk-items {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
}

.risk-item {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 8px;
    border-left: 3px solid #64ffda;
}

.risk-type {
    color: #f39c12;
    font-weight: 600;
    font-size: 0.9rem;
}

.risk-mitigation {
    color: #8892b0;
    font-size: 0.85rem;
    line-height: 1.4;
}


/* Team Page Styles */
.core-team {
    padding: 100px 0;
    background: #0a0e1a;
}

.team-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
}

.team-info {
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: #64ffda;
    margin-bottom: 1rem;
    font-weight: 500;
}

.team-bio {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Strategic Partners Section */
.strategic-partners {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.partners-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    border-color: rgba(100, 255, 218, 0.3);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.1);
}

.partner-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.partner-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.partner-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.service-tag {
    background: rgba(100, 255, 218, 0.1);
    color: #64ffda;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* Company Information Section */
.company-info {
    padding: 100px 0;
    background: #0a0e1a;
}

.company-details {
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.company-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.company-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.company-content h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

.company-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.fact-item:last-child {
    border-bottom: none;
}

.fact-label {
    color: #8892b0;
    font-weight: 500;
}

.fact-value {
    color: #64ffda;
    font-weight: 600;
}

/* KYC/AML Compliance Section */
.kyc-aml-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.compliance-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.compliance-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.compliance-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.compliance-icon i {
    font-size: 1.5rem;
    color: white;
}

.compliance-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.compliance-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.compliance-features {
    list-style: none;
    padding: 0;
}

.compliance-features li {
    color: #64ffda;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.compliance-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #64ffda;
    font-weight: bold;
}

.compliance-features li:last-child {
    border-bottom: none;
}


/* Regulatory Framework Section */
.regulatory-framework {
    padding: 100px 0;
    background: #0a0e1a;
}

.framework-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.framework-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.framework-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.framework-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.framework-content {
    flex: 1;
}

.framework-title {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.framework-description {
    color: #8892b0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.framework-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-item i {
    color: #10b981;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Company Legal Section */
.company-legal {
    padding: 100px 0;
    background: #0a0e1a;
}

.legal-info-grid {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: 2fr 1fr;
    -moz-grid-template-columns: 2fr 1fr;
    -ms-grid-template-columns: 2fr 1fr;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.legal-card {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

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

.legal-title {
    font-size: 1.5rem;
    color: white;
    margin: 0;
}

.legal-status {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.legal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    color: #8892b0;
    font-weight: 500;
}

.detail-value {
    color: #64ffda;
    font-weight: 600;
}

.compliance-status {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.compliance-status:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.status-title {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.status-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(100, 255, 218, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.status-item i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.status-item.completed i {
    color: #10b981;
}

.status-item.in-progress i {
    color: #f59e0b;
}

.status-item span {
    color: #8892b0;
    font-size: 0.9rem;
}

/* Risk Disclosure Section */
.risk-disclosure {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.02) 0%, rgba(118, 75, 162, 0.02) 100%);
}

.risk-categories {
    display: -webkit-grid;
    display: -moz-grid;
    display: -ms-grid;
    display: grid;
    -webkit-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -moz-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    -ms-grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.risk-category {
    background: linear-gradient(135deg, rgba(100, 255, 218, 0.05) 0%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 16px;
    padding: 2rem;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.risk-category:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.2);
    box-shadow: 0 20px 40px rgba(100, 255, 218, 0.05);
}

.risk-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
}

.risk-title i {
    color: #f59e0b;
    font-size: 1.2rem;
}

.risk-description {
    color: #8892b0;
    line-height: 1.6;
    margin: 0;
}

/* Legal Disclaimer Section */
.legal-disclaimer {
    padding: 100px 0;
    background: #0a0e1a;
}

.disclaimer-content {
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.disclaimer-text {
    color: #8892b0;
    line-height: 1.7;
}

.disclaimer-text p {
    margin-bottom: 1.5rem;
}

.disclaimer-text strong {
    color: #64ffda;
    font-weight: 600;
}

/* Compliance page fallback styles */
@media (max-width: 768px) {
    .compliance-grid {
        display: block;
    }
    
    .compliance-card {
        margin-bottom: 2rem;
    }
    
    .framework-grid {
        display: block;
    }
    
    .framework-card {
        margin-bottom: 2rem;
        flex-direction: column;
        text-align: center;
    }
    
    .legal-info-grid {
        display: block;
    }
    
    .legal-card {
        margin-bottom: 2rem;
    }
    
    .legal-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .risk-categories {
        display: block;
    }
    
    .risk-category {
        margin-bottom: 2rem;
    }
}

/* Fallback for browsers that don't support CSS Grid - Compliance specific */
@supports not (display: grid) {
    .compliance-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .compliance-card {
        flex: 1 1 350px;
        margin: 1rem;
    }
    
    .framework-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .framework-card {
        flex: 1 1 300px;
        margin: 1rem;
    }
    
    .legal-info-grid {
        display: flex;
        flex-wrap: wrap;
    }
    
    .legal-card {
        flex: 1 1 300px;
        margin: 1rem;
    }
}


/* Products page fallback styles */
@media (max-width: 768px) {
    .token-features-grid,
    .use-cases-grid,
    .features-grid {
        display: block;
    }

    .use-case-card,
    .feature-card {
        margin-bottom: 2rem;
    }
}

@supports not (display: grid) {
    .token-features-grid,
    .use-cases-grid,
    .features-grid {
        display: flex;
        flex-wrap: wrap;
    }

    .use-case-card,
    .feature-card {
        flex: 1 1 300px;
        margin: 1rem;
    }
}

