:root {
    --primary-color: #1a1a1a;
    --secondary-color: #57ba07;
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --hover-color: #4a9e06;
    --button-color: #57ba07;
    --buy-text-color: #ffffff;
    --buy-button-color: #57ba07;
    --buy-text-hover-color: #000000;
    --buy-button-hover-color: #4a9e06;
}

@font-face {
    font-family: 'Edo SZ';
    src: url('../fonts/edosz.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Comfortaa';
    src: url('../fonts/Comfortaa-Regular.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    font-family: 'Comfortaa', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Edo SZ', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-color);
}

section:nth-child(even) {
    background: #0d0d0d;
}

section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

section h2::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.9);
    padding: 15px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(87, 186, 7, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    font-size: 34px;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    font-family: 'Edo SZ', sans-serif;
    text-shadow: 0 0 10px rgba(87, 186, 7, 0.3);
    transition: all 0.3s ease;
}

.navbar-menu {
    display: flex;
    list-style-type: none;
    align-items: center;
    height: 100%;
}

.navbar-menu li {
    margin-left: 30px;
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.navbar-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.navbar-menu a:hover {
    color: var(--secondary-color);
}

.navbar-menu a:hover::after {
    width: 100%;
}

.navbar-menu li .buy-button,
.buy-button {
    background-color: var(--buy-button-color);
    color: var(--buy-text-color);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(87, 186, 7, 0.3);
    display: inline-block;
}

.navbar-menu li .buy-button:hover {
    background-color: var(--buy-button-hover-color);
    color: var(--buy-text-hover-color);
    transform: translateY(-3px);
}

#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-color) 0%, transparent 100%);
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.pepe-image {
    max-width: 100%;
    height: auto;
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.contract-address {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 5px;
    font-family: monospace;
    cursor: pointer;
    margin-bottom: 20px;
    border: 1px solid rgba(87, 186, 7, 0.3);
    transition: all 0.3s ease;
    text-align: center;
}

.contract-address:hover,
.social-circle:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contract-address:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(87, 186, 7, 0.5);
}

.token-performance,
.hero-buttons,
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.token-performance {
    margin-top: 20px;
}

.hero-buttons {
    margin-top: 30px;
    gap: 25px;
}

.social-icons {
    margin: 20px 0 30px;
}

.token-performance a,
.hero-button {
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 5px;
}

.token-performance a {
    background-color: var(--primary-color);
    color: var(--text-color);
    padding: 12px 15px;
    flex-grow: 1;
    margin: 0 5px;
    border: 1px solid rgba(87, 186, 7, 0.2);
}

.token-performance a:hover,
.buy-where:hover,
.chart-button:hover {
    transform: translateY(-3px);
}

.token-performance a:hover {
    background-color: var(--hover-color);
    border-color: rgba(87, 186, 7, 0.5);
}

.hero-button {
    padding: 0;
    height: 50px;
    font-weight: bold;
    width: 160px;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.buy-where {
    background-color: var(--secondary-color);
    color: #000;
    box-shadow: 0 4px 15px rgba(87, 186, 7, 0.3);
}

.buy-where:hover {
    background-color: #4a9e06;
    box-shadow: 0 6px 20px rgba(87, 186, 7, 0.4);
}

.chart-button {
    background-color: #1a1a1c;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.chart-button:hover {
    background-color: #252527;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.divider-line {
    height: 1px;
    width: 80px;
    background: rgba(255, 255, 255, 0.1);
}

.divider-text {
    margin: 0 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.social-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.social-circle:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

footer {
    background-color: #1a1a1c;
    padding: 50px 0 30px;
    position: relative;
}

.footer-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url('../images/pattern.jpg');
    background-size: 100px;
    background-repeat: repeat;
    animation: diagonalScroll 30s linear infinite;
    pointer-events: none;
}

.footer-columns {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.footer-column {
    min-width: 150px;
}

.footer-column h4 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes diagonalScroll {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }

    .footer-columns {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-title {
        font-size: 48px;
    }

    #hero {
        padding-top: 70px;
    }

    .hero-content {
        margin-top: 40px;
    }

    .contract-address {
        font-size: 12px;
        word-break: break-all;
        padding: 8px;
    }

    .token-performance {
        flex-wrap: wrap;
    }

    .token-performance a {
        margin: 5px;
        padding: 8px 10px;
        width: calc(50% - 10px);
        flex-grow: 0;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .hero-button {
        min-width: 120px;
        flex-grow: 1;
    }

    .footer-columns {
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .navbar-menu {
        display: none;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 15px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .hero-button {
        width: 100%;
    }
}