/* Web3 Development Section */
.web3-development {
    padding: 120px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 204, 102, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #0a0a0a 0%, #111111 50%, #0d0d0d 100%);
    position: relative;
}

.web3-development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 98px,
            rgba(0, 255, 136, 0.02) 98px,
            rgba(0, 255, 136, 0.02) 100px
        );
    pointer-events: none;
}

.web3-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.web3-info h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #00ff88, #00cc66, #00ff88);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

.web3-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.8;
}

.web3-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.web3-service {
    background: rgba(0, 255, 136, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.web3-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transition: left 0.5s ease;
}

.web3-service:hover::before {
    left: 100%;
}

.web3-service:hover {
    transform: translateY(-5px);
    border-color: #00ff88;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

.web3-service i {
    font-size: 2rem;
    color: #00ff88;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.web3-service h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.web3-service p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.web3-examples {
    background: 
        linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 204, 102, 0.1) 100%);
    padding: 3rem;
    border-radius: 25px;
    border: 2px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.web3-examples::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 255, 136, 0.05), transparent);
    animation: rotate 25s linear infinite;
}

.web3-examples h3 {
    font-family: 'Orbitron', monospace;
    color: #00ff88;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
    position: relative;
    z-index: 2;
}

.web3-examples p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.example-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.example-tab {
    padding: 0.8rem 1.5rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 25px;
    color: #00ff88;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.example-tab.active {
    background: linear-gradient(45deg, #00ff88, #00cc66);
    color: #000000;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.example-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.2);
}

.example-content {
    position: relative;
    z-index: 2;
}

.example-tab-content {
    display: none;
}

.example-tab-content.active {
    display: block;
}

.example-code {
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #00ff88;
    margin-bottom: 1rem;
    overflow-x: auto;
    position: relative;
}

.example-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(0, 255, 136, 0.03) 20px,
            rgba(0, 255, 136, 0.03) 21px
        );
    pointer-events: none;
}

.example-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.example-feature {
    background: rgba(0, 255, 136, 0.05);
    padding: 1rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    text-align: center;
}

.example-feature i {
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.example-feature span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

.web3-cta {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.web3-cta .cta-btn {
    margin: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .web3-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .web3-services {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .example-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .example-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
