body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Graph background */
#graph-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.3;
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo-img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffa726;
}

.nav-links a.active {
    color: #ffa726;
}

.btn-explorer {
    background: #662e9b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 600;
}

/* Content */
.content-wrapper {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.85);
    margin: 20px;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.1);
    text-align: center;
}

.logoHome {
    max-width: 420px;
    margin: 0;
    padding: 0;
}

@media screen and (max-width: 768px) {
    .logoHome {
        max-width: 280px;
    }
}

@media screen and (max-width: 480px) {
    .logoHome {
        max-width: 200px;
    }
}

/* Header */
.header {
    text-align: center;
    padding: 4rem 2rem;
}

.title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Features */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.feature-card {
    padding: 2rem;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

/* Footer */
footer {
    margin-top: auto;
    text-align: center;
    padding: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    z-index: 10;
}

.social-links a {
    z-index: 11;
}

.social-links img {
    width: 32px;
    height: 32px;
    transition: transform 0.3s;
}

footer.overlay {
    z-index: 5;
}

.social-links img:hover {
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .overlay {
        margin: 10px;
        padding: 20px;
    }
}
/* Digital Renaissance specific styles */
.digital-renaissance {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.content-section h2 {
    color: #ffa726;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.trust-triangle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.triangle-node {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.triangle-node h3 {
    color: #ffa726;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .trust-triangle {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 1.5rem;
        margin: 2rem 0;
    }
}
.cta-section {
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 215, 0, 0.2));
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-wallet, .btn-docs {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-wallet {
    background: #662e9b;
    color: white;
}

.btn-docs {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.btn-wallet:hover, .btn-docs:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.wallet-icon {
    font-size: 1.2em;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-wallet, .btn-docs {
        justify-content: center;
    }

    .wallet-icon {
        font-size: 0.8em;
    }
}

.community-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.community-card {
    background: rgba(255, 215, 0, 0.05);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 1;
    max-width: 250px;
}

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.1);
}

.community-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
}

.community-card h3 {
    color: #ffa726;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .community-links {
        flex-direction: column;
        align-items: center;
    }
    
    .community-card {
        width: 100%;
        max-width: none;
    }
}

.community-card img, .community-card h3 {
  margin: 0;
}

/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 200;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Mobile menu styles */
@media (max-width: 768px) {
    .content-wrapper {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        padding: 80px 20px;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        transition: right 0.3s ease-in-out;
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 10px 0;
        font-size: 1.2rem;
    }

    /* Hamburger animation */
    .hamburger.active span:first-child {
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:last-child {
        transform: rotate(-45deg);
    }
}

.honeybee-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
}

.honeybee-content img {
    max-width: 200px;
    height: auto;
}

.honeybee-image-left,
.honeybee-image-right {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .honeybee-content {
        flex-direction: column;
        text-align: center;
    }

    .honeybee-content img {
        max-width: 150px;
        margin: 0 auto;
    }

    .honeybee-content p {
        margin: 1rem 0;
    }
}