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

body {
    font-family: 'roboto', 'helvetica-w01-roman', Arial, Helvetica, sans-serif;
    background: #4C9540;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 500;
}

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

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(76, 149, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'wf_1c190ea6b91e4b5da26144381', 'evermore', 'helvetica-w01-bold', sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), -1px -1px 2px rgba(0, 0, 0, 0.3), 1px -1px 2px rgba(0, 0, 0, 0.3), -1px 1px 2px rgba(0, 0, 0, 0.3);
}

.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-size: 16px;
    font-family: 'helvetica-w01-roman', sans-serif;
    letter-spacing: 0.05em;
}

.nav-menu a:hover {
    opacity: 0.8;
}

.buy-now-btn {
    background: rgba(229, 235, 250, 0);
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
    padding: 10px 25px;
    border-radius: 60px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 10px;
    font-family: 'evermore', sans-serif;
    letter-spacing: 0.05em;
}

.buy-now-btn:hover {
    background: rgba(229, 235, 250, 0.3);
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 400px;
    background: url('pepler-small-1.png') no-repeat center center;
    background-size: 400px auto;
    opacity: 0.15;
    z-index: 0;
    transform: scaleX(-1);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    font-family: 'wf_1c190ea6b91e4b5da26144381', 'helvetica-w01-bold', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), -2px -2px 4px rgba(0, 0, 0, 0.3), 2px -2px 4px rgba(0, 0, 0, 0.3), -2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'roboto', sans-serif;
    font-weight: 500;
    max-width: 400px;
}

.pepler-name {
    font-weight: bold;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.discord {
    background: #7289da;
}

.social-link.dextools {
    background: #ff6b9d;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Contract Address */
.contract-address {
    margin-bottom: 30px;
}

.contract-address label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
    font-family: 'helvetica-w01-bold', sans-serif;
}

.contract-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contract-input-container input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: 'roboto', monospace;
    font-size: 14px;
    backdrop-filter: blur(10px);
}

.contract-input-container input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.copy-btn {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'helvetica-w01-roman', sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.copy-btn:active {
    transform: scale(0.98);
}

.exchange-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 500px;
}

.exchange-btn {
    background: rgba(229, 235, 250, 0);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    padding: 12px 20px;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 400;
    font-family: 'evermore', 'helvetica-w01-roman', sans-serif;
    letter-spacing: 0.05em;
}

.exchange-btn:hover {
    background: rgba(229, 235, 250, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pepler-hero-img {
    width: 500px;
    height: 500px;
    object-fit: contain;
    border-radius: 20px;
    transform: scaleX(1);
}

.pepe-placeholder {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.pepe-placeholder p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.7;
}

/* Section Spacer */
.section-spacer {
    height: 20px;
    background: linear-gradient(135deg, #5a8a4a, #6b9d5b);
    opacity: 0.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
    font-family: 'evermore', 'helvetica-w01-bold', sans-serif;
    letter-spacing: 0.05em;
    text-align: right;
}

.about p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.7;
    font-family: 'roboto', sans-serif;
    font-weight: 500;
}

.pepler-section-img {
    width: 400px;
    height: 600px;
    object-fit: contain;
    border-radius: 15px;
    transform: scaleX();
    margin-left: 40px;
}

/* Tokenomics Section */
.tokenomics {
    padding: 80px 0;
    position: relative;
}

.tokenomics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('pepler_wehrmacht.png') no-repeat center center;
    background-size: cover;
    opacity: 0.3;
    z-index: 1;
}

.tokenomics .container {
    position: relative;
    z-index: 2;
}

.section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.section-icon {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.tokenomics h2,
.roadmap h2 {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: white;
    font-family: 'evermore', 'helvetica-w01-bold', sans-serif;
    letter-spacing: 0.05em;
}

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

.tokenomics-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.tokenomics-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.tokenomics-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
    font-family: 'helvetica-w01-bold', sans-serif;
}

.tokenomics-card p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'helvetica-w01-roman', sans-serif;
}

/* Roadmap Section */
.roadmap {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.05);
}

.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.roadmap-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.roadmap-phase {
    background: #157e01;
    color: #FFFFFF;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'evermore', sans-serif;
    letter-spacing: 0.05em;
}

.roadmap-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    font-family: 'helvetica-w01-bold', sans-serif;
}

.roadmap-item ul {
    list-style: none;
}

.roadmap-item li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    opacity: 0.9;
    font-family: 'roboto', sans-serif;
    font-weight: 500;
}

.roadmap-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
}

/* Footer */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer p {
    opacity: 0.7;
    font-size: 14px;
    font-family: 'roboto', sans-serif;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about h2,
    .tokenomics h2,
    .roadmap h2 {
        font-size: 2rem;
    }

    .exchange-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pepe-placeholder {
        width: 250px;
        height: 250px;
        font-size: 60px;
    }

    .pepler-hero-img {
        width: 250px;
        height: 250px;
    }

    .pepler-section-img {
        width: 200px;
        height: 200px;
    }

    .section-icon {
        width: 60px;
        height: 60px;
    }

    /* Center tokenomics and roadmap grids on narrow screens */
    .tokenomics-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .roadmap-timeline {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        justify-content: center;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .exchange-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .container {
        padding: 0 15px;
    }

    /* Ensure single column layout on very small screens */
    .tokenomics-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .roadmap-timeline {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .tokenomics-card,
    .roadmap-item {
        margin: 0 auto;
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Fade-in animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section-specific fade delays */
.hero.fade-in {
    animation-delay: 0s;
}

.about.fade-in {
    animation-delay: 0.2s;
}

.tokenomics.fade-in {
    animation-delay: 0.4s;
}

.roadmap.fade-in {
    animation-delay: 0.6s;
}

.footer.fade-in {
    animation-delay: 0.8s;
}