body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth; /* Enable smooth scrolling for the whole page */
}

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

.logo {
    margin: 20px auto;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo svg {
    width: 100%;
    height: auto;
}

.title {
    font-size: 28px;
    letter-spacing: 6px;
    font-weight: normal;
    margin: 20px 0 15px; /* Reduced bottom margin from 20px to 15px */
}

.navigation {
    display: flex;
    justify-content: center;
    margin: 15px 0; /* Reduced from 30px to 15px */
}

.nav-item {
    margin: 0 20px;
    text-transform: uppercase;
    font-size: 14px;
    color: rgba(150, 150, 150, 0.8); /* Lighter grey with transparency */
    text-decoration: none;
    padding: 5px 10px;
    transition: color 0.3s, font-weight 0.3s;
    cursor: pointer;
}

.nav-item:hover {
    color: rgba(100, 100, 100, 0.9);
}

.nav-item.active {
    color: #333; /* Darker color for active item */
    font-weight: 500; /* Making active item slightly bolder, but not too bold */
}

.section {
    margin: 45px 0; /* Reduced from 60px to 45px */
    scroll-margin-top: 20px; /* Provides some space when scrolling to sections */
}

.section-title {
    font-size: 22px;
    letter-spacing: 3px;
    color: #555;
    margin-bottom: 25px; /* Increased from 15px to 25px */
}

.divider {
    width: 800px;
    max-width: 100%;
    height: 1px;
    background-color: #ddd;
    margin: 0 auto 40px auto;
}

.text-block {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #555;
}

.product-boxes {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    flex-wrap: wrap;
}

.product-box {
    flex: 0 0 48%;
    height: 140px;
    background-color: #f5f5f5;
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: none;
    transition: transform 0.3s ease;
}

.product-box:hover {
    transform: translateY(-3px);
}

.product-box svg {
    max-width: 80%;
    max-height: 80%;
}

.coming-soon {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    font-weight: 500;
    opacity: 0.6;
    pointer-events: none;
}

.token-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px auto;
    max-width: 800px;
}

.token-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 30px;
    margin-bottom: 30px;
}

.token-detail {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    border: none;
    transition: transform 0.3s ease;
}

.token-detail:hover {
    transform: translateY(-3px);
}

.token-detail.small {
    flex: 1;
}

.token-detail.full {
    width: 100%;
}

.detail-value {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    word-break: break-all;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.detail-value strong {
    margin-right: 0;
}

.detail-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 15px;
    font-weight: 500;
}

.exchange-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    width: 100%;
}

.exchange-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.exchange-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.contract-address {
    margin-bottom: 12px;
    text-align: center;
}

.address-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.copy-icon {
    cursor: pointer;
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.copy-icon:hover {
    opacity: 1;
}

.copy-container {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
}

.copy-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.copy-btn:hover {
    opacity: 1;
}

.copy-btn svg {
    width: 16px;
    height: 16px;
}

.copy-msg {
    display: inline-block;
    margin-left: 8px;
    font-size: 12px;
    color: #4CAF50;
    opacity: 0;
    transition: opacity 0.3s ease;
    vertical-align: middle;
}

.coingecko-icon {
    width: 20px;
    height: 20px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.coingecko-icon:hover {
    opacity: 1;
}

.copy-tooltip {
    position: fixed;
    background-color: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 14px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 100;
}

.loading {
    color: #888;
    font-size: 13px;
    font-style: italic;
}

.contact-cta {
    text-align: center;
    margin: 30px auto;
    max-width: 500px;
}

.contact-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.email-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 1px solid #ddd;
}

.email-button:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* Social Links Styles */
.social-links {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icon {
    width: 24px;
    height: 24px;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    opacity: 1;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }
    
    /* Keep navigation horizontal but adjust spacing for mobile */
    .navigation {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .nav-item {
        margin: 0 8px; /* Further reduce horizontal margins on mobile */
        padding: 5px;
        font-size: 12px; /* Slightly smaller font for better fit */
    }
    
    .product-box {
        flex: 0 0 100%;
        margin-bottom: 15px;
    }
    
    .token-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .token-detail {
        padding: 20px 15px;
    }
    
    .divider {
        width: 100%;
    }
    
    .detail-value {
        font-size: 13px;
    }
    
    .social-links {
        top: 10px;
        right: 10px;
        gap: 10px;
    }
    
    .social-icon {
        width: 20px;
        height: 20px;
    }
    
    .exchange-links {
        gap: 15px;
    }
    
    .exchange-icon {
        width: 20px;
        height: 20px;
    }
}
