/* Base Styles */
:root {
    --primary-color: #6a11cb;
    --secondary-color: #2575fc;
    --accent-color: #00e5ff;
    --dark-bg: #0a0a1a;
    --darker-bg: #050510;
    --text-light: #ffffff;
    --text-dim: #b3b3cc;
    --card-bg: rgba(26, 26, 46, 0.8);
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1600px; /* Increased from 1200px to make the site wider */
    margin: 0 auto;
    padding: 0 30px; /* Increased padding for better spacing */
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: 4rem; /* Increased from 3.5rem */
    font-weight: 800;
}

h2 {
    font-size: 2.8rem; /* Increased from 2.5rem */
    text-align: center;
    margin-bottom: 50px; /* Increased from 40px */
}

h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

p {
    margin-bottom: 20px;
    font-size: 1.1rem; /* Slightly increased font size */
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

section {
    padding: 120px 0; /* Increased from 100px */
    position: relative;
}

/* Background Animation */
.stars, .twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.stars {
    background: #000 url('images/stars.png') repeat top center;
    z-index: -2;
}

.twinkling {
    background: transparent url('images/twinkling.png') repeat top center;
    animation: move-twink-back 200s linear infinite;
    opacity: 0.3;
}

@keyframes move-twink-back {
    from {background-position: 0 0;}
    to {background-position: -10000px 5000px;}
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 15px 0;
    transition: all 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px; /* Increased from 50px */
    margin-right: 15px; /* Increased from 10px */
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 40px; /* Increased from 30px */
}

nav ul li a {
    color: var(--text-light);
    font-weight: 600;
    position: relative;
    padding: 5px 0;
    font-size: 1.1rem; /* Added font size */
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--gradient-primary);
    color: white;
    padding: 12px 25px; /* Increased from 10px 20px */
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: radial-gradient(circle at center, rgba(106, 17, 203, 0.2) 0%, rgba(10, 10, 26, 0) 70%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 60px; /* Increased from 40px */
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
    width: 90%; /* Added to make image larger */
}

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

.token-symbol {
    color: var(--accent-color);
}

.hero h2 {
    font-size: 2rem; /* Increased from 1.8rem */
    margin-bottom: 25px; /* Increased from 20px */
    text-align: left;
}

.hero p {
    font-size: 1.3rem; /* Increased from 1.2rem */
    color: var(--text-dim);
    margin-bottom: 50px; /* Increased from 40px */
    max-width: 700px; /* Increased from 600px */
}

.hero-buttons {
    display: flex;
    gap: 25px; /* Increased from 20px */
}

.btn {
    display: inline-block;
    padding: 15px 35px; /* Increased from 12px 30px */
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 1.1rem; /* Added font size */
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--text-light);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
    color: white;
}

.btn-secondary:hover {
    background: var(--gradient-primary);
}

.btn-large {
    padding: 18px 45px; /* Increased from 15px 40px */
    font-size: 1.3rem; /* Increased from 1.2rem */
}

/* About Section */
.about {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px; /* Increased from 40px */
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    width: 90%; /* Added to make image larger */
}

/* Why Invest Section */
.why-invest {
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.why-invest::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 17, 203, 0.1) 0%, rgba(10, 10, 26, 0) 70%);
    z-index: -1;
}

.invest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased from 250px */
    gap: 40px; /* Increased from 30px */
}

.invest-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px; /* Increased from 30px */
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 17, 203, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%; /* Added to make cards equal height */
}

.invest-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.3);
    border-color: rgba(106, 17, 203, 0.5);
}

.card-icon {
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px; /* Increased from 20px */
}

.invest-card h3 {
    font-size: 1.4rem; /* Increased from 1.3rem */
    margin-bottom: 20px; /* Increased from 15px */
}

