.main-drivers {
    padding-top: 80px;
    min-height: calc(100vh - 160px);
    background: linear-gradient(135deg, var(--dark) 0%, #0d0d15 100%);
}

.drivers-header {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(10, 10, 15, 0.9));
    backdrop-filter: blur(20px);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.drivers-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
}

.drivers-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
    animation: fadeIn 0.8s ease-out;
}

.drivers-header p {
    opacity: 0.7;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.drivers-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.drivers-section {
    background: rgba(20, 20, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 240, 255, 0.2);
    animation: fadeIn 0.8s ease-out;
    transition: all 0.3s ease;
}

.drivers-section:hover {
    border-color: rgba(0, 240, 255, 0.5);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
}

.drivers-section h2 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tool-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: rgba(10, 10, 15, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.3s ease;
    animation: fadeIn 0.5s ease-out backwards;
}

.tool-item:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.tool-info {
    flex: 1;
}

.tool-info h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tool-info p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.tool-detail {
    display: block;
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    font-weight: 500;
}

.download-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--dark);
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.download-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
}

.nav-links .active {
    color: var(--primary);
    font-weight: 600;
    border: 1px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

@media (max-width: 600px) {
    .tool-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .download-btn {
        width: 100%;
        text-align: center;
    }
}