/* Base Styles */
:root {
    --primary-color: #ffcc00;
    --secondary-color: #ff9500;
    --accent-color: #ff4f00;
    --dark-color: #1a1a1a;
    --light-color: #ffffff;
    --gray-color: #f4f4f4;
    --text-color: #333333;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    background-color: var(--gray-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 15px;
    line-height: 1.3;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.secondary-btn {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.secondary-btn:hover {
    background: rgba(255, 204, 0, 0.1);
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

nav ul li a:hover:after {
    width: 100%;
}

.buy-btn {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    padding: 8px 15px;
    border-radius: var(--border-radius);
    color: var(--dark-color) !important;
    font-weight: 600;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 204, 0, 0.3);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: var(--light-color);
    padding: 160px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/pattern.png');
    opacity: 0.1;
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--light-color);
}

.hero-content h2:after {
    display: none;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: center;
    max-width: 500px;
}

/* About Section */
.about {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature {
    text-align: center;
    padding: 20px;
    border-radius: var(--border-radius);
    background-color: var(--gray-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Tokenomics Section */
.tokenomics {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.tokenomics-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.token-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.token-card {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.token-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.token-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
}

.token-card p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.distribution {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.distribution h3 {
    text-align: center;
    margin-bottom: 30px;
}

.distribution-chart {
    display: flex;
    gap: 30px;
    align-items: center;
}

.chart-container {
    flex: 1;
    position: relative;
}

.chart-placeholder {
    width: 100%;
    padding-bottom: 100%;
    background: conic-gradient(
        var(--primary-color) 0% 40%,
        var(--secondary-color) 40% 60%,
        var(--accent-color) 60% 75%,
        #ff8800 75% 85%,
        #ff6600 85% 100%
    );
    border-radius: 50%;
}

.chart-legend {
    flex: 1;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 10px;
}

.legend-color.liquidity {
    background-color: var(--primary-color);
}

.legend-color.marketing {
    background-color: var(--secondary-color);
}

.legend-color.development {
    background-color: var(--accent-color);
}

.legend-color.team {
    background-color: #ff8800;
}

.legend-color.community {
    background-color: #ff6600;
}

/* Roadmap Section */
.roadmap {
    background-color: var(--light-color);
}

.roadmap-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-container:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}

.roadmap-item {
    display: flex;
    position: relative;
    margin-bottom: 50px;
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--light-color), 0 0 0 8px rgba(255, 204, 0, 0.2);
}

.roadmap-icon i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.roadmap-content {
    width: 45%;
    padding: 20px;
    background: var(--gray-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.roadmap-item:nth-child(odd) .roadmap-content {
    margin-left: auto;
}

.roadmap-content h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

.roadmap-content ul {
    padding-left: 20px;
    list-style: disc;
}

.roadmap-content ul li {
    margin-bottom: 8px;
}

/* News Section */
.news {
    background-color: var(--light-color);
    padding: 80px 0;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: var(--gray-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.news-content p {
    margin-bottom: 15px;
    color: var(--text-color);
    opacity: 0.8;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.read-more:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.read-more:hover:after {
    width: 100%;
}

.news-links {
    margin-top: 15px;
    padding: 10px;
    background-color: var(--gray-color);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.news-links a {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.news-links a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2a2a2a 100%);
    color: var(--light-color);
    text-align: center;
}

.community h2:after {
    background-color: var(--light-color);
}

.community p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--border-radius);
    width: 150px;
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.social-link span {
    color: var(--light-color);
    font-weight: 500;
}

/* Buy Section */
.buy {
    background-color: var(--gray-color);
}

.buy-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.step {
    background: var(--light-color);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 15px;
}

.contract-address {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contract-address h3 {
    margin-bottom: 15px;
}

.address-box {
    display: flex;
    align-items: center;
    background: var(--light-color);
    padding: 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.address {
    flex: 1;
    font-family: monospace;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
}

.copy-btn:hover {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.pumpfun-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
}

.pumpfun-logo {
    width: 24px;
    height: 24px;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.footer-links h4, .footer-social h4 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--light-color);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-disclaimer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.disclaimer-text {
    font-size: 0.8rem;
    opacity: 0.7;
    max-width: 800px;
    margin: 10px auto 0;
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .news-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .news-container {
        grid-template-columns: 1fr;
    }
    
    .token-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .buy-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .distribution-chart {
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--light-color);
        transition: 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .token-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .roadmap-container:before {
        left: 30px;
    }
    
    .roadmap-item {
        flex-direction: column;
    }
    
    .roadmap-icon {
        left: 30px;
        transform: none;
    }
    
    .roadmap-content {
        width: 100%;
        padding-left: 70px;
    }
    
    .roadmap-item:nth-child(odd) .roadmap-content {
        margin-left: 0;
    }
}

@media screen and (max-width: 576px) {
    .news-image img {
        height: 150px;
    }
    
    .buy-steps {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
    }
}