/* Icons */
.icon-concept, .icon-design, .icon-global, .icon-viral {
    width: 35px; /* Increased from 30px */
    height: 35px; /* Increased from 30px */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.icon-concept {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>');
}

.icon-design {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-.28 0-.5.22-.5.5 0 .12.05.23.13.33.41.47.64 1.06.64 1.67A2.5 2.5 0 0 1 12 22zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c.28 0 .5-.22.5-.5a.54.54 0 0 0-.14-.35c-.41-.46-.63-1.05-.63-1.65a2.5 2.5 0 0 1 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z"/></svg>');
}

.icon-global {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z"/></svg>');
}

.icon-viral {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M17.66 7.93L12 2.27 6.34 7.93c-3.12 3.12-3.12 8.19 0 11.31C7.9 20.8 9.95 21.58 12 21.58c2.05 0 4.1-.78 5.66-2.34 3.12-3.12 3.12-8.19 0-11.31zM12 19.59c-1.6 0-3.11-.62-4.24-1.76C6.62 16.69 6 15.19 6 13.59s.62-3.11 1.76-4.24L12 5.1v14.49z"/></svg>');
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(to top, var(--dark-bg), var(--darker-bg));
}

.tokenomics-content {
    display: flex;
    align-items: center;
    gap: 60px; /* Increased from 40px */
}

.tokenomics-text {
    flex: 1;
}

.tokenomics-text ul {
    list-style: none;
    margin: 40px 0; /* Increased from 30px */
}

.tokenomics-text ul li {
    margin-bottom: 20px; /* Increased from 15px */
    display: flex;
    align-items: center;
}

.tokenomics-text ul li span {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    border-radius: 50%;
    text-align: center;
    line-height: 70px; /* Increased from 60px */
    font-weight: 700;
    font-size: 1.3rem; /* Increased from 1.2rem */
    margin-right: 20px; /* Increased from 15px */
}

.tokenomics-highlight {
    font-size: 1.3rem; /* Increased from 1.2rem */
    font-weight: 600;
    color: var(--accent-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 20px; /* Increased from 15px */
}

.tokenomics-chart {
    flex: 1;
}

.chart {
    position: relative;
    width: 350px; /* Increased from 300px */
    height: 350px; /* Increased from 300px */
    border-radius: 50%;
    background: conic-gradient(
        var(--primary-color) 0% 50%,
        var(--secondary-color) 50% 80%,
        var(--accent-color) 80% 100%
    );
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.chart::before {
    content: '';
    position: absolute;
    width: 175px; /* Increased from 150px */
    height: 175px; /* Increased from 150px */
    background: var(--darker-bg);
    border-radius: 50%;
}

.chart-segment {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.3rem; /* Increased from 1.2rem */
}

.chart-segment.liquidity {
    top: 30%;
    left: 70%;
}

.chart-segment.marketing {
    top: 60%;
    left: 30%;
}

.chart-segment.team {
    top: 20%;
    left: 40%;
}

.chart-legend {
    margin-top: 50px; /* Increased from 40px */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Increased from 15px */
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem; /* Added font size */
}

.legend-color {
    width: 25px; /* Increased from 20px */
    height: 25px; /* Increased from 20px */
    border-radius: 5px;
    margin-right: 15px; /* Increased from 10px */
}

.legend-color.liquidity {
    background: var(--primary-color);
}

.legend-color.marketing {
    background: var(--secondary-color);
}

.legend-color.team {
    background: var(--accent-color);
}

/* Differentials Section */
.differentials {
    background: var(--darker-bg);
    position: relative;
}

.table-container {
    overflow-x: auto;
    margin-top: 50px; /* Increased from 40px */
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem; /* Added font size */
}

.comparison-table th, .comparison-table td {
    padding: 20px 25px; /* Increased from 15px 20px */
    text-align: left;
}

.comparison-table th {
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
}

.comparison-table tr:nth-child(odd) {
    background: rgba(26, 26, 46, 0.8);
}

.comparison-table tr:nth-child(even) {
    background: rgba(36, 36, 66, 0.8);
}

.comparison-table td:nth-child(2) {
    color: var(--accent-color);
    font-weight: 600;
}

/* Takeoff Section */
.takeoff {
    background: linear-gradient(to bottom, var(--dark-bg), var(--darker-bg));
    position: relative;
}

.takeoff::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png') repeat;
    opacity: 0.2;
    z-index: -1;
}

.takeoff-content {
    max-width: 1000px; /* Increased from 800px */
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    padding: 50px; /* Increased from 40px */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(106, 17, 203, 0.2);
}

.takeoff-text ol {
    margin-left: 25px; /* Increased from 20px */
    margin-top: 25px; /* Increased from 20px */
}

.takeoff-text ol li {
    margin-bottom: 20px; /* Increased from 15px */
    font-size: 1.1rem; /* Added font size */
}

.takeoff-text ol li strong {
    color: var(--accent-color);
}

/* Participate Section */
.participate {
    background: var(--darker-bg);
    position: relative;
}

.participate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(106, 17, 203, 0.1) 0%, rgba(10, 10, 26, 0) 70%);
    z-index: -1;
}

.participate-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased from 250px */
    gap: 40px; /* Increased from 30px */
    margin-bottom: 70px; /* Increased from 60px */
}

.step {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 40px; /* Increased from 30px */
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(106, 17, 203, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    height: 100%; /* Added to make steps equal height */
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(106, 17, 203, 0.3);
    border-color: rgba(106, 17, 203, 0.5);
}

.step-number {
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px; /* Increased from 0 auto 20px */
    font-size: 1.6rem; /* Increased from 1.5rem */
    font-weight: 700;
    color: white;
}

.step h3 {
    font-size: 1.3rem; /* Increased from 1.2rem */
    margin-bottom: 20px; /* Increased from 15px */
}

.cta-container {
    text-align: center;
    margin-top: 70px; /* Increased from 60px */
}

.cta-disclaimer {
    margin-top: 25px; /* Increased from 20px */
    color: var(--text-dim);
    font-size: 1rem; /* Increased from 0.9rem */
}

/* Footer */
footer {
    background: var(--darker-bg);
    padding: 100px 0 40px; /* Increased from 80px 0 30px */
    border-top: 1px solid rgba(106, 17, 203, 0.2);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 70px; /* Increased from 60px */
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    height: 100px; /* Increased from 80px */
    margin-bottom: 25px; /* Increased from 20px */
}

.footer-logo p {
    font-size: 1.3rem; /* Increased from 1.2rem */
    font-weight: 700;
    margin-bottom: 15px; /* Increased from 10px */
}

.footer-logo .tagline {
    color: var(--text-dim);
    font-size: 1.1rem; /* Increased from 1rem */
    font-weight: 400;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: space-around;
}

.footer-column h4 {
    font-size: 1.3rem; /* Increased from 1.2rem */
    margin-bottom: 25px; /* Increased from 20px */
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px; /* Increased from 10px */
}

.footer-column ul li a {
    color: var(--text-dim);
    font-size: 1.1rem; /* Added font size */
}

.footer-column ul li a:hover {
    color: var(--text-light);
}

.social-icons {
    display: flex;
    gap: 20px; /* Increased from 15px */
}

.social-icon {
    width: 50px; /* Increased from 40px */
    height: 50px; /* Increased from 40px */
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 40px; /* Increased from 30px */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
    font-size: 1rem; /* Increased from 0.9rem */
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 90%;
        padding: 0 20px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content, .tokenomics-content {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 40px;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 10px 15px;
    }
    
    .hero {
        padding-top: 150px;
    }
    
    .chart {
        width: 280px;
        height: 280px;
    }
    
    .chart::before {
        width: 140px;
        height: 140px;
    }
}
