/* Base Styles */
body { 
    margin: 0; 
    font-family: 'Arial', sans-serif; 
    background-color: #000000; 
    color: #ffffff; 
    line-height: 1.6; 
    padding-top: 50px; 
    overflow-x: hidden; 
}

/* Navigation */
.topnav { 
    overflow: hidden; 
    background-color: #1a1a1a; 
    position: fixed; 
    width: 100%; 
    top: 0; 
    z-index: 1000; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); 
    height: 50px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.topnav a { 
    color: white; 
    padding: 10px 16px; 
    text-decoration: none; 
    font-size: 17px; 
    display: block; 
}

.topnav a:hover { 
    background-color: #ddd; 
    color: black; 
}

.active { 
    background-color: #1a1a1a; 
    color: white; 
}

.logo-container { 
    display: flex; 
    align-items: center; 
    margin-top: -5px; 
}

.bull-image { 
    width: 45px; 
    height: 45px; 
    margin-right: -5px; 
    border-radius: 50%; 
}

.logo-text { 
    color: #ffffff; 
    font-size: 1rem; 
    font-weight: bold; 
    margin-top: -5px; 
}

.icon { 
    font-size: 24px; 
    padding: 13px 16px; 
}

/* Side Menu */
.menu { 
    position: fixed; 
    top: 50px; 
    right: -50%; 
    width: 50%; 
    max-width: 300px; 
    height: calc(100% - 50px); 
    background-color: rgba(26, 26, 26, 0.7); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    display: flex; 
    flex-direction: column; 
    transition: right 0.3s ease; 
    z-index: 1001; 
    overflow: hidden; 
    box-sizing: border-box; 
}

.menu.active { 
    right: 0; 
}

.menu a { 
    padding: 15px 20px; 
    text-align: left; 
    font-size: 18px; 
    color: #ffffff; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    text-decoration: none; 
}

.menu a:hover { 
    background-color: rgba(255, 255, 255, 0.2); 
    color: #ffffff; 
}

.menu-headline { 
    padding: 15px 20px; 
    margin: 0; 
    font-size: 20px; 
    color: #ffffff; 
    text-align: center; 
    position: relative; 
    cursor: pointer;
}

.menu-headline::after { 
    content: ''; 
    position: absolute; 
    left: 50%; 
    transform: translateX(-50%); 
    bottom: 5px; 
    width: 60px; 
    height: 3px; 
    background-color: #00ff00; 
    border-radius: 5px; 
}

.menu-headline:nth-of-type(2)::after { 
    background-color: #000000; 
}

.menu-icon { 
    width: 24px; 
    height: 24px; 
    filter: brightness(0) saturate(100%) invert(89%) sepia(14%) saturate(614%) hue-rotate(60deg) brightness(99%) contrast(92%); 
}

/* Dropdown Styles */
.dropdown-content {
    display: none;
    background-color: rgba(0, 0, 0, 0.2);
}

.dropdown-content.active {
    display: block;
}

.dropdown-content a {
    padding-left: 40px !important;
}

/* Backdrop */
.menu-backdrop { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1000; 
    display: none; 
}

.menu-backdrop.active { 
    display: block; 
}

/* Content Sections */
.agent-card { 
    width: 100%; 
    overflow: hidden; 
}

.agent-card-image { 
    width: 100%; 
    height: auto; 
    display: block; 
}

.section, .hero { 
    padding: 2rem; 
    text-align: center; 
}

.hero { 
    background-color: #000000; 
    color: #ffffff; 
    padding-top: 2rem; 
    min-height: 100vh; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: flex-start; 
    position: relative; 
    width: 100%; 
    box-sizing: border-box; 
}

h1 { 
    font-size: 3.5rem; 
    margin-bottom: 1rem; 
}

h2 { 
    font-size: 2.5rem; 
    color: #ffffff; 
}

p { 
    font-size: 1.2rem; 
    max-width: 800px; 
    margin: 0 auto 2rem; 
}

/* Buttons */
.cta, button { 
    background-color: #ffffff; 
    color: #000000; 
    padding: 1.2rem 2.5rem; 
    border: none; 
    border-radius: 8px; 
    cursor: pointer; 
    font-size: 1.2rem; 
    transition: background-color 0.3s; 
}

.cta:hover, button:hover { 
    background-color: #cccccc; 
}

/* Social Links */
.social-links a { 
    margin: 0 1.5rem; 
    color: #ffffff; 
    text-decoration: none; 
    font-size: 1.2rem; 
    display: inline-flex; 
    align-items: center; 
    gap: 16px; 
}

.social-links a:hover { 
    color: #cccccc; 
}

.social-icon { 
    width: 24px; 
    height: 24px; 
    fill: currentColor; 
    transition: fill 0.3s ease; 
}

/* Footer */
footer { 
    background-color: #000000; 
    color: #808080; 
    padding: 1.5rem; 
    text-align: center; 
    font-size: 0.9rem; 
}

/* Chart */
.chart-wrapper { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    width: 100%; 
    max-width: 800px; 
    margin: 0 auto; 
    overflow: hidden; 
}

#dexscreener-embed { 
    position: relative; 
    width: 100%; 
    padding-bottom: 125%; 
}

@media (min-width: 1400px) { 
    #dexscreener-embed { 
        padding-bottom: 75%; 
    } 
}

#dexscreener-embed iframe { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100% !important; 
    height: 100% !important; 
    border: 0; 
    border-radius: 12px; 
    margin: 0 !important; 
    padding: 0 !important; 
    float: none !important; 
    overflow: hidden; 
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: rgba(26, 26, 26, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-form button[type="submit"] {
    width: 100%;
    margin-top: 1rem;
}